diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-12-14 14:56:07 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-01-30 02:05:49 -0500 |
commit | 40c553193df41920de659f0446e5d214c862e827 (patch) | |
tree | 4ee62a79fae0ebba26d119a1aae89bfd1a552c10 /fs/nfs/namespace.c | |
parent | c81468a1a766921f11ae44e8a99816ac8dc7b015 (diff) | |
download | op-kernel-dev-40c553193df41920de659f0446e5d214c862e827.zip op-kernel-dev-40c553193df41920de659f0446e5d214c862e827.tar.gz |
NFS: Remove the redundant nfs_client->cl_nfsversion
We can get the same information from the rpc_ops structure instead.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/namespace.c')
-rw-r--r-- | fs/nfs/namespace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/namespace.c b/fs/nfs/namespace.c index acfc56f..be4ce1c 100644 --- a/fs/nfs/namespace.c +++ b/fs/nfs/namespace.c @@ -188,7 +188,7 @@ static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server, { #ifdef CONFIG_NFS_V4 struct vfsmount *mnt = NULL; - switch (server->nfs_client->cl_nfsversion) { + switch (server->nfs_client->rpc_ops->version) { case 2: case 3: mnt = vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata); |