diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2015-08-10 16:09:52 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-08-11 22:03:19 +0300 |
commit | ce80e7bc57e25062c361de8fb6444129a63bac6d (patch) | |
tree | 0555225e2a848109dcbe852dc788ef0d2dbb56f9 /include/net/switchdev.h | |
parent | 1d1940464e4846912a4f1480648a1571065f1eea (diff) | |
download | linux-ce80e7bc57e25062c361de8fb6444129a63bac6d.tar.xz |
net: switchdev: support static FDB addresses
This patch adds an ndm_state member to the switchdev_obj_fdb structure,
in order to support static FDB addresses.
Set Rocker ndm_state to NUD_REACHABLE.
Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Acked-by: Scott Feldman <sfeldma@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/switchdev.h')
-rw-r--r-- | include/net/switchdev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/switchdev.h b/include/net/switchdev.h index 89da8934519b..319baab3b48e 100644 --- a/include/net/switchdev.h +++ b/include/net/switchdev.h @@ -72,6 +72,7 @@ struct switchdev_obj { struct switchdev_obj_fdb { /* PORT_FDB */ const unsigned char *addr; u16 vid; + u16 ndm_state; } fdb; } u; }; |