From: chas w. - C. <ch...@cm...> - 2011-08-01 15:05:48
|
hopefully this could be included for the next kernel release. From: chas williams - CONTRACTOR <ch...@cm...> commit 8b5e1c9db2bcd2d13c2db08e6c6dbe66882fa186 Author: chas williams - CONTRACTOR <ch...@cm...> Date: Mon Aug 1 07:55:07 2011 -0400 atm: br2864: sent packets truncated in VC routed mode Reported-by: Pascal Hambourg <pa...@pl...> Signed-off-by: Chas Williams <ch...@cm...> diff --git a/net/atm/br2684.c b/net/atm/br2684.c index 2252c20..52cfd0c 100644 --- a/net/atm/br2684.c +++ b/net/atm/br2684.c @@ -242,8 +242,6 @@ static int br2684_xmit_vcc(struct sk_buff *skb, struct net_device *dev, if (brdev->payload == p_bridged) { skb_push(skb, 2); memset(skb->data, 0, 2); - } else { /* p_routed */ - skb_pull(skb, ETH_HLEN); } } skb_debug(skb); |