aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc
diff options
context:
space:
mode:
Diffstat (limited to 'net/sunrpc')
-rw-r--r--net/sunrpc/clnt.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index 4e91f3110938..5a28ffac99ea 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -1455,6 +1455,16 @@ static int rpc_ping(struct rpc_clnt *clnt, int flags)
1455 return err; 1455 return err;
1456} 1456}
1457 1457
1458struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred, int flags)
1459{
1460 struct rpc_message msg = {
1461 .rpc_proc = &rpcproc_null,
1462 .rpc_cred = cred,
1463 };
1464 return rpc_do_run_task(clnt, &msg, flags, &rpc_default_ops, NULL);
1465}
1466EXPORT_SYMBOL(rpc_call_null);
1467
1458#ifdef RPC_DEBUG 1468#ifdef RPC_DEBUG
1459void rpc_show_tasks(void) 1469void rpc_show_tasks(void)
1460{ 1470{