From: Matthew Wilcox <matthew@wil.cx>
To: "J. Bruce Fields" <bfields@fieldses.org>
Cc: "david m. richter" <richterd@citi.umich.edu>,
linux-fsdevel@vger.kernel.org
Subject: Re: On setting a lease across a cluster
Date: Fri, 4 Jan 2008 14:08:18 -0700 [thread overview]
Message-ID: <20080104210817.GH20473@parisc-linux.org> (raw)
In-Reply-To: <20080104205304.GA14827@fieldses.org>
On Fri, Jan 04, 2008 at 03:53:04PM -0500, J. Bruce Fields wrote:
> So, the problem is that fcntl_setlease() does
>
> vfs_setlease()
> fasync_helper()
>
> which the bkl held over both, and you want to preserve that?
>
> But what that BKL is doing is a mystery to me--the very first thing that
> fasync_helper() does is kmem_cache_alloc(., GFP_KERNEL). So you won't
> be introducing any new problem if you lock those two operations
> separately. Unless I'm totally missing something.
A very good point.
So yet another race caused by using the BKL rather than thinking ... but
maybe it's an inconsequential race. The consequences are that (if the
kmalloc in fasync_helper sleeps) a lease appears that isn't fully set-up
yet (and may be removed if the kmalloc fails). Actually, it seems bad
if the kmalloc eventually succeeds -- there's a window while kmalloc is
sleeping where another process could open the file, break the lease,
fl_fasync will be NULL, so no signal is sent. Then 30 seconds later the
lease is removed without the leaseholder being sent a signal. Bad.
How can we fix this situation? I think we need a better interface than
fasync_helper() -- fasync_alloc() and fasync_setup() would seem to do
the trick.
--
Intel are signing my paycheques ... these opinions are still mine
"Bill, look, we understand that you're interested in selling us this
operating system, but compare it to ours. We can't possibly take such
a retrograde step."
next prev parent reply other threads:[~2008-01-04 21:08 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-04 18:14 On setting a lease across a cluster Matthew Wilcox
2008-01-04 18:55 ` david m. richter
2008-01-04 19:47 ` J. Bruce Fields
2008-01-04 20:35 ` Matthew Wilcox
2008-01-04 20:53 ` J. Bruce Fields
2008-01-04 21:08 ` Matthew Wilcox [this message]
2008-01-04 21:16 ` J. Bruce Fields
2008-01-04 20:18 ` Matthew Wilcox
2008-01-05 17:44 ` david m. richter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080104210817.GH20473@parisc-linux.org \
--to=matthew@wil.cx \
--cc=bfields@fieldses.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=richterd@citi.umich.edu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox