aboutsummaryrefslogtreecommitdiffstats
path: root/net/dsa/slave.c
diff options
context:
space:
mode:
authorVivien Didelot <vivien.didelot@savoirfairelinux.com>2016-09-22 16:49:22 -0400
committerDavid S. Miller <davem@davemloft.net>2016-09-23 08:38:50 -0400
commit732f794c1baf58e1eb2be4431635829c3da655bd (patch)
treea888762ed8e73ce15609c1dab5c43ce117c76aa8 /net/dsa/slave.c
parent4acfee8143b33efa8bda6f03fe1462d545ff8170 (diff)
net: dsa: add port fast ageing
Today the DSA drivers are in charge of flushing the MAC addresses associated to a port when its STP state changes from Learning or Forwarding, to Disabled or Blocking or Listening. This makes the drivers more complex and hides the generic switch logic. Introduce a new optional port_fast_age operation to dsa_switch_ops, to move this logic to the DSA layer and keep drivers simple. Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa/slave.c')
-rw-r--r--net/dsa/slave.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/net/dsa/slave.c b/net/dsa/slave.c
index fd78d4c9b197..6b1282c006b1 100644
--- a/net/dsa/slave.c
+++ b/net/dsa/slave.c
@@ -71,8 +71,26 @@ static inline bool dsa_port_is_bridged(struct dsa_slave_priv *p)
71 71
72static void dsa_port_set_stp_state(struct dsa_switch *ds, int port, u8 state) 72static void dsa_port_set_stp_state(struct dsa_switch *ds, int port, u8 state)
73{ 73{
74 struct dsa_port *dp = &ds->ports[port];
75
74 if (ds->ops->port_stp_state_set) 76 if (ds->ops->port_stp_state_set)
75 ds->ops->port_stp_state_set(ds, port, state); 77 ds->ops->port_stp_state_set(ds, port, state);
78
79 if (ds->ops->port_fast_age) {
80 /* Fast age FDB entries or flush appropriate forwarding database
81 * for the given port, if we are moving it from Learning or
82 * Forwarding state, to Disabled or Blocking or Listening state.
83 */
84
85 if ((dp->stp_state == BR_STATE_LEARNING ||
86 dp->stp_state == BR_STATE_FORWARDING) &&
87 (state == BR_STATE_DISABLED ||
88 state == BR_STATE_BLOCKING ||
89 state == BR_STATE_LISTENING))
90 ds->ops->port_fast_age(ds, port);
91 }
92
93 dp->stp_state = state;
76} 94}
77 95
78static int dsa_slave_open(struct net_device *dev) 96static int dsa_slave_open(struct net_device *dev)