projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2e928e4
)
NFSv4: Fix the return value for nfs_callback_start_svc
author
Trond Myklebust
<Trond.Myklebust@netapp.com>
Tue, 16 Oct 2012 16:30:44 +0000
(12:30 -0400)
committer
Trond Myklebust
<Trond.Myklebust@netapp.com>
Tue, 16 Oct 2012 17:14:42 +0000
(13:14 -0400)
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>
fs/nfs/callback.c
patch
|
blob
|
history
diff --git
a/fs/nfs/callback.c
b/fs/nfs/callback.c
index 9a521fb3986955aab3f32e755bdef94e9c313aa2..5088b57b078a729d09ced36b3e491c01cba9cf4c 100644
(file)
--- 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;