diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2020-02-21 17:00:23 -0500 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2020-03-27 10:47:24 -0400 |
commit | 97d0de8812a10a66510ff95f8fe6e8d3053fd2ca (patch) | |
tree | 211ed04325919c0aa650402e3b0ed2f956c92bfe /net/sunrpc/xprtrdma/backchannel.c | |
parent | 253a51622fb03425b611e709e34f1ea70949a61f (diff) | |
download | lwn-97d0de8812a10a66510ff95f8fe6e8d3053fd2ca.tar.gz lwn-97d0de8812a10a66510ff95f8fe6e8d3053fd2ca.zip |
xprtrdma: Clean up the post_send path
Clean up: Simplify the synopses of functions in the post_send path
by combining the struct rpcrdma_ia and struct rpcrdma_ep arguments.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'net/sunrpc/xprtrdma/backchannel.c')
-rw-r--r-- | net/sunrpc/xprtrdma/backchannel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/xprtrdma/backchannel.c b/net/sunrpc/xprtrdma/backchannel.c index 1a0ae0c61353..4b43910a6ed2 100644 --- a/net/sunrpc/xprtrdma/backchannel.c +++ b/net/sunrpc/xprtrdma/backchannel.c @@ -115,7 +115,7 @@ int xprt_rdma_bc_send_reply(struct rpc_rqst *rqst) if (rc < 0) goto failed_marshal; - if (rpcrdma_ep_post(&r_xprt->rx_ia, &r_xprt->rx_ep, req)) + if (rpcrdma_post_sends(r_xprt, req)) goto drop_connection; return 0; |