mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
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:
committed by
Greg Kroah-Hartman
parent
c7e9624d90
commit
bcebcb11fc
@@ -1037,6 +1037,7 @@ out4:
|
||||
kfree(req->rl_sendbuf);
|
||||
out3:
|
||||
kfree(req->rl_rdmabuf);
|
||||
rpcrdma_regbuf_free(req->rl_sendbuf);
|
||||
out2:
|
||||
kfree(req);
|
||||
out1:
|
||||
|
||||
Reference in New Issue
Block a user