Revert "bridge: Forward reserved group addresses if !STP"

This reverts commit 1e253c3b8a1aeed51eef6fc366812f219b97de65.

It breaks 802.3ad bonding inside of a bridge.

The commit was meant to support transport bridging, and specifically
virtual machines bridged to an ethernet interface connected to a
switch port wiht 802.1x enabled.

But this isn't the way to do it, it breaks too many other things.

Signed-off-by: David S. Miller <davem@davemloft.net>

+1 -1
+1 -1
net/bridge/br_input.c
··· 164 164 goto drop; 165 165 166 166 /* If STP is turned off, then forward */ 167 - if (p->br->stp_enabled == BR_NO_STP) 167 + if (p->br->stp_enabled == BR_NO_STP && dest[5] == 0) 168 168 goto forward; 169 169 170 170 if (NF_HOOK(NFPROTO_BRIDGE, NF_BR_LOCAL_IN, skb, skb->dev,