aboutsummaryrefslogtreecommitdiffstats
path: root/fs/autofs4/root.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/autofs4/root.c')
-rw-r--r--fs/autofs4/root.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/fs/autofs4/root.c b/fs/autofs4/root.c
index 51c873ca8e8d..61d1dca16884 100644
--- a/fs/autofs4/root.c
+++ b/fs/autofs4/root.c
@@ -177,7 +177,8 @@ static int try_to_fill_dentry(struct dentry *dentry, int flags)
177 return status; 177 return status;
178 } 178 }
179 /* Trigger mount for path component or follow link */ 179 /* Trigger mount for path component or follow link */
180 } else if (flags & (TRIGGER_FLAGS | TRIGGER_INTENTS) || 180 } else if (dentry->d_flags & DCACHE_AUTOFS_PENDING ||
181 flags & (TRIGGER_FLAGS | TRIGGER_INTENTS) ||
181 current->link_count) { 182 current->link_count) {
182 DPRINTK("waiting for mount name=%.*s", 183 DPRINTK("waiting for mount name=%.*s",
183 dentry->d_name.len, dentry->d_name.name); 184 dentry->d_name.len, dentry->d_name.name);
@@ -223,7 +224,8 @@ static void *autofs4_follow_link(struct dentry *dentry, struct nameidata *nd)
223 224
224 /* If it's our master or we shouldn't trigger a mount we're done */ 225 /* If it's our master or we shouldn't trigger a mount we're done */
225 lookup_type = nd->flags & (TRIGGER_FLAGS | TRIGGER_INTENTS); 226 lookup_type = nd->flags & (TRIGGER_FLAGS | TRIGGER_INTENTS);
226 if (oz_mode || !lookup_type) 227 if (oz_mode ||
228 !(lookup_type || dentry->d_flags & DCACHE_AUTOFS_PENDING))
227 goto done; 229 goto done;
228 230
229 /* If an expire request is pending wait for it. */ 231 /* If an expire request is pending wait for it. */
@@ -242,7 +244,8 @@ static void *autofs4_follow_link(struct dentry *dentry, struct nameidata *nd)
242 * don't try to mount it again. 244 * don't try to mount it again.
243 */ 245 */
244 spin_lock(&dcache_lock); 246 spin_lock(&dcache_lock);
245 if (!d_mountpoint(dentry) && __simple_empty(dentry)) { 247 if (dentry->d_flags & DCACHE_AUTOFS_PENDING ||
248 (!d_mountpoint(dentry) && __simple_empty(dentry))) {
246 spin_unlock(&dcache_lock); 249 spin_unlock(&dcache_lock);
247 250
248 status = try_to_fill_dentry(dentry, 0); 251 status = try_to_fill_dentry(dentry, 0);