From: Mat Martineau <hidden> Date: 2021-08-02 23:19:24
From: Geliang Tang <redacted>
kfree_rcu() had been removed from pm_netlink.c, so this rcu field in
struct mptcp_pm_addr_entry became useless. Let's drop it.
Fixes: 1729cf186d8a ("mptcp: create the listening socket for new port")
Signed-off-by: Geliang Tang <redacted>
Signed-off-by: Mat Martineau <redacted>
---
net/mptcp/pm_netlink.c | 1 -
1 file changed, 1 deletion(-)
From: Jakub Kicinski <kuba@kernel.org> Date: 2021-08-03 15:21:55
On Mon, 2 Aug 2021 16:19:14 -0700 Mat Martineau wrote:
From: Geliang Tang <redacted>
kfree_rcu() had been removed from pm_netlink.c, so this rcu field in
struct mptcp_pm_addr_entry became useless. Let's drop it.
Fixes: 1729cf186d8a ("mptcp: create the listening socket for new port")
Signed-off-by: Geliang Tang <redacted>
Signed-off-by: Mat Martineau <redacted>
This just removes a superfluous member, right? So could as well be
applied to net-next?
From: Mat Martineau <hidden> Date: 2021-08-03 18:11:25
On Tue, 3 Aug 2021, Jakub Kicinski wrote:
On Mon, 2 Aug 2021 16:19:14 -0700 Mat Martineau wrote:
quoted
From: Geliang Tang <redacted>
kfree_rcu() had been removed from pm_netlink.c, so this rcu field in
struct mptcp_pm_addr_entry became useless. Let's drop it.
Fixes: 1729cf186d8a ("mptcp: create the listening socket for new port")
Signed-off-by: Geliang Tang <redacted>
Signed-off-by: Mat Martineau <redacted>
This just removes a superfluous member, right? So could as well be
applied to net-next?
Hi Jakub -
Yes, it's just a superfluous member.
It seemed like a -net candidate, as it was addressing a mistake in a
previous commit (rather than a feature or refactor) and does affect memory
usage - and I was trying to be mindful of the stable tree process. But the
patch will apply cleanly to either net or net-next, so you could apply to
net-next if the fix is not significant enough.
I'll tune my net-vs-net-next threshold based on the tree I see it applied
to :)
Thanks!
--
Mat Martineau
Intel
From: Jakub Kicinski <kuba@kernel.org> Date: 2021-08-03 21:28:57
On Tue, 3 Aug 2021 11:11:16 -0700 (PDT) Mat Martineau wrote:
On Tue, 3 Aug 2021, Jakub Kicinski wrote:
quoted
On Mon, 2 Aug 2021 16:19:14 -0700 Mat Martineau wrote:
quoted
From: Geliang Tang <redacted>
kfree_rcu() had been removed from pm_netlink.c, so this rcu field in
struct mptcp_pm_addr_entry became useless. Let's drop it.
Fixes: 1729cf186d8a ("mptcp: create the listening socket for new port")
Signed-off-by: Geliang Tang <redacted>
Signed-off-by: Mat Martineau <redacted>
This just removes a superfluous member, right? So could as well be
applied to net-next?
Hi Jakub -
Yes, it's just a superfluous member.
It seemed like a -net candidate, as it was addressing a mistake in a
previous commit (rather than a feature or refactor) and does affect memory
usage - and I was trying to be mindful of the stable tree process. But the
patch will apply cleanly to either net or net-next, so you could apply to
net-next if the fix is not significant enough.
I'll tune my net-vs-net-next threshold based on the tree I see it applied
to :)
Alright, applied but without the Fixes tag. Thanks!