summaryrefslogtreecommitdiffstats
path: root/fs/nfs/super.c
diff options
context:
space:
mode:
authorTrond Myklebust2007-02-02 23:46:09 +0100
committerTrond Myklebust2007-02-04 00:35:03 +0100
commitf2d0d85e58099d518cb50b1c95fc1fc62bbce1b8 (patch)
treeb8b14f9f4d803b90c2d8a96faef082f1b6e257be /fs/nfs/super.c
parentRPC: Clean up rpc_execute... (diff)
downloadkernel-qcow2-linux-f2d0d85e58099d518cb50b1c95fc1fc62bbce1b8.tar.gz
kernel-qcow2-linux-f2d0d85e58099d518cb50b1c95fc1fc62bbce1b8.tar.xz
kernel-qcow2-linux-f2d0d85e58099d518cb50b1c95fc1fc62bbce1b8.zip
NFSv4: Fix Oops in nfs4_create_referral_server
The filehandle that is passed into nfs4_create_referral_server is not initialised. The expectation is that nfs4_create_referral_server will initialise it, and return it to the caller. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/super.c')
-rw-r--r--fs/nfs/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/super.c b/fs/nfs/super.c
index 28108c82b887..89da0a38c12c 100644
--- a/fs/nfs/super.c
+++ b/fs/nfs/super.c
@@ -1044,7 +1044,7 @@ static int nfs4_referral_get_sb(struct file_system_type *fs_type, int flags,
nfs4_fill_super(s);
}
- mntroot = nfs4_get_root(s, data->fh);
+ mntroot = nfs4_get_root(s, &mntfh);
if (IS_ERR(mntroot)) {
error = PTR_ERR(mntroot);
goto error_splat_super;