xprtrdma: Fix regbuf data not freed in rpcrdma_req_create()
[ Upstream commit9181f40fb2] If rdma receive buffer allocate failed, should call rpcrdma_regbuf_free() to free the send buffer, otherwise, the buffer data will be leaked. Fixes:bb93a1ae2b("xprtrdma: Allocate req's regbufs at xprt create time") Signed-off-by: Zhang Xiaoxu <zhangxiaoxu5@huawei.com> Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
0649129359
commit
be7d90fc3a
1 changed files with 1 additions and 1 deletions
|
|
@ -866,7 +866,7 @@ struct rpcrdma_req *rpcrdma_req_create(struct rpcrdma_xprt *r_xprt, size_t size,
|
|||
return req;
|
||||
|
||||
out3:
|
||||
kfree(req->rl_sendbuf);
|
||||
rpcrdma_regbuf_free(req->rl_sendbuf);
|
||||
out2:
|
||||
kfree(req);
|
||||
out1:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue