From: Christoph Hellwig <hch@infradead.org>
To: Andrew Morton <akpm@zip.com.au>
Cc: Linus Torvalds <torvalds@transmeta.com>,
lkml <linux-kernel@vger.kernel.org>
Subject: Re: [patch 11/13] don't hold i_sem during O_DIRECT writes to blockdevs
Date: Sun, 28 Jul 2002 12:06:11 +0100 [thread overview]
Message-ID: <20020728120611.A7332@infradead.org> (raw)
In-Reply-To: <3D439E43.5F2DEE3D@zip.com.au>; from akpm@zip.com.au on Sun, Jul 28, 2002 at 12:33:23AM -0700
On Sun, Jul 28, 2002 at 12:33:23AM -0700, Andrew Morton wrote:
> This patch changes O_DIRECT writes to blockdevs so that they no longer
> run under i_sem.
Please don't make this depenend on S_ISBLK(). There are filesystems (like
XFS) that are designed to safely allow concurrent O_DIRECT writes to
regular files.
Toe implement this properly we should drop i_sem in the ->direct_IO method
of the filesystem/blockdevice. The only question remaining is whether the
method has to reqacquire it before returing (and it'll be imediately
released again or whether we should change semantics of ->direct_IO to
always drop the lock.
The third options would be to never call ->direct_IO with the i_sem held
and let filesystems that need it (only ext2 in 2.5 mainline) do
synchronization themselves.
I think I prefer option 3, it's the cleanest way of doing it.
A little unrelated, but as you touch the code: what about removing the two
existing special cases for S_ISBLK() in generic_file_write()? they're
present only to provide the old (pre-LFS) blockdevice semantics on 2.4,
we shouldn't keept them around forever..
next prev parent reply other threads:[~2002-07-28 11:02 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-07-28 7:33 [patch 11/13] don't hold i_sem during O_DIRECT writes to blockdevs Andrew Morton
2002-07-28 11:06 ` Christoph Hellwig [this message]
2002-07-28 17:55 ` Andrew Morton
2002-07-28 18:05 ` Christoph Hellwig
2002-07-28 18:41 ` Christoph Hellwig
2002-07-29 0:04 ` Linus Torvalds
2002-07-29 0:39 ` Andrew Morton
2002-07-29 0:47 ` Linus Torvalds
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=20020728120611.A7332@infradead.org \
--to=hch@infradead.org \
--cc=akpm@zip.com.au \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@transmeta.com \
/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