diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-10-18 16:01:05 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-12-06 10:46:29 -0500 |
commit | bbd5a1f9fc9fad0f8725812d91c51b052e847de8 (patch) | |
tree | 252650d49dd498a67c404b7c4c1abeb2dc341624 /net/sunrpc/clnt.c | |
parent | 3e32a5d99a467b9d4d416323c8c292479b4915e5 (diff) |
SUNRPC: Fix up missing BKL in asynchronous RPC callback functions
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/clnt.c')
-rw-r--r-- | net/sunrpc/clnt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index 8b78177e7575..37d345c04aa5 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c | |||
@@ -541,8 +541,7 @@ rpc_call_async(struct rpc_clnt *clnt, struct rpc_message *msg, int flags, | |||
541 | rpc_restore_sigmask(&oldset); | 541 | rpc_restore_sigmask(&oldset); |
542 | return status; | 542 | return status; |
543 | out_release: | 543 | out_release: |
544 | if (tk_ops->rpc_release != NULL) | 544 | rpc_release_calldata(tk_ops, data); |
545 | tk_ops->rpc_release(data); | ||
546 | return status; | 545 | return status; |
547 | } | 546 | } |
548 | 547 | ||