Since there dpaa2_switch_port_set_fdb() never fails and its return value was never checked, change its prototype to return void. Also, instead of determining if the DPAA2 port is joining or leaving an upper based on the value of the 'bridge_dev' parameter, add the 'linking' parameter to explicitly specify the action. This will enable us to pass the upper device that we are joining/leaving in all possible cases. This will get used in the next patches to determine what kind of device the upper is: a bridge or a bond. Signed-off-by: Ioana Ciornei --- Changes in v3: - none Changes in v2: - none --- .../ethernet/freescale/dpaa2/dpaa2-switch.c | 33 +++++++++---------- 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch.c b/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch.c index d082ecf9b125..8026a5014105 100644 --- a/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch.c +++ b/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch.c @@ -62,8 +62,9 @@ dpaa2_switch_lag_get_unused(struct ethsw_core *ethsw) return NULL; } -static u16 dpaa2_switch_port_set_fdb(struct ethsw_port_priv *port_priv, - struct net_device *bridge_dev) +static void dpaa2_switch_port_set_fdb(struct ethsw_port_priv *port_priv, + struct net_device *upper_dev, + bool linking) { struct ethsw_core *ethsw = port_priv->ethsw_data; struct ethsw_port_priv *other_port_priv = NULL; @@ -73,10 +74,8 @@ static u16 dpaa2_switch_port_set_fdb(struct ethsw_port_priv *port_priv, struct list_head *iter; int i; - /* If we leave a bridge (bridge_dev is NULL), find an unused - * FDB and use that. - */ - if (!bridge_dev) { + /* If we leave a bridge, find an unused FDB and use that. */ + if (!linking) { /* First verify if this is the last port to leave this bridge */ for (i = 0; i < ethsw->sw_attr.num_ifs; i++) { if (!ethsw->ports[i] || ethsw->ports[i] == port_priv) @@ -90,7 +89,7 @@ static u16 dpaa2_switch_port_set_fdb(struct ethsw_port_priv *port_priv, /* If this is the last user of the FDB, just keep using it. */ if (last_fdb_user) { port_priv->fdb->bridge_dev = NULL; - return 0; + return; } /* Since we are not the last port which leaves a bridge, @@ -101,12 +100,12 @@ static u16 dpaa2_switch_port_set_fdb(struct ethsw_port_priv *port_priv, */ fdb = dpaa2_switch_fdb_get_unused(port_priv->ethsw_data); if (WARN_ON(!fdb)) - return 0; + return; port_priv->fdb = fdb; port_priv->fdb->in_use = true; port_priv->fdb->bridge_dev = NULL; - return 0; + return; } /* The below call to netdev_for_each_lower_dev() demands the RTNL lock @@ -118,7 +117,7 @@ static u16 dpaa2_switch_port_set_fdb(struct ethsw_port_priv *port_priv, /* If part of a bridge, use the FDB of the first dpaa2 switch interface * to be present in that bridge */ - netdev_for_each_lower_dev(bridge_dev, other_dev, iter) { + netdev_for_each_lower_dev(upper_dev, other_dev, iter) { if (!dpaa2_switch_port_dev_check(other_dev)) continue; @@ -144,9 +143,7 @@ static u16 dpaa2_switch_port_set_fdb(struct ethsw_port_priv *port_priv, } /* Keep track of the new upper bridge device */ - port_priv->fdb->bridge_dev = bridge_dev; - - return 0; + port_priv->fdb->bridge_dev = upper_dev; } static void dpaa2_switch_fdb_get_flood_cfg(struct ethsw_core *ethsw, u16 fdb_id, @@ -2062,7 +2059,7 @@ static int dpaa2_switch_port_bridge_join(struct net_device *netdev, if (err) return err; - dpaa2_switch_port_set_fdb(port_priv, upper_dev); + dpaa2_switch_port_set_fdb(port_priv, upper_dev, true); /* Inherit the initial bridge port learning state */ learn_ena = br_port_flag_is_set(netdev, BR_LEARNING); @@ -2088,7 +2085,7 @@ static int dpaa2_switch_port_bridge_join(struct net_device *netdev, err_switchdev_offload: err_egress_flood: - dpaa2_switch_port_set_fdb(port_priv, NULL); + dpaa2_switch_port_set_fdb(port_priv, upper_dev, false); return err; } @@ -2135,7 +2132,7 @@ static int dpaa2_switch_port_bridge_leave(struct net_device *netdev) if (err) netdev_err(netdev, "Unable to clear RX VLANs from old FDB table, err (%d)\n", err); - dpaa2_switch_port_set_fdb(port_priv, NULL); + dpaa2_switch_port_set_fdb(port_priv, port_priv->fdb->bridge_dev, false); /* Restore all RX VLANs into the new FDB table that we just joined */ err = vlan_for_each(netdev, dpaa2_switch_port_restore_rxvlan, netdev); @@ -2432,7 +2429,7 @@ static int dpaa2_switch_port_bond_join(struct net_device *netdev, return err; /* Setup the egress flood policy (broadcast, unknown unicast) */ - dpaa2_switch_port_set_fdb(port_priv, bond_dev); + dpaa2_switch_port_set_fdb(port_priv, bond_dev, true); err = dpaa2_switch_fdb_set_egress_flood(ethsw, port_priv->fdb->fdb_id); if (err) goto err_egress_flood; @@ -2529,7 +2526,7 @@ static int dpaa2_switch_port_bond_leave(struct net_device *netdev, goto lag_cleanup; /* Setup the FDB for this port which is now standalone */ - dpaa2_switch_port_set_fdb(port_priv, NULL); + dpaa2_switch_port_set_fdb(port_priv, bond_dev, false); /* Setup the egress flood policy (broadcast, unknown unicast). * When the port is not under a bond, only the CTRL interface is part -- 2.25.1