Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752303AbbLMSiI (ORCPT ); Sun, 13 Dec 2015 13:38:08 -0500 Received: from mail-pa0-f44.google.com ([209.85.220.44]:34441 "EHLO mail-pa0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751886AbbLMSiG (ORCPT ); Sun, 13 Dec 2015 13:38:06 -0500 Subject: Re: [PATCH 5/6] n_tty: Fix stuck write wakeup To: Johannes Stezenbach References: <1449958599-5533-1-git-send-email-peter@hurleysoftware.com> <1449958599-5533-6-git-send-email-peter@hurleysoftware.com> <20151213151823.GB10204@sig21.net> Cc: Greg Kroah-Hartman , Jiri Slaby , linux-kernel@vger.kernel.org From: Peter Hurley Message-ID: <566DBB0A.5070108@hurleysoftware.com> Date: Sun, 13 Dec 2015 10:38:02 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: <20151213151823.GB10204@sig21.net> 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: 3455 Lines: 92 On 12/13/2015 07:18 AM, Johannes Stezenbach wrote: > Hi Peter, > > On Sat, Dec 12, 2015 at 02:16:38PM -0800, Peter Hurley wrote: >> If signal-driven i/o is disabled while write wakeup is pending (ie., >> n_tty_write() has set TTY_DO_WRITE_WAKEUP but then signal-driven i/o >> is disabled), the TTY_DO_WRITE_WAKEUP bit will never be cleared and >> will cause tty_wakeup() to always call n_tty_write_wakeup. >> >> Unconditionally clear the write wakeup, and since kill_fasync() >> already checks if the fasync ptr is null, call kill_fasync() >> unconditionally as well. > ... >> @@ -230,8 +230,8 @@ static ssize_t chars_in_buffer(struct tty_struct *tty) >> >> static void n_tty_write_wakeup(struct tty_struct *tty) >> { >> - if (tty->fasync && test_and_clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) >> - kill_fasync(&tty->fasync, SIGIO, POLL_OUT); >> + clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags); >> + kill_fasync(&tty->fasync, SIGIO, POLL_OUT); >> } > > There is a related bug that I meant to send a patch, but I > never got around because the issue was found with proprietary > userspace and ancient kernel. Maybe you could take care of it? > The patch might not apply cleanly after your recent changes > or might even be invalid now, please check. Thanks for the patch, Johannes! Yes, the patch below is still required to prevent excessive SIGIO (and to prevent missed SIGIO when the amount actually copied just happens to be exactly the amount left to be copied). I made some comments in the patch; can you re-submit with those changes and the patch title in the subject? Or I'd happy to re-work it and send it to Greg if you'd prefer; just let me know. Regards, Peter Hurley > --- > tty: n_tty: fix SIGIO for output > > According to fcntl(2), "a SIGIO signal is sent whenever input > or output becomes possible on that file descriptor", i.e. > after the output buffer was full and now has space for new data. > But in fact SIGIO is sent after every write. > > n_tty_write() should set TTY_DO_WRITE_WAKEUP only when > not all data could be written to the buffer. > > Signed-off-by: Johannes Stezenbach > > --- drivers/char/n_tty.c.orig 2015-11-02 22:26:04.124227148 +0100 > +++ drivers/char/n_tty.c 2015-11-02 22:26:10.644212115 +0100 > @@ -1925,6 +1925,7 @@ static ssize_t n_tty_write(struct tty_st > DECLARE_WAITQUEUE(wait, current); > int c; > ssize_t retval = 0; > + size_t count = nr; 'count' isn't required because after exiting the write loop, 'nr' will be the remainder still to write so ... > > /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */ > if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) { > @@ -1991,7 +1992,7 @@ static ssize_t n_tty_write(struct tty_st > break_out: > __set_current_state(TASK_RUNNING); > remove_wait_queue(&tty->write_wait, &wait); > - if (b - buf != nr && tty->fasync) > + if (b - buf != count && tty->fasync) ... this can be if (nr && tty->fasync) set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags); > set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags); > return (b - buf) ? b - buf : retval; > } > > -- 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/