aboutsummaryrefslogtreecommitdiffstats
path: root/fs/autofs4/inode.c
diff options
context:
space:
mode:
authorIan Kent <raven@themaw.net>2008-07-24 00:30:09 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-07-24 13:47:31 -0400
commit5f6f4f28b6ba543beef8bad91aa6f69c7ffeee51 (patch)
tree72f3aac56d49c7bea7940f8d8b6e8ca559e3ae1c /fs/autofs4/inode.c
parent391b52f98cf2e9bff227dad8bf9ea206fec43fa4 (diff)
autofs4: don't make expiring dentry negative
Correct the error of making a positive dentry negative after it has been instantiated. The code that makes this error attempts to re-use the dentry from a concurrent expire and mount to resolve a race and the dentry used for the lookup must be negative for mounts to trigger in the required cases. The fact is that the dentry doesn't need to be re-used because all that is needed is to preserve the flag that indicates an expire is still incomplete at the time of the mount request. This change uses the the dentry to check the flag and wait for the expire to complete then discards it instead of attempting to re-use it. Signed-off-by: Ian Kent <raven@themaw.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/autofs4/inode.c')
-rw-r--r--fs/autofs4/inode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/autofs4/inode.c b/fs/autofs4/inode.c
index 2fdcf5e1d236..94bfc154d7a2 100644
--- a/fs/autofs4/inode.c
+++ b/fs/autofs4/inode.c
@@ -47,7 +47,7 @@ struct autofs_info *autofs4_init_ino(struct autofs_info *ino,
47 ino->dentry = NULL; 47 ino->dentry = NULL;
48 ino->size = 0; 48 ino->size = 0;
49 49
50 INIT_LIST_HEAD(&ino->rehash); 50 INIT_LIST_HEAD(&ino->expiring);
51 51
52 ino->last_used = jiffies; 52 ino->last_used = jiffies;
53 atomic_set(&ino->count, 0); 53 atomic_set(&ino->count, 0);
@@ -338,8 +338,8 @@ int autofs4_fill_super(struct super_block *s, void *data, int silent)
338 mutex_init(&sbi->wq_mutex); 338 mutex_init(&sbi->wq_mutex);
339 spin_lock_init(&sbi->fs_lock); 339 spin_lock_init(&sbi->fs_lock);
340 sbi->queues = NULL; 340 sbi->queues = NULL;
341 spin_lock_init(&sbi->rehash_lock); 341 spin_lock_init(&sbi->lookup_lock);
342 INIT_LIST_HEAD(&sbi->rehash_list); 342 INIT_LIST_HEAD(&sbi->expiring_list);
343 s->s_blocksize = 1024; 343 s->s_blocksize = 1024;
344 s->s_blocksize_bits = 10; 344 s->s_blocksize_bits = 10;
345 s->s_magic = AUTOFS_SUPER_MAGIC; 345 s->s_magic = AUTOFS_SUPER_MAGIC;