mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-23 22:20:50 +07:00
net: dsa: properly check for the bridge_leave methods in dsa_switch_bridge_leave()
commit bcb9928a155444dbd212473e60241ca0a7f641e1 upstream.
This was not caught because there is no switch driver which implements
the .port_bridge_join but not .port_bridge_leave method, but it should
nonetheless be fixed, as in certain conditions (driver development) it
might lead to NULL pointer dereference.
Fixes: f66a6a69f9
("net: dsa: permit cross-chip bridging between all trees in the system")
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7d7d0e84ac
commit
66c73f187d
@ -112,11 +112,11 @@ static int dsa_switch_bridge_leave(struct dsa_switch *ds,
|
||||
int err, i;
|
||||
|
||||
if (dst->index == info->tree_index && ds->index == info->sw_index &&
|
||||
ds->ops->port_bridge_join)
|
||||
ds->ops->port_bridge_leave)
|
||||
ds->ops->port_bridge_leave(ds, info->port, info->br);
|
||||
|
||||
if ((dst->index != info->tree_index || ds->index != info->sw_index) &&
|
||||
ds->ops->crosschip_bridge_join)
|
||||
ds->ops->crosschip_bridge_leave)
|
||||
ds->ops->crosschip_bridge_leave(ds, info->tree_index,
|
||||
info->sw_index, info->port,
|
||||
info->br);
|
||||
|
Loading…
Reference in New Issue
Block a user