diff options
author | Geliang Tang <geliangtang@gmail.com> | 2021-08-03 02:19:14 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2021-08-04 00:26:46 +0300 |
commit | abc7285d89ffd089739a1a3059ddd843dd019637 (patch) | |
tree | 477e1bff831cde704c65aa649f449c32a3152de1 /net/mptcp | |
parent | 4039146777a91e1576da2bf38e0d8a1061a1ae47 (diff) | |
download | linux-abc7285d89ffd089739a1a3059ddd843dd019637.tar.xz |
mptcp: drop unused rcu member in mptcp_pm_addr_entry
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.
Signed-off-by: Geliang Tang <geliangtang@gmail.com>
Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Link: https://lore.kernel.org/r/20210802231914.54709-1-mathew.j.martineau@linux.intel.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/mptcp')
-rw-r--r-- | net/mptcp/pm_netlink.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/mptcp/pm_netlink.c b/net/mptcp/pm_netlink.c index d2591ebf01d9..56263c2c4014 100644 --- a/net/mptcp/pm_netlink.c +++ b/net/mptcp/pm_netlink.c @@ -27,7 +27,6 @@ struct mptcp_pm_addr_entry { struct mptcp_addr_info addr; u8 flags; int ifindex; - struct rcu_head rcu; struct socket *lsk; }; |