From: hooanon05@yahoo.co.jp
To: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Linus Torvalds <torvalds@linux-foundation.org>,
linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org
Subject: Re: [git pull] VFS patches
Date: Tue, 20 May 2008 21:04:38 +0900 [thread overview]
Message-ID: <13375.1211285078@jrobl> (raw)
In-Reply-To: <20080426020221.GF5882@ZenIV.linux.org.uk>
Hello Al,
I have a question about the commit you made last month.
When an application issues sys_oldumount(), ->umount_begin() will not be
called because the flag is 0. Is this behaviour intended?
And it it better to put the paranthesis around (flags & MNT_FORCE).
Junjiro Okajima
Al Viro:
> Tonight's pile: getting ->umount_begin() back to sanity, race fixes
> around execve(), general cleanups. Please, pull from
>
> git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6.git/ for-linus
>
> Shortlog:
>
> Al Viro (5):
> restore sane ->umount_begin() API
:::
> diff --git a/fs/namespace.c b/fs/namespace.c
> index 0505fb6..f48f981 100644
> --- a/fs/namespace.c
> +++ b/fs/namespace.c
> @@ -1061,10 +1061,11 @@ static int do_umount(struct vfsmount *mnt, int flags)
> * about for the moment.
> */
>
> - lock_kernel();
> - if (sb->s_op->umount_begin)
> - sb->s_op->umount_begin(mnt, flags);
> - unlock_kernel();
> + if (flags & MNT_FORCE && sb->s_op->umount_begin) {
> + lock_kernel();
> + sb->s_op->umount_begin(sb);
> + unlock_kernel();
> + }
>
> /*
> * No sense to grab the lock for this test, but test itself looks
prev parent reply other threads:[~2008-05-20 12:04 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-04-26 2:02 [git pull] VFS patches Al Viro
2008-04-26 4:25 ` [fix] " Al Viro
2008-04-26 16:34 ` [fix] " Jean Delvare
2008-04-26 11:01 ` Ingo Molnar
2008-04-26 13:35 ` Matthew Wilcox
2008-04-26 13:44 ` Ingo Molnar
2008-04-26 15:43 ` Ingo Molnar
2008-04-26 19:02 ` Mike Galbraith
2008-05-20 12:04 ` hooanon05 [this message]
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=13375.1211285078@jrobl \
--to=hooanon05@yahoo.co.jp \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
--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;
as well as URLs for NNTP newsgroup(s).