summaryrefslogtreecommitdiffstats
path: root/net/sunrpc/xprt.c
diff options
context:
space:
mode:
authorTrond Myklebust2018-09-04 05:58:59 +0200
committerTrond Myklebust2018-09-30 21:35:16 +0200
commitadfa71446dd0943ba376eff3e05c7c89582f8038 (patch)
tree512e055b9c0099f0b2b4004078e6636b5cd4e637 /net/sunrpc/xprt.c
parentSUNRPC: Clean up transport write space handling (diff)
downloadkernel-qcow2-linux-adfa71446dd0943ba376eff3e05c7c89582f8038.tar.gz
kernel-qcow2-linux-adfa71446dd0943ba376eff3e05c7c89582f8038.tar.xz
kernel-qcow2-linux-adfa71446dd0943ba376eff3e05c7c89582f8038.zip
SUNRPC: Cleanup: remove the unused 'task' argument from the request_send()
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'net/sunrpc/xprt.c')
-rw-r--r--net/sunrpc/xprt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/xprt.c b/net/sunrpc/xprt.c
index 55dc5c7069b9..c86a5df6c338 100644
--- a/net/sunrpc/xprt.c
+++ b/net/sunrpc/xprt.c
@@ -1283,7 +1283,7 @@ xprt_request_transmit(struct rpc_rqst *req, struct rpc_task *snd_task)
req->rq_ntrans++;
connect_cookie = xprt->connect_cookie;
- status = xprt->ops->send_request(req, snd_task);
+ status = xprt->ops->send_request(req);
trace_xprt_transmit(xprt, req->rq_xid, status);
if (status != 0) {
req->rq_ntrans--;