From: Stephen Hemminger Date: Tue, 3 Jan 2006 23:28:05 +0000 (-0800) Subject: [PATCH] BRIDGE: Fix faulty check in br_stp_recalculate_bridge_id() X-Git-Tag: v2.6.15.1~17 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b43a04de4c0807dbaf5934e7f72c004f4853c4e8;p=karo-tx-linux.git [PATCH] BRIDGE: Fix faulty check in br_stp_recalculate_bridge_id() There is a regression in 2.6.15. 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. This will cause the wrong bridge id to be chosen which violates 802.1d Spanning Tree Protocol, and may create forwarding loops. Signed-off-by: Stephen Hemminger Signed-off-by: Chris Wright Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/bridge/br_stp_if.c b/net/bridge/br_stp_if.c index ac09b6a23523..491f49d72750 100644 --- a/net/bridge/br_stp_if.c +++ b/net/bridge/br_stp_if.c @@ -158,7 +158,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; }