Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934069Ab3ECRQV (ORCPT ); Fri, 3 May 2013 13:16:21 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:60204 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933739Ab3ECRQU (ORCPT ); Fri, 3 May 2013 13:16:20 -0400 Date: Fri, 3 May 2013 10:16:18 -0700 From: Greg KH To: Stas Sergeev Cc: Jarkko Huijts , Alan Cox , linux-usb@vger.kernel.org, linux-serial@vger.kernel.org, Linux kernel , Caylan Van Larson , "Rafael J. Wysocki" Subject: Re: Regression: ftdi_sio is slow (since Wed Oct 10 15:05:06 2012) Message-ID: <20130503171618.GA16686@kroah.com> References: <5183D196.2080305@list.ru> <20130503163008.GA30699@kroah.com> <5183F62A.1020801@list.ru> <20130503165231.GA1966@kroah.com> <5183FC83.8090602@list.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <5183FC83.8090602@list.ru> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3266 Lines: 78 On Fri, May 03, 2013 at 10:05:55PM +0400, Stas Sergeev wrote: > 03.05.2013 20:52, Greg KH пишет: > >On Fri, May 03, 2013 at 09:38:50PM +0400, Stas Sergeev wrote: > >>03.05.2013 20:30, Greg KH пишет: > >>>We need some way to check the chars in the buffer, is the device you are > >>>using just very slow to respond to this request? How slow? Do you have > >>>a test case that we can see how it is affected? > >>Greg, unfortunately, I do have nothing. > >>The customer is in CC list, so maybe he will > >>provide the test-case, but I doubt. > >> > >>Please, what are your concerns here? > >>The patch in question does this: > >>--- > >>+ ret = usb_control_msg(port->serial->dev, > >>+ usb_rcvctrlpipe(port->serial->dev, 0), > >>+ FTDI_SIO_GET_MODEM_STATUS_REQUEST, > >>+ FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE, > >>+ 0, priv->interface, > >>+ buf, 2, WDR_TIMEOUT); > >>--- > >>Obviously, this is too expensive to call too frequently, > >>or am I missing something? > >Why do you think that is too expensive to call? Does it somehow stop > >the data being sent to the device through the serial endpoints? Is > >userspace calling this function too much slowing something else down? > No, it doesn't slow down the data transfer. > But it makes a select() call to take much longer to complete, Please define "much longer". > and the same goes to TIOCOUTQ ioctl. Yes, the app calls select() > quite too much, and it is single-threaded, too. :) Sounds like an application is doing a foolish thing and should stop it. There's no guarantee as to how long select or an ioctl will take, and now that we have fixed another bug, this device is slower. If you change hardware types to use a different usb to serial chip, that select call might take 4 times as long. Are we somehow supposed to change the kernel to "fix" that? > >>I asked the customer to comment out > >>tty_chars_in_buffer(tty) < WAKEUP_CHARS > >>line in n_tty.c, and he said that cured his problems, > >>so I think my guess was right. > >What exactly is the "problem" being seen? > No idea. > Well, I can make a test-case that does 1000000 select() calls > in a loop and time it. This is probably the best I can do. That's really not a valid test case, as it's nothing that we ever optimize a serial driver for. Throughput is the proper thing to care about, right? And if select takes longer, nothing really "slows down" as now you get data more often between select calls, right? > >>The patch claims it only affects tcdrain() and close(). > >>Its trivial to see it also affects poll(), select() and TIOCOUTQ > >>ioctl, so even from that it is already broken. > >>Why do you need a test-case for this? > >Because I don't know what the problem really is :) > Slow select() call (and other calls). > Can we just use usb_serial_generic_chars_in_buffer() > in ftdi_sio? What was the reason behind the patch at all, > why it is so importand to query TEMT? To actually determine how many characters the device has in its buffer. thanks, greg k-h -- 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/