diff options
author | Trond Myklebust <trond.myklebust@primarydata.com> | 2017-02-08 11:17:52 -0500 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2017-02-09 13:42:46 -0500 |
commit | d23bb113952db88b03a71c9533e5a40e444e18d3 (patch) | |
tree | d1d5f46fd9f4fb7672515ce7be039f4ee948a2c3 /net/sunrpc | |
parent | a974deee477af89411e0f80456bfb344ac433c98 (diff) | |
download | op-kernel-dev-d23bb113952db88b03a71c9533e5a40e444e18d3.zip op-kernel-dev-d23bb113952db88b03a71c9533e5a40e444e18d3.tar.gz |
SUNRPC: Remove unused function rpc_get_timeout()
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'net/sunrpc')
-rw-r--r-- | net/sunrpc/clnt.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index 1dc9f3b..2838a1f 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c @@ -1453,21 +1453,6 @@ size_t rpc_max_bc_payload(struct rpc_clnt *clnt) EXPORT_SYMBOL_GPL(rpc_max_bc_payload); /** - * rpc_get_timeout - Get timeout for transport in units of HZ - * @clnt: RPC client to query - */ -unsigned long rpc_get_timeout(struct rpc_clnt *clnt) -{ - unsigned long ret; - - rcu_read_lock(); - ret = rcu_dereference(clnt->cl_xprt)->timeout->to_initval; - rcu_read_unlock(); - return ret; -} -EXPORT_SYMBOL_GPL(rpc_get_timeout); - -/** * rpc_force_rebind - force transport to check that remote port is unchanged * @clnt: client to rebind * |