summaryrefslogtreecommitdiff
path: root/net/rds
diff options
context:
space:
mode:
authorHangyu Hua <hbh25y@gmail.com>2021-12-14 18:46:59 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-12-22 09:29:37 +0100
commit166f0adf7e7525c87595ceadb21a91e2a9519a1e (patch)
treea04ce940c5e4f81bed571b476356b993daf85ee6 /net/rds
parent9cb405ee533442a5072fddb52acd28b9019cf847 (diff)
rds: memory leak in __rds_conn_create()
[ Upstream commit 5f9562ebe710c307adc5f666bf1a2162ee7977c0 ] __rds_conn_create() did not release conn->c_path when loop_trans != 0 and trans->t_prefer_loopback != 0 and is_outgoing == 0. Fixes: aced3ce57cd3 ("RDS tcp loopback connection can hang") Signed-off-by: Hangyu Hua <hbh25y@gmail.com> Reviewed-by: Sharath Srinivasan <sharath.srinivasan@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'net/rds')
-rw-r--r--net/rds/connection.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/rds/connection.c b/net/rds/connection.c
index c85bd6340eaa..92ff40e7a66c 100644
--- a/net/rds/connection.c
+++ b/net/rds/connection.c
@@ -253,6 +253,7 @@ static struct rds_connection *__rds_conn_create(struct net *net,
* should end up here, but if it
* does, reset/destroy the connection.
*/
+ kfree(conn->c_path);
kmem_cache_free(rds_conn_slab, conn);
conn = ERR_PTR(-EOPNOTSUPP);
goto out;