summaryrefslogtreecommitdiffstats
path: root/fs/nfsd/nfsctl.c
diff options
context:
space:
mode:
authorAl Viro2008-08-02 07:03:36 +0200
committerAl Viro2008-10-23 11:12:51 +0200
commita63bb99660d82dfe7c51588e1f9aadefb756ba51 (patch)
tree25417bd44a2646ecc2d314450afb13be9550d339 /fs/nfsd/nfsctl.c
parent[PATCH] sanitize svc_export_parse() (diff)
downloadkernel-qcow2-linux-a63bb99660d82dfe7c51588e1f9aadefb756ba51.tar.gz
kernel-qcow2-linux-a63bb99660d82dfe7c51588e1f9aadefb756ba51.tar.xz
kernel-qcow2-linux-a63bb99660d82dfe7c51588e1f9aadefb756ba51.zip
[PATCH] switch nfsd to kern_path()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/nfsd/nfsctl.c')
-rw-r--r--fs/nfsd/nfsctl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/nfsd/nfsctl.c b/fs/nfsd/nfsctl.c
index 97543df58242..e3f9783fdcf7 100644
--- a/fs/nfsd/nfsctl.c
+++ b/fs/nfsd/nfsctl.c
@@ -341,7 +341,7 @@ static ssize_t failover_unlock_ip(struct file *file, char *buf, size_t size)
static ssize_t failover_unlock_fs(struct file *file, char *buf, size_t size)
{
- struct nameidata nd;
+ struct path path;
char *fo_path;
int error;
@@ -356,13 +356,13 @@ static ssize_t failover_unlock_fs(struct file *file, char *buf, size_t size)
if (qword_get(&buf, fo_path, size) < 0)
return -EINVAL;
- error = path_lookup(fo_path, 0, &nd);
+ error = kern_path(fo_path, 0, &path);
if (error)
return error;
- error = nlmsvc_unlock_all_by_sb(nd.path.mnt->mnt_sb);
+ error = nlmsvc_unlock_all_by_sb(path.mnt->mnt_sb);
- path_put(&nd.path);
+ path_put(&path);
return error;
}