Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 95678
b: refs/heads/master
c: 0337904
h: refs/heads/master
v: v3
  • Loading branch information
Jeff Moyer authored and Linus Torvalds committed May 1, 2008
1 parent ce65f8d commit 1178447
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cab0936aac8aa907c6bb814c2cf26385478f254b
refs/heads/master: 033790449ba9c4dcf8478a87693d33df625c23b5
22 changes: 22 additions & 0 deletions trunk/fs/autofs4/root.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ static int try_to_fill_dentry(struct dentry *dentry, int flags)
{
struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
struct autofs_info *ino = autofs4_dentry_ino(dentry);
struct dentry *new;
int status = 0;

/* Block on any pending expiry here; invalidate the dentry
Expand Down Expand Up @@ -318,6 +319,27 @@ static int try_to_fill_dentry(struct dentry *dentry, int flags)
spin_lock(&dentry->d_lock);
dentry->d_flags &= ~DCACHE_AUTOFS_PENDING;
spin_unlock(&dentry->d_lock);

/*
* The dentry that is passed in from lookup may not be the one
* we end up using, as mkdir can create a new one. If this
* happens, and another process tries the lookup at the same time,
* it will set the PENDING flag on this new dentry, but add itself
* to our waitq. Then, if after the lookup succeeds, the first
* process that requested the mount performs another lookup of the
* same directory, it will show up as still pending! So, we need
* to redo the lookup here and clear pending on that dentry.
*/
if (d_unhashed(dentry)) {
new = d_lookup(dentry->d_parent, &dentry->d_name);
if (new) {
spin_lock(&new->d_lock);
new->d_flags &= ~DCACHE_AUTOFS_PENDING;
spin_unlock(&new->d_lock);
dput(new);
}
}

return status;
}

Expand Down

0 comments on commit 1178447

Please sign in to comment.