diff options
author | Ian Kent <raven@themaw.net> | 2009-12-15 19:45:48 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-16 10:19:58 -0500 |
commit | c42c7f7e698fa888abbd50eb9c8e328fff68914f (patch) | |
tree | cdcc21d21cdf2f695cba0298db75c609060e87e6 /fs/autofs4 | |
parent | 6510c9d8595adcee2b0dc86408bc432a8dd7d652 (diff) |
autofs4: eliminate d_unhashed in path walk checks
We unhash the dentry (in a subsequent patch) in ->d_revalidate() in order
to send mount requests to ->lookup(). But then we can not rely on
d_unhased() to give reliable results because it may be called at any time
by any code path. The d_unhashed() function is used by __simple_empty()
in the path walking callbacks but autofs mount point dentrys should have
no directories at all so a list_empty() on d_subdirs should be (and is)
sufficient.
Signed-off-by: Ian Kent <raven@themaw.net>
Cc: Sage Weil <sage@newdream.net>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Andreas Dilger <adilger@sun.com>
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Yehuda Saheh <yehuda@newdream.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/autofs4')
-rw-r--r-- | fs/autofs4/root.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/autofs4/root.c b/fs/autofs4/root.c index 81700f4a19da..b6530f321adb 100644 --- a/fs/autofs4/root.c +++ b/fs/autofs4/root.c | |||
@@ -133,7 +133,7 @@ static int autofs4_dir_open(struct inode *inode, struct file *file) | |||
133 | * it. | 133 | * it. |
134 | */ | 134 | */ |
135 | spin_lock(&dcache_lock); | 135 | spin_lock(&dcache_lock); |
136 | if (!d_mountpoint(dentry) && __simple_empty(dentry)) { | 136 | if (!d_mountpoint(dentry) && list_empty(&dentry->d_subdirs)) { |
137 | spin_unlock(&dcache_lock); | 137 | spin_unlock(&dcache_lock); |
138 | return -ENOENT; | 138 | return -ENOENT; |
139 | } | 139 | } |
@@ -257,7 +257,7 @@ static void *autofs4_follow_link(struct dentry *dentry, struct nameidata *nd) | |||
257 | * mount it again. | 257 | * mount it again. |
258 | */ | 258 | */ |
259 | if (ino->flags & AUTOFS_INF_PENDING || | 259 | if (ino->flags & AUTOFS_INF_PENDING || |
260 | (!d_mountpoint(dentry) && __simple_empty(dentry))) { | 260 | (!d_mountpoint(dentry) && list_empty(&dentry->d_subdirs))) { |
261 | spin_unlock(&dcache_lock); | 261 | spin_unlock(&dcache_lock); |
262 | spin_unlock(&sbi->fs_lock); | 262 | spin_unlock(&sbi->fs_lock); |
263 | 263 | ||
@@ -340,8 +340,7 @@ static int autofs4_revalidate(struct dentry *dentry, struct nameidata *nd) | |||
340 | /* Check for a non-mountpoint directory with no contents */ | 340 | /* Check for a non-mountpoint directory with no contents */ |
341 | spin_lock(&dcache_lock); | 341 | spin_lock(&dcache_lock); |
342 | if (S_ISDIR(dentry->d_inode->i_mode) && | 342 | if (S_ISDIR(dentry->d_inode->i_mode) && |
343 | !d_mountpoint(dentry) && | 343 | !d_mountpoint(dentry) && list_empty(&dentry->d_subdirs)) { |
344 | __simple_empty(dentry)) { | ||
345 | DPRINTK("dentry=%p %.*s, emptydir", | 344 | DPRINTK("dentry=%p %.*s, emptydir", |
346 | dentry, dentry->d_name.len, dentry->d_name.name); | 345 | dentry, dentry->d_name.len, dentry->d_name.name); |
347 | spin_unlock(&dcache_lock); | 346 | spin_unlock(&dcache_lock); |