Commit d94c177beeb4469cd4f6e83354ab0223353e98ed

Authored by Linus Torvalds
1 parent 858b1814b8

vfs pathname lookup: Add LOOKUP_AUTOMOUNT flag

Since we've now turned around and made LOOKUP_FOLLOW *not* force an
automount, we want to add the ability to force an automount event on
lookup even if we don't happen to have one of the other flags that force
it implicitly (LOOKUP_OPEN, LOOKUP_DIRECTORY, LOOKUP_PARENT..)

Most cases will never want to use this, since you'd normally want to
delay automounting as long as possible, which usually implies
LOOKUP_OPEN (when we open a file or directory, we really cannot avoid
the automount any more).

But Trond argued sufficiently forcefully that at a minimum bind mounting
a file and quotactl will want to force the automount lookup.  Some other
cases (like nfs_follow_remote_path()) could use it too, although
LOOKUP_DIRECTORY would work there as well.

This commit just adds the flag and logic, no users yet, though.  It also
doesn't actually touch the LOOKUP_NO_AUTOMOUNT flag that is related, and
was made irrelevant by the same change that made us not follow on
LOOKUP_FOLLOW.

Cc: Trond Myklebust <Trond.Myklebust@netapp.com>
Cc: Ian Kent <raven@themaw.net>
Cc: Jeff Layton <jlayton@redhat.com>
Cc: Miklos Szeredi <miklos@szeredi.hu>
Cc: David Howells <dhowells@redhat.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Greg KH <gregkh@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 2 changed files with 2 additions and 1 deletions Side-by-side Diff

... ... @@ -739,7 +739,7 @@
739 739 * of the daemon to instantiate them before they can be used.
740 740 */
741 741 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
742   - LOOKUP_OPEN | LOOKUP_CREATE)) &&
  742 + LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
743 743 path->dentry->d_inode)
744 744 return -EISDIR;
745 745  
include/linux/namei.h
... ... @@ -48,6 +48,7 @@
48 48 */
49 49 #define LOOKUP_FOLLOW 0x0001
50 50 #define LOOKUP_DIRECTORY 0x0002
  51 +#define LOOKUP_AUTOMOUNT 0x0004
51 52  
52 53 #define LOOKUP_PARENT 0x0010
53 54 #define LOOKUP_REVAL 0x0020