Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 554c9a8e authored by Stephen Hemminger's avatar Stephen Hemminger Committed by David S. Miller
Browse files

[BRIDGE]: Fix faulty check in br_stp_recalculate_bridge_id()



One of the conversions from memcmp to compare_ether_addr is incorrect.
We need to do relative comparison to determine min MAC address to
use in bridge id. 

Signed-off-by: default avatarStephen Hemminger <shemminger@osdl.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e84a9f5e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -157,7 +157,7 @@ void br_stp_recalculate_bridge_id(struct net_bridge *br)

	list_for_each_entry(p, &br->port_list, list) {
		if (addr == br_mac_zero ||
		    compare_ether_addr(p->dev->dev_addr, addr) < 0)
		    memcmp(p->dev->dev_addr, addr, ETH_ALEN) < 0)
			addr = p->dev->dev_addr;

	}