aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2007-10-25 18:42:21 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2008-01-30 02:05:35 -0500
commitb5627943ab6fabbc13a45d92683363a3d08a249f (patch)
tree2b422b80ed83d5f1df823070815792eba4e0d286 /net
parent5138fde01161cd7976fdc51f6a17da73adaa6baf (diff)
SUNRPC: Remove the now unused function rpc_call_setup()
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net')
-rw-r--r--net/sunrpc/clnt.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index 6eb79c49c93..e0a5e47a1d4 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -614,24 +614,6 @@ rpc_call_async(struct rpc_clnt *clnt, struct rpc_message *msg, int flags,
EXPORT_SYMBOL_GPL(rpc_call_async);
void
-rpc_call_setup(struct rpc_task *task, const struct rpc_message *msg, int flags)
-{
- task->tk_msg = *msg;
- task->tk_flags |= flags;
- /* Bind the user cred */
- if (task->tk_msg.rpc_cred != NULL)
- rpcauth_holdcred(task);
- else
- rpcauth_bindcred(task);
-
- if (task->tk_status == 0)
- task->tk_action = call_start;
- else
- task->tk_action = rpc_exit_task;
-}
-EXPORT_SYMBOL_GPL(rpc_call_setup);
-
-void
rpc_call_start(struct rpc_task *task)
{
task->tk_action = call_start;