xprtrdma: Rename frwr_release_mr()
[ Upstream commit f912af77e2c1ba25bd40534668b10da5b20f686a ] Clean up: To be consistent with other functions in this source file, follow the naming convention of putting the object being acted upon before the action itself. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com> Stable-dep-of: acd9f2dd23c6 ("xprtrdma: Fix rpcrdma_reqs_reset()") Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
cf9141d2f7
commit
974294806b
@ -50,11 +50,11 @@
|
||||
#endif
|
||||
|
||||
/**
|
||||
* frwr_release_mr - Destroy one MR
|
||||
* frwr_mr_release - Destroy one MR
|
||||
* @mr: MR allocated by frwr_mr_init
|
||||
*
|
||||
*/
|
||||
void frwr_release_mr(struct rpcrdma_mr *mr)
|
||||
void frwr_mr_release(struct rpcrdma_mr *mr)
|
||||
{
|
||||
int rc;
|
||||
|
||||
@ -83,7 +83,7 @@ static void frwr_mr_recycle(struct rpcrdma_mr *mr)
|
||||
r_xprt->rx_stats.mrs_recycled++;
|
||||
spin_unlock(&r_xprt->rx_buf.rb_lock);
|
||||
|
||||
frwr_release_mr(mr);
|
||||
frwr_mr_release(mr);
|
||||
}
|
||||
|
||||
/* frwr_reset - Place MRs back on the free list
|
||||
|
@ -1100,7 +1100,7 @@ void rpcrdma_req_destroy(struct rpcrdma_req *req)
|
||||
list_del(&mr->mr_all);
|
||||
spin_unlock(&buf->rb_lock);
|
||||
|
||||
frwr_release_mr(mr);
|
||||
frwr_mr_release(mr);
|
||||
}
|
||||
|
||||
rpcrdma_regbuf_free(req->rl_recvbuf);
|
||||
@ -1131,7 +1131,7 @@ static void rpcrdma_mrs_destroy(struct rpcrdma_xprt *r_xprt)
|
||||
list_del(&mr->mr_all);
|
||||
spin_unlock(&buf->rb_lock);
|
||||
|
||||
frwr_release_mr(mr);
|
||||
frwr_mr_release(mr);
|
||||
|
||||
spin_lock(&buf->rb_lock);
|
||||
}
|
||||
|
@ -520,7 +520,7 @@ rpcrdma_data_dir(bool writing)
|
||||
void frwr_reset(struct rpcrdma_req *req);
|
||||
int frwr_query_device(struct rpcrdma_ep *ep, const struct ib_device *device);
|
||||
int frwr_mr_init(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mr *mr);
|
||||
void frwr_release_mr(struct rpcrdma_mr *mr);
|
||||
void frwr_mr_release(struct rpcrdma_mr *mr);
|
||||
struct rpcrdma_mr_seg *frwr_map(struct rpcrdma_xprt *r_xprt,
|
||||
struct rpcrdma_mr_seg *seg,
|
||||
int nsegs, bool writing, __be32 xid,
|
||||
|
Loading…
Reference in New Issue
Block a user