]> err.no Git - linux-2.6/blobdiff - net/bridge/br_input.c
Pull mem-attribute into release branch
[linux-2.6] / net / bridge / br_input.c
index 8a55276320921b1e2f82d3c3862854d69c9d3df4..420bbb9955e93fa2480393292e7b2705d1cc7a28 100644 (file)
@@ -132,10 +132,18 @@ struct sk_buff *br_handle_frame(struct net_bridge_port *p, struct sk_buff *skb)
                goto drop;
 
        if (unlikely(is_link_local(dest))) {
-               skb->pkt_type = PACKET_HOST;
-
-               return (NF_HOOK(PF_BRIDGE, NF_BR_LOCAL_IN, skb, skb->dev,
-                               NULL, br_handle_local_finish) == 0) ? skb : NULL;
+               /* Pause frames shouldn't be passed up by driver anyway */
+               if (skb->protocol == htons(ETH_P_PAUSE))
+                       goto drop;
+
+               /* Process STP BPDU's through normal netif_receive_skb() path */
+               if (p->br->stp_enabled != BR_NO_STP) {
+                       if (NF_HOOK(PF_BRIDGE, NF_BR_LOCAL_IN, skb, skb->dev,
+                                   NULL, br_handle_local_finish))
+                               return NULL;
+                       else
+                               return skb;
+               }
        }
 
        switch (p->state) {