mptcp: drop unused rcu member in mptcp_pm_addr_entry
authorGeliang Tang <geliangtang@gmail.com>
Mon, 2 Aug 2021 23:19:14 +0000 (16:19 -0700)
committerJakub Kicinski <kuba@kernel.org>
Tue, 3 Aug 2021 21:26:46 +0000 (14:26 -0700)
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>
net/mptcp/pm_netlink.c

index d2591eb..56263c2 100644 (file)
@@ -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;
 };