diff options
author | Ian Kent <raven@themaw.net> | 2006-03-27 04:14:50 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-27 11:44:40 -0500 |
commit | 90a59c7cf5dd68b41ffab61dd30eba1ef5746e66 (patch) | |
tree | d8ba682efbeaf2153aea6484a822a0ce433880ed /fs/autofs4/root.c | |
parent | e77fbddf77c071a5735a4bc63a30649bd64baf14 (diff) |
[PATCH] autofs4: rename simple_empty_nolock function
Rename the function simple_empty_nolock to __simple_empty in line with kernel
naming conventions.
Signed-off-by: Ian Kent <raven@themaw.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/autofs4/root.c')
-rw-r--r-- | fs/autofs4/root.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/autofs4/root.c b/fs/autofs4/root.c index 72dca3335e25..dcd4802a5d5f 100644 --- a/fs/autofs4/root.c +++ b/fs/autofs4/root.c | |||
@@ -343,7 +343,7 @@ static int autofs4_revalidate(struct dentry *dentry, struct nameidata *nd) | |||
343 | spin_lock(&dcache_lock); | 343 | spin_lock(&dcache_lock); |
344 | if (S_ISDIR(dentry->d_inode->i_mode) && | 344 | if (S_ISDIR(dentry->d_inode->i_mode) && |
345 | !d_mountpoint(dentry) && | 345 | !d_mountpoint(dentry) && |
346 | simple_empty_nolock(dentry)) { | 346 | __simple_empty(dentry)) { |
347 | DPRINTK("dentry=%p %.*s, emptydir", | 347 | DPRINTK("dentry=%p %.*s, emptydir", |
348 | dentry, dentry->d_name.len, dentry->d_name.name); | 348 | dentry, dentry->d_name.len, dentry->d_name.name); |
349 | spin_unlock(&dcache_lock); | 349 | spin_unlock(&dcache_lock); |