From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757893Ab2IMMyL (ORCPT ); Thu, 13 Sep 2012 08:54:11 -0400 Received: from mail-lb0-f174.google.com ([209.85.217.174]:34278 "EHLO mail-lb0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757858Ab2IMMyJ (ORCPT ); Thu, 13 Sep 2012 08:54:09 -0400 Date: Thu, 13 Sep 2012 16:54:01 +0400 From: Cyrill Gorcunov To: Alan Cox Cc: LKML , "H. Peter Anvin" , Greg Kroah-Hartman , Pavel Emelyanov Subject: Re: [RFC] tty: Add get- ioctls to fetch tty status Message-ID: <20120913125401.GK19956@moon> References: <20120913095623.GB28508@moon> <20120913135131.5b251797@pyramind.ukuu.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120913135131.5b251797@pyramind.ukuu.org.uk> 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 On Thu, Sep 13, 2012 at 01:51:31PM +0100, Alan Cox wrote: > > +static int pty_get_lock(struct tty_struct *tty, int __user *arg) > > +{ > > + int locked = test_bit(TTY_PTY_LOCK, &tty->flags); > > + if (put_user(locked, arg)) > > + return -EFAULT; > > Now explain exactly how this doesn't race with another thread chanigng > the lock setting ? It's the same as to set/clear this bit, isn't it? Please correct me if I'm wrong. > The other comment I have is that it might be better put these in now > there are sysfs patches for the tty layer bouncing about to provide the > needed infrastructure ? Alan, could you please point me where these patches are living, so I would take a look and check them out. Cyrill