diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-02-22 22:34:12 +0100 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-02-26 06:40:42 +0100 |
commit | fda1393938035559b417dd5b26b9cc293a7aee00 (patch) | |
tree | 8190a6ad7a81974dd5f782f2ab872753742ff68d /net/sunrpc/clnt.c | |
parent | SUNRPC: Add a new helper rpc_wake_up_queued_task() (diff) | |
download | linux-fda1393938035559b417dd5b26b9cc293a7aee00.tar.xz linux-fda1393938035559b417dd5b26b9cc293a7aee00.zip |
SUNRPC: Convert users of rpc_wake_up_task to use rpc_wake_up_queued_task
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/clnt.c')
-rw-r--r-- | net/sunrpc/clnt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index fe95bd0ab1e9..0e209af39797 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c @@ -1066,7 +1066,7 @@ call_transmit(struct rpc_task *task) if (task->tk_msg.rpc_proc->p_decode != NULL) return; task->tk_action = rpc_exit_task; - rpc_wake_up_task(task); + rpc_wake_up_queued_task(&task->tk_xprt->pending, task); } /* |