From: Joonwoo Park Date: Thu, 29 Nov 2007 11:16:41 +0000 (+1100) Subject: [VLAN]: Fix nested VLAN transmit bug X-Git-Tag: v2.6.24-rc4~8^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ab3b487db77fa98a24560f11a5a8e744b98d877;p=platform%2Fkernel%2Flinux-stable.git [VLAN]: Fix nested VLAN transmit bug Fix misbehavior of vlan_dev_hard_start_xmit() for recursive encapsulations. Signed-off-by: Joonwoo Park Signed-off-by: Herbert Xu --- diff --git a/net/8021q/vlan_dev.c b/net/8021q/vlan_dev.c index 7a36878..4f99bb8 100644 --- a/net/8021q/vlan_dev.c +++ b/net/8021q/vlan_dev.c @@ -462,7 +462,8 @@ int vlan_dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev) * OTHER THINGS LIKE FDDI/TokenRing/802.3 SNAPs... */ - if (veth->h_vlan_proto != htons(ETH_P_8021Q)) { + if (veth->h_vlan_proto != htons(ETH_P_8021Q) || + VLAN_DEV_INFO(dev)->flags & VLAN_FLAG_REORDER_HDR) { int orig_headroom = skb_headroom(skb); unsigned short veth_TCI;