Messages in this thread Patch in this message |  | | From | Christian Brauner <> | Subject | [PATCH 3/3 RESEND] nfsd: use follow_up_bind() helper | Date | Thu, 5 Apr 2018 12:51:03 +0200 |
| |
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com> --- fs/nfsd/vfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index a3c9bfa77def..52e64036d2bd 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c @@ -141,8 +141,8 @@ static void follow_to_parent(struct path *path) { struct dentry *dp; - while (path->dentry == path->mnt->mnt_root && follow_up(path)) - ; + follow_up_bind(path); + dp = dget_parent(path->dentry); dput(path->dentry); path->dentry = dp; -- 2.15.1
|  |