diff options
author | Bryan Schumaker <bjschuma@netapp.com> | 2012-05-10 15:07:30 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-05-14 20:30:25 -0400 |
commit | 3028eb2b324c517da1e9e589743c4a5154f70dd1 (patch) | |
tree | 9f2f13e0bea581bac9f68a8f516a3018e3d78e15 /fs/nfs | |
parent | 0427708657750bdc03af3491a0297cab5e7efabf (diff) |
NFS: Rename nfs4_proc_get_root()
This function is really getting the root filehandle and not the root
dentry of the filesystem. I also removed the rpc_ops lookup from
nfs4_get_rootfh() under the assumption that if we reach this function
then we already know we are using NFS v4.
Signed-off-by: Bryan Schumaker <bjschuma@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/getroot.c | 2 | ||||
-rw-r--r-- | fs/nfs/nfs4_fs.h | 1 | ||||
-rw-r--r-- | fs/nfs/nfs4proc.c | 6 |
3 files changed, 5 insertions, 4 deletions
diff --git a/fs/nfs/getroot.c b/fs/nfs/getroot.c index 4ca6f5c8038..8a0f33ead77 100644 --- a/fs/nfs/getroot.c +++ b/fs/nfs/getroot.c | |||
@@ -150,7 +150,7 @@ int nfs4_get_rootfh(struct nfs_server *server, struct nfs_fh *mntfh) | |||
150 | goto out; | 150 | goto out; |
151 | 151 | ||
152 | /* Start by getting the root filehandle from the server */ | 152 | /* Start by getting the root filehandle from the server */ |
153 | ret = server->nfs_client->rpc_ops->getroot(server, mntfh, &fsinfo); | 153 | ret = nfs4_proc_get_rootfh(server, mntfh, &fsinfo); |
154 | if (ret < 0) { | 154 | if (ret < 0) { |
155 | dprintk("nfs4_get_rootfh: getroot error = %d\n", -ret); | 155 | dprintk("nfs4_get_rootfh: getroot error = %d\n", -ret); |
156 | goto out; | 156 | goto out; |
diff --git a/fs/nfs/nfs4_fs.h b/fs/nfs/nfs4_fs.h index 97365b0f9d3..edeef71f957 100644 --- a/fs/nfs/nfs4_fs.h +++ b/fs/nfs/nfs4_fs.h | |||
@@ -214,6 +214,7 @@ struct vfsmount *nfs4_submount(struct nfs_server *, struct dentry *, | |||
214 | /* nfs4proc.c */ | 214 | /* nfs4proc.c */ |
215 | extern int nfs4_proc_setclientid(struct nfs_client *, u32, unsigned short, struct rpc_cred *, struct nfs4_setclientid_res *); | 215 | extern int nfs4_proc_setclientid(struct nfs_client *, u32, unsigned short, struct rpc_cred *, struct nfs4_setclientid_res *); |
216 | extern int nfs4_proc_setclientid_confirm(struct nfs_client *, struct nfs4_setclientid_res *arg, struct rpc_cred *); | 216 | extern int nfs4_proc_setclientid_confirm(struct nfs_client *, struct nfs4_setclientid_res *arg, struct rpc_cred *); |
217 | extern int nfs4_proc_get_rootfh(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); | ||
217 | extern int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred); | 218 | extern int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred); |
218 | extern int nfs4_init_clientid(struct nfs_client *, struct rpc_cred *); | 219 | extern int nfs4_init_clientid(struct nfs_client *, struct rpc_cred *); |
219 | extern int nfs41_init_clientid(struct nfs_client *, struct rpc_cred *); | 220 | extern int nfs41_init_clientid(struct nfs_client *, struct rpc_cred *); |
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 98eb48ddc25..69212d2f882 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c | |||
@@ -2345,8 +2345,8 @@ static int nfs4_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle, | |||
2345 | /* | 2345 | /* |
2346 | * get the file handle for the "/" directory on the server | 2346 | * get the file handle for the "/" directory on the server |
2347 | */ | 2347 | */ |
2348 | static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle, | 2348 | int nfs4_proc_get_rootfh(struct nfs_server *server, struct nfs_fh *fhandle, |
2349 | struct nfs_fsinfo *info) | 2349 | struct nfs_fsinfo *info) |
2350 | { | 2350 | { |
2351 | int minor_version = server->nfs_client->cl_minorversion; | 2351 | int minor_version = server->nfs_client->cl_minorversion; |
2352 | int status = nfs4_lookup_root(server, fhandle, info); | 2352 | int status = nfs4_lookup_root(server, fhandle, info); |
@@ -6539,7 +6539,7 @@ const struct nfs_rpc_ops nfs_v4_clientops = { | |||
6539 | .dir_inode_ops = &nfs4_dir_inode_operations, | 6539 | .dir_inode_ops = &nfs4_dir_inode_operations, |
6540 | .file_inode_ops = &nfs4_file_inode_operations, | 6540 | .file_inode_ops = &nfs4_file_inode_operations, |
6541 | .file_ops = &nfs4_file_operations, | 6541 | .file_ops = &nfs4_file_operations, |
6542 | .getroot = nfs4_proc_get_root, | 6542 | .getroot = nfs4_proc_get_rootfh, |
6543 | .submount = nfs4_submount, | 6543 | .submount = nfs4_submount, |
6544 | .getattr = nfs4_proc_getattr, | 6544 | .getattr = nfs4_proc_getattr, |
6545 | .setattr = nfs4_proc_setattr, | 6545 | .setattr = nfs4_proc_setattr, |