diff options
| author | Jakub Kicinski <[email protected]> | 2024-10-07 16:46:32 -0700 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2024-10-07 16:46:32 -0700 |
| commit | 58ec6857d57666cc7d1efed5d5b75e8c0804a32e (patch) | |
| tree | 842fa88bee4968c7ef486f75373e9e5cea95c5e0 /include/linux | |
| parent | 1405981bbba0796530311d07a67bf58228cc0fcc (diff) | |
| parent | a3f5f4c2f9b6bc2aa6f5a3e8e23b7519e4f2e3e3 (diff) | |
Merge branch 'ipv4-preliminary-work-for-per-netns-rtnl'
Eric Dumazet says:
====================
ipv4: preliminary work for per-netns RTNL
Inspired by 9b8ca04854fd ("ipv4: avoid quadratic behavior in
FIB insertion of common address") and per-netns RTNL conversion
started by Kuniyuki this week.
ip_fib_check_default() can use RCU instead of a shared spinlock.
fib_info_lock can be removed, RTNL is already used.
fib_info_devhash[] can be removed in favor of a single
pointer in net_device.
====================
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/netdevice.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 49a7e7db0883..3baf8e539b6f 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -2211,6 +2211,9 @@ struct net_device { /* Protocol-specific pointers */ struct in_device __rcu *ip_ptr; + /** @fib_nh_head: nexthops associated with this netdev */ + struct hlist_head fib_nh_head; + #if IS_ENABLED(CONFIG_VLAN_8021Q) struct vlan_info __rcu *vlan_info; #endif |