From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932739AbcGOLd6 (ORCPT ); Fri, 15 Jul 2016 07:33:58 -0400 Received: from mail-lf0-f65.google.com ([209.85.215.65]:35528 "EHLO mail-lf0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932595AbcGOLd4 (ORCPT ); Fri, 15 Jul 2016 07:33:56 -0400 Date: Fri, 15 Jul 2016 13:33:59 +0200 From: Johan Hovold To: Mathieu OTHACEHE Cc: johan@kernel.org, gregkh@linuxfoundation.org, linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 17/36] usb: serial: ti_usb_3410_5052: Remove useless tty_wakeup Message-ID: <20160715113359.GJ8809@localhost> References: <1463042948-12205-1-git-send-email-m.othacehe@gmail.com> <1463042948-12205-18-git-send-email-m.othacehe@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1463042948-12205-18-git-send-email-m.othacehe@gmail.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, May 12, 2016 at 10:48:49AM +0200, Mathieu OTHACEHE wrote: > The generic driver doesn't call tty_wakeup in > usb_serial_generic_msr_changed so this tty_wakeup seems useless. While we strive to have the generic implementation as complete as possible, it not doing something does not mean it must not be done. :) > Signed-off-by: Mathieu OTHACEHE > --- > drivers/usb/serial/ti_usb_3410_5052.c | 9 --------- > 1 file changed, 9 deletions(-) > > diff --git a/drivers/usb/serial/ti_usb_3410_5052.c b/drivers/usb/serial/ti_usb_3410_5052.c > index 5ef721c..3f2372e 100644 > --- a/drivers/usb/serial/ti_usb_3410_5052.c > +++ b/drivers/usb/serial/ti_usb_3410_5052.c > @@ -1238,7 +1238,6 @@ static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport, > static void ti_handle_new_msr(struct ti_port *tport, u8 msr) > { > struct async_icount *icount; > - struct tty_struct *tty; > unsigned long flags; > > dev_dbg(&tport->tp_port->dev, "%s - msr 0x%02X\n", __func__, msr); > @@ -1259,14 +1258,6 @@ static void ti_handle_new_msr(struct ti_port *tport, u8 msr) > } > > tport->tp_msr = msr & TI_MSR_MASK; > - > - /* handle CTS flow control */ > - tty = tty_port_tty_get(&tport->tp_port->port); > - if (tty && C_CRTSCTS(tty)) { > - if (msr & TI_MSR_CTS) > - tty_wakeup(tty); > - } > - tty_kref_put(tty); That said, this particular change does seem correct, as any writers would have been woken up once any blocked (nacked) bulk-out transfers complete. Thanks, Johan