[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <26562.1211237784@vena.lwn.net>
Date: Mon, 19 May 2008 16:56:24 -0600
From: corbet@....net (Jonathan Corbet)
To: Roland Dreier <rdreier@...co.com>
Cc: Linus Torvalds <torvalds@...ux-foundation.org>,
Ingo Molnar <mingo@...e.hu>,
Andrew Morton <akpm@...ux-foundation.org>,
Peter Zijlstra <a.p.zijlstra@...llo.nl>,
Thomas Gleixner <tglx@...utronix.de>,
Alan Cox <alan@...rguk.ukuu.org.uk>,
Alexander Viro <viro@....linux.org.uk>,
linux-kernel@...r.kernel.org,
Stephen Rothwell <sfr@...b.auug.org.au>
Subject: Re: [PATCH, RFC] Char dev BKL pushdown v2
Roland Dreier <rdreier@...co.com> wrote:
> Thanks. Just to be super-explicit, ioctl() cannot be called on a given
> file until the open() for that particular file has returned, right?
ioctl() will not be called on a given file descriptor before open() is
done, no. If there are other file descriptors open, though, somebody
can be calling ioctl() on them while the open() for the new one is
executing.
> And the point about driver initialization is that open() can be called
> as soon as the file operations are registered, even if the module_init
> function has not returned?
That is the point, yes. The key there is to avoid registering the
device before everything has been set up to actually manage the device.
jon
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists