From: Christoph Hellwig <hch@infradead.org>
To: Alessio Igor Bogani <abogani@texware.it>
Cc: Ingo Molnar <mingo@elte.hu>,
Frederic Weisbecker <fweisbec@gmail.com>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
LKML <linux-kernel@vger.kernel.org>,
Jonathan Corbet <corbet@lwn.net>,
viro@zeniv.linux.org.uk
Subject: Re: [PATCH -tip] remove the BKL: Replace BKL in mount/umount syscalls with a mutex
Date: Thu, 16 Apr 2009 10:36:26 -0400 [thread overview]
Message-ID: <20090416143626.GA17683@infradead.org> (raw)
In-Reply-To: <1239892078-6039-1-git-send-email-abogani@texware.it>
On Thu, Apr 16, 2009 at 04:27:58PM +0200, Alessio Igor Bogani wrote:
> Replace ths BKL in sys_mount()/sys_umount() syscalls with a regular mutex.
Could you try to explain what these actuall try to protect?
> unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
> @@ -1073,9 +1075,9 @@ static int do_umount(struct vfsmount *mnt, int flags)
> */
>
> if (flags & MNT_FORCE && sb->s_op->umount_begin) {
> - lock_kernel();
> + mutex_lock(&mount_lock);
> sb->s_op->umount_begin(sb);
> - unlock_kernel();
> + mutex_unlock(&mount_lock);
This is a very easy case, just move the lock into ->umount_begin. And
then ping the maintainers of the 5 instances actually making use of it -
I suspect none of them actually require it.
> @@ -1094,9 +1096,9 @@ static int do_umount(struct vfsmount *mnt, int flags)
> */
> down_write(&sb->s_umount);
> if (!(sb->s_flags & MS_RDONLY)) {
> - lock_kernel();
> + mutex_lock(&mount_lock);
> retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
> - unlock_kernel();
> + mutex_unlock(&mount_lock);
I suspect moving lock_kernel down into ->remount_fs is the much better
option. Will require some audit of do_remount_sb, though.
> - lock_kernel();
> + mutex_lock(&mount_lock);
> retval = do_mount((char *)dev_page, dir_page, (char *)type_page,
> flags, (void *)data_page);
> - unlock_kernel();
> + mutex_unlock(&mount_lock);
Again, much better to push it down and probably eliminate it completely
for all sane filesystems.
next prev parent reply other threads:[~2009-04-16 14:36 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-04-16 14:27 [PATCH -tip] remove the BKL: Replace BKL in mount/umount syscalls with a mutex Alessio Igor Bogani
2009-04-16 14:36 ` Christoph Hellwig [this message]
2009-04-16 16:49 ` Ingo Molnar
2009-04-16 17:01 ` Christoph Hellwig
2009-04-16 17:13 ` Ingo Molnar
2009-04-17 0:05 ` Al Viro
2009-04-16 16:06 ` Ingo Molnar
2009-04-16 16:58 ` Ingo Molnar
2009-04-16 23:56 ` Al Viro
2009-04-17 0:01 ` Ingo Molnar
2009-04-17 0:13 ` Al Viro
2009-04-17 0:27 ` Ingo Molnar
2009-04-17 0:38 ` Al Viro
2009-04-17 16:56 ` Ingo Molnar
2009-04-17 17:04 ` Peter Zijlstra
2009-04-17 17:21 ` Linus Torvalds
2009-04-17 17:31 ` Jonathan Corbet
2009-04-17 18:03 ` Linus Torvalds
2009-04-17 18:44 ` Matthew Wilcox
2009-04-22 17:28 ` J. Bruce Fields
2009-04-17 18:08 ` Al Viro
2009-04-17 18:34 ` Ingo Molnar
2009-04-17 17:41 ` Al Viro
2009-04-17 17:34 ` Al Viro
2009-04-16 23:49 ` Al Viro
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=20090416143626.GA17683@infradead.org \
--to=hch@infradead.org \
--cc=a.p.zijlstra@chello.nl \
--cc=abogani@texware.it \
--cc=corbet@lwn.net \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=viro@zeniv.linux.org.uk \
/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