commit | bbd5a1f9fc9fad0f8725812d91c51b052e847de8 | [log] [tgz] |
---|---|---|
author | Trond Myklebust <Trond.Myklebust@netapp.com> | Wed Oct 18 16:01:05 2006 -0400 |
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | Wed Dec 06 10:46:29 2006 -0500 |
tree | 252650d49dd498a67c404b7c4c1abeb2dc341624 | |
parent | 3e32a5d99a467b9d4d416323c8c292479b4915e5 [diff] [blame] |
SUNRPC: Fix up missing BKL in asynchronous RPC callback functions Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index 8b78177..37d345c 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c
@@ -541,8 +541,7 @@ rpc_restore_sigmask(&oldset); return status; out_release: - if (tk_ops->rpc_release != NULL) - tk_ops->rpc_release(data); + rpc_release_calldata(tk_ops, data); return status; }