Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756058AbaFQLby (ORCPT ); Tue, 17 Jun 2014 07:31:54 -0400 Received: from mout.kundenserver.de ([212.227.17.10]:49942 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754870AbaFQLbw (ORCPT ); Tue, 17 Jun 2014 07:31:52 -0400 From: Arnd Bergmann To: David Laight Cc: "'Peter Hurley'" , "linuxppc-dev@lists.ozlabs.org" , Greg Kroah-Hartman , Karsten Keil , "linux-kernel@vger.kernel.org" , "linux-serial@vger.kernel.org" , One Thousand Gnomes Subject: Re: [PATCH tty-next 14/22] tty: Remove tty_wait_until_sent_from_close() Date: Tue, 17 Jun 2014 13:31:38 +0200 Message-ID: <8191805.dfI4LbYmWz@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.11.0-18-generic; KDE/4.11.5; x86_64; ; ) In-Reply-To: <063D6719AE5E284EB5DD2968C1650D6D1725DAF6@AcuExch.aculab.com> References: <1402924639-5164-1-git-send-email-peter@hurleysoftware.com> <53A01F02.7000202@hurleysoftware.com> <063D6719AE5E284EB5DD2968C1650D6D1725DAF6@AcuExch.aculab.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V02:K0:RAjqZvVdS//tWJw+4S4F9nYUpNURWO0mLBUk8GE7mjG fluACVfp1g8ala6gUfxQfenRzeMTc6C9iGiNGfv/PccH6h8v3f 6uSQA82C0oLLIsEV+oOfpfi4JA33B3Q9KcaskVNZ6+nJSqqbE7 Y/gH4OHsBwKNxTKW+mdk4GUoezU9ZAPhKExNkULg+AvpapdFVo IbOiPwHlPhlVAuCDdjOmL16JhX60LRlyVCrHH/X99OkhAN+r2y +pPbDiRiauOPY/9A++6egUrXOzhSug3StsN4htegH0huvaYAZE 1D5BAJh28nuwIhjhsHu4PMIESW2vxH/iX8IStTvwm7xYihAOyw uQir/42esh9aa3lZJO4w= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tuesday 17 June 2014 11:03:50 David Laight wrote: > From: Peter Hurley > ... > > > I don't understand the second half of the changelog, it doesn't seem > > > to fit here: there deadlock that we are trying to avoid here happens > > > when the *same* tty needs the lock to complete the function that > > > sends the pending data. I don't think we do still do that any more, > > > but it doesn't seem related to the tty lock being system-wide or not. > > > > The tty lock is not used in the i/o path; it's purpose is to > > mutually exclude state changes in open(), close() and hangup(). > > > > The commit that added this [1] comments that _other_ ttys may wait > > for this tty to complete, and comments in the code note that this > > function should be removed when the system-wide tty mutex was removed > > (which happened with the commit noted in the changelog). > > What happens if another process tries to do a non-blocking open > while you are sleeping in close waiting for output to drain? > > Hopefully this returns before that data has drained. Before the patch, I believe tty_reopen() would return -EIO because the TTY_CLOSING flag is set. After the patch, tty_open() blocks on tty_lock() before calling tty_reopen(). AFAICT, this is independent of O_NONBLOCK. Arnd -- 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/