From: Al Viro Date: Wed, 15 Jan 2020 03:09:57 +0000 (-0500) Subject: fix autofs regression caused by follow_managed() changes X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=508c8772760d4ef9c1a044519b564710c3684fc5;p=linux.git fix autofs regression caused by follow_managed() changes we need to reload ->d_flags after the call of ->d_manage() - the thing might've been called with dentry still negative and have the damn thing turned positive while we'd waited. Fixes: d41efb522e90 "fs/namei.c: pull positivity check into follow_managed()" Reported-by: Ian Kent Tested-by: Ian Kent Signed-off-by: Al Viro --- diff --git a/fs/namei.c b/fs/namei.c index 204677c37751f..d2720dc71d0ef 100644 --- a/fs/namei.c +++ b/fs/namei.c @@ -1232,6 +1232,7 @@ static int follow_managed(struct path *path, struct nameidata *nd) BUG_ON(!path->dentry->d_op); BUG_ON(!path->dentry->d_op->d_manage); ret = path->dentry->d_op->d_manage(path, false); + flags = smp_load_acquire(&path->dentry->d_flags); if (ret < 0) break; }