net: Initial nexthop code
Barebones start point for nexthops. Implementation for RTM commands, notifications, management of rbtree for holding nexthops by id, and kernel side data structures for nexthops and nexthop config. Nexthops are maintained in an rbtree sorted by id. Similar to routes, nexthops are configured per namespace using netns_nexthop struct added to struct net. Nexthop notifications are sent when a nexthop is added or deleted, but NOT if the delete is due to a device event or network namespace teardown (which also involves device events). Applications are expected to use the device down event to flush nexthops and any routes used by the nexthops. Signed-off-by: David Ahern <dsahern@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
65ee00a940
commit
ab84be7e54
@@ -19,6 +19,7 @@
|
||||
#include <net/netns/packet.h>
|
||||
#include <net/netns/ipv4.h>
|
||||
#include <net/netns/ipv6.h>
|
||||
#include <net/netns/nexthop.h>
|
||||
#include <net/netns/ieee802154_6lowpan.h>
|
||||
#include <net/netns/sctp.h>
|
||||
#include <net/netns/dccp.h>
|
||||
@@ -108,6 +109,7 @@ struct net {
|
||||
struct netns_mib mib;
|
||||
struct netns_packet packet;
|
||||
struct netns_unix unx;
|
||||
struct netns_nexthop nexthop;
|
||||
struct netns_ipv4 ipv4;
|
||||
#if IS_ENABLED(CONFIG_IPV6)
|
||||
struct netns_ipv6 ipv6;
|
||||
|
Reference in New Issue
Block a user