aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2007-10-25 18:40:21 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2008-01-30 02:05:31 -0500
commit77de2c590ec72828156d85fa13a96db87301cc68 (patch)
tree9e14b6c75df046d406f0652f98eb520db64d3675 /net/sunrpc
parent5085925902cc4d93b9a4992936edd2aee70a5e15 (diff)
SUNRPC: Add a helper rpc_call_start() that initialises task->tk_action
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc')
-rw-r--r--net/sunrpc/clnt.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index aefe3ae218f7..7aeffeebf42d 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -634,6 +634,13 @@ rpc_call_setup(struct rpc_task *task, const struct rpc_message *msg, int flags)
634} 634}
635EXPORT_SYMBOL_GPL(rpc_call_setup); 635EXPORT_SYMBOL_GPL(rpc_call_setup);
636 636
637void
638rpc_call_start(struct rpc_task *task)
639{
640 task->tk_action = call_start;
641}
642EXPORT_SYMBOL_GPL(rpc_call_start);
643
637/** 644/**
638 * rpc_peeraddr - extract remote peer address from clnt's xprt 645 * rpc_peeraddr - extract remote peer address from clnt's xprt
639 * @clnt: RPC client structure 646 * @clnt: RPC client structure