Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758123AbbKSJgt (ORCPT ); Thu, 19 Nov 2015 04:36:49 -0500 Received: from mail-ig0-f181.google.com ([209.85.213.181]:35055 "EHLO mail-ig0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756066AbbKSJgq (ORCPT ); Thu, 19 Nov 2015 04:36:46 -0500 Subject: Re: [PATCH] usb: gadget: Add the console support for usb-to-serial port To: Baolin Wang References: <564C9A22.2060102@hurleysoftware.com> Cc: Felipe Balbi , Greg KH , r.baldyga@samsung.com, fabio.estevam@freescale.com, Philip Oberstaller , scottwood@freescale.com, Mark Brown , USB , LKML From: Peter Hurley Message-ID: <564D9828.5060107@hurleysoftware.com> Date: Thu, 19 Nov 2015 04:36:40 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2161 Lines: 75 On 11/19/2015 01:48 AM, Baolin Wang wrote: >> >>> +{ >>> + struct gscons_info *info = gserial_cons.data; >>> + int port_num = gserial_cons.index; >>> + struct usb_request *req; >>> + struct gs_port *port; >>> + struct usb_ep *ep; >>> + >>> + if (port_num >= MAX_U_SERIAL_PORTS || port_num < 0) { >>> + pr_err("%s: port num [%d] exceeds the range.\n", >>> + __func__, port_num); >>> + return -ENXIO; >>> + } >>> + >>> + port = ports[port_num].port; >>> + if (!port) { >>> + pr_err("%s: serial line [%d] not allocated.\n", >>> + __func__, port_num); >>> + return -ENODEV; >>> + } >>> + >>> + if (!port->port_usb) { >>> + pr_err("%s: no port usb.\n", __func__); >>> + return -ENODEV; >>> + } >>> + >>> + ep = port->port_usb->in; >>> + if (!ep) { >>> + pr_err("%s: no usb endpoint.\n", __func__); >>> + return -ENXIO; >>> + } >> >> Looking at the caller, gserial_connect(), none of the error >> conditions above look possible. >> > > I re-look the code and do some tests, I found the checking is > necessary. Cause we get the port number from the console->index, if > the cmdline is not set the ttyGS0 as the console, the console->index > will be -1 that is a wrong value. Also the serial.c file will create 1 > usb-to-seial port as default (default n_ports = 1), so we need to > check the port and the endpoint of the port. So I think here checking > is necessary and I have tested it. static void gs_console_connect(int port_num) { . . if (port_num != gserial_cons.index) return; . . @@ -1219,6 +1453,7 @@ int gserial_connect(struct gserial *gser, u8 port_num) gser->disconnect(gser); } + status = gs_console_connect(port_num); spin_unlock_irqrestore(&port->port_lock, flags); return status; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/