aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc/xprtrdma/transport.c
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2021-08-02 14:44:42 -0400
committerAnna Schumaker <Anna.Schumaker@Netapp.com>2021-08-09 16:42:25 -0400
commit8d863b1f0541ea540cb47d1454eb060963a79d5f (patch)
tree4e06389d7cb553afd5633c1845dd64773aaeca37 /net/sunrpc/xprtrdma/transport.c
parentxprtrdma: Add an xprtrdma_post_send_err tracepoint (diff)
downloadlinux-dev-8d863b1f0541ea540cb47d1454eb060963a79d5f.tar.xz
linux-dev-8d863b1f0541ea540cb47d1454eb060963a79d5f.zip
xprtrdma: Eliminate rpcrdma_post_sends()
Clean up. Now that there is only one registration mode, there is only one target "post_send" method: frwr_send(). rpcrdma_post_sends() no longer adds much value, especially since all of its call sites ignore the return code value except to check if it's non-zero. Just have them call frwr_send() directly instead. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'net/sunrpc/xprtrdma/transport.c')
-rw-r--r--net/sunrpc/xprtrdma/transport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/xprtrdma/transport.c b/net/sunrpc/xprtrdma/transport.c
index 9c2ffc67c0fd..a463400ed5a3 100644
--- a/net/sunrpc/xprtrdma/transport.c
+++ b/net/sunrpc/xprtrdma/transport.c
@@ -661,7 +661,7 @@ xprt_rdma_send_request(struct rpc_rqst *rqst)
goto drop_connection;
rqst->rq_xtime = ktime_get();
- if (rpcrdma_post_sends(r_xprt, req))
+ if (frwr_send(r_xprt, req))
goto drop_connection;
rqst->rq_xmit_bytes_sent += rqst->rq_snd_buf.len;