]> www.infradead.org Git - users/hch/misc.git/commit
mptcp: use sock_kfree_s instead of kfree
authorGeliang Tang <tanggeliang@kylinos.cn>
Mon, 4 Nov 2024 12:31:42 +0000 (13:31 +0100)
committerJakub Kicinski <kuba@kernel.org>
Wed, 6 Nov 2024 01:51:09 +0000 (17:51 -0800)
commit99635c91fb8b860a6404b9bc8b769df7bdaa2ae3
tree36a446b3f88ccd27fe5633db2b47c3da27334794
parentcfbbd4859882a5469f6f4945937a074ee78c4b46
mptcp: use sock_kfree_s instead of kfree

The local address entries on userspace_pm_local_addr_list are allocated
by sock_kmalloc().

It's then required to use sock_kfree_s() instead of kfree() to free
these entries in order to adjust the allocated size on the sk side.

Fixes: 24430f8bf516 ("mptcp: add address into userspace pm list")
Cc: stable@vger.kernel.org
Signed-off-by: Geliang Tang <tanggeliang@kylinos.cn>
Reviewed-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Link: https://patch.msgid.link/20241104-net-mptcp-misc-6-12-v1-2-c13f2ff1656f@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/mptcp/pm_userspace.c