diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2009-04-18 03:26:48 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-06-11 21:36:00 -0400 |
commit | bab77ebf51e3902f608ecf08c9d34a0a52ac35a9 (patch) | |
tree | 710a8bba0a4f3738b32e4e5230ccf3665cd1b815 /fs/nfsd/vfs.c | |
parent | e64c390ca0b60fd2119331ef1fa888d7ea27e424 (diff) |
switch follow_up() to struct path
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/nfsd/vfs.c')
-rw-r--r-- | fs/nfsd/vfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index 9f1ea3127f5d..7b2b3f775326 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c | |||
@@ -173,7 +173,7 @@ nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp, | |||
173 | .dentry = dget(dparent)}; | 173 | .dentry = dget(dparent)}; |
174 | 174 | ||
175 | while (path.dentry == path.mnt->mnt_root && | 175 | while (path.dentry == path.mnt->mnt_root && |
176 | follow_up(&path.mnt, &path.dentry)) | 176 | follow_up(&path)) |
177 | ; | 177 | ; |
178 | dp = dget_parent(path.dentry); | 178 | dp = dget_parent(path.dentry); |
179 | dput(path.dentry); | 179 | dput(path.dentry); |