diff options
author | Ioana Ciornei <ioana.ciornei@nxp.com> | 2021-03-22 22:58:57 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-03-22 16:37:45 -0700 |
commit | b54eb093f5ce784ca00170d4512c47cdc755397e (patch) | |
tree | d58888c50ec7af90934ef0abaadcb2061754846e /drivers/net/ethernet/freescale/dpaa2/dpaa2-switch.h | |
parent | 1e7cbabfdb12aa944ae0cb03871f8b55ede1341a (diff) | |
download | lwn-b54eb093f5ce784ca00170d4512c47cdc755397e.tar.gz lwn-b54eb093f5ce784ca00170d4512c47cdc755397e.zip |
dpaa2-switch: add support for configuring per port broadcast flooding
The BR_BCAST_FLOOD bridge port flag is now accepted by the driver and a
change in its state will determine a reconfiguration of the broadcast
egress flooding list on the FDB associated with the port.
Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/freescale/dpaa2/dpaa2-switch.h')
-rw-r--r-- | drivers/net/ethernet/freescale/dpaa2/dpaa2-switch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch.h b/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch.h index 933563064015..65ede6036870 100644 --- a/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch.h +++ b/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch.h @@ -105,13 +105,13 @@ struct ethsw_port_priv { struct ethsw_core *ethsw_data; u8 link_state; u8 stp_state; - bool flood; u8 vlans[VLAN_VID_MASK + 1]; u16 pvid; u16 tx_qdid; struct dpaa2_switch_fdb *fdb; + bool bcast_flood; }; /* Switch data */ |