summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2012-10-16 12:30:44 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2012-10-16 13:14:42 -0400
commite9b7e91745fa9df94900c8ab08e633f336686098 (patch)
tree1f306a155f3117e10b06f9e9f7a652d84c3d00b8 /fs
parent2e928e4878fbc6328c2b1fc897d008db257bfbb0 (diff)
downloadlinux-e9b7e91745fa9df94900c8ab08e633f336686098.tar.gz
linux-e9b7e91745fa9df94900c8ab08e633f336686098.tar.xz
NFSv4: Fix the return value for nfs_callback_start_svc
returning PTR_ERR(cb_info->task) just after we have set it to NULL looks like a typo... Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> Cc: Stanislav Kinsbursky <skinsbursky@parallels.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/nfs/callback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/callback.c b/fs/nfs/callback.c
index 9a521fb39869..5088b57b078a 100644
--- a/fs/nfs/callback.c
+++ b/fs/nfs/callback.c
@@ -241,7 +241,7 @@ static int nfs_callback_start_svc(int minorversion, struct rpc_xprt *xprt,
svc_exit_thread(cb_info->rqst);
cb_info->rqst = NULL;
cb_info->task = NULL;
- return PTR_ERR(cb_info->task);
+ return ret;
}
dprintk("nfs_callback_up: service started\n");
return 0;