diff options
author | Ido Schimmel <idosch@mellanox.com> | 2018-10-17 10:53:29 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-10-18 02:45:08 +0200 |
commit | e9ba0fbc7dd23a74e77960c98c988f59a1ff75aa (patch) | |
tree | 489690a0950dc15baf37a9d495a8cad5abeb7076 /drivers/net/ethernet/rocker | |
parent | vxlan: Notify for each remote of a removed FDB entry (diff) | |
download | linux-e9ba0fbc7dd23a74e77960c98c988f59a1ff75aa.tar.xz linux-e9ba0fbc7dd23a74e77960c98c988f59a1ff75aa.zip |
bridge: switchdev: Allow clearing FDB entry offload indication
Currently, an FDB entry only ceases being offloaded when it is deleted.
This changes with VxLAN encapsulation.
Devices capable of performing VxLAN encapsulation usually have only one
FDB table, unlike the software data path which has two - one in the
bridge driver and another in the VxLAN driver.
Therefore, bridge FDB entries pointing to a VxLAN device are only
offloaded if there is a corresponding entry in the VxLAN FDB.
Allow clearing the offload indication in case the corresponding entry
was deleted from the VxLAN FDB.
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Reviewed-by: Petr Machata <petrm@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/rocker')
-rw-r--r-- | drivers/net/ethernet/rocker/rocker_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/rocker/rocker_main.c b/drivers/net/ethernet/rocker/rocker_main.c index aeafdb9ac015..8721c0506af3 100644 --- a/drivers/net/ethernet/rocker/rocker_main.c +++ b/drivers/net/ethernet/rocker/rocker_main.c @@ -2728,6 +2728,7 @@ rocker_fdb_offload_notify(struct rocker_port *rocker_port, info.addr = recv_info->addr; info.vid = recv_info->vid; + info.offloaded = true; call_switchdev_notifiers(SWITCHDEV_FDB_OFFLOADED, rocker_port->dev, &info.info); } |