diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2021-03-24 04:30:34 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-03-24 22:48:38 +0300 |
commit | ec9d16bab615ceda8ac22a7b4d2c7601bbe172cb (patch) | |
tree | c1e128588bf80d7b2e3509630c94e231ff088997 /include | |
parent | e4417d6950b06fe6c520e937b337daff093220ff (diff) | |
download | linux-ec9d16bab615ceda8ac22a7b4d2c7601bbe172cb.tar.xz |
net: bridge: resolve forwarding path for bridge devices
Add .ndo_fill_forward_path for bridge devices.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netdevice.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 8823a56744f1..a24270b0d200 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -851,6 +851,7 @@ typedef u16 (*select_queue_fallback_t)(struct net_device *dev, enum net_device_path_type { DEV_PATH_ETHERNET = 0, DEV_PATH_VLAN, + DEV_PATH_BRIDGE, }; struct net_device_path { |