summaryrefslogtreecommitdiffstats
path: root/net/sunrpc/clnt.c
diff options
context:
space:
mode:
authorAndy Adamson2009-04-01 15:22:40 +0200
committerBenny Halevy2009-06-17 21:25:07 +0200
commitaae2006e9b0c294114915c13022fa348e1a88023 (patch)
tree2643d2ed1b2d44c5e5d7577e1ae0516eae95f977 /net/sunrpc/clnt.c
parentnfs41: add session reset to state manager (diff)
downloadkernel-qcow2-linux-aae2006e9b0c294114915c13022fa348e1a88023.tar.gz
kernel-qcow2-linux-aae2006e9b0c294114915c13022fa348e1a88023.tar.xz
kernel-qcow2-linux-aae2006e9b0c294114915c13022fa348e1a88023.zip
nfs41: sunrpc: Export the call prepare state for session reset
Signed-off-by: Andy Adamson<andros@netapp.com> Signed-off-by: Benny Halevy <bhalevy@panasas.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/clnt.c')
-rw-r--r--net/sunrpc/clnt.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index 5abab094441f..d00e8135f866 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -695,6 +695,19 @@ void rpc_force_rebind(struct rpc_clnt *clnt)
EXPORT_SYMBOL_GPL(rpc_force_rebind);
/*
+ * Restart an (async) RPC call from the call_prepare state.
+ * Usually called from within the exit handler.
+ */
+void
+rpc_restart_call_prepare(struct rpc_task *task)
+{
+ if (RPC_ASSASSINATED(task))
+ return;
+ task->tk_action = rpc_prepare_task;
+}
+EXPORT_SYMBOL_GPL(rpc_restart_call_prepare);
+
+/*
* Restart an (async) RPC call. Usually called from within the
* exit handler.
*/