[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20141203153241.5866bb75@griffin>
Date: Wed, 3 Dec 2014 15:32:41 +0100
From: Jiri Benc <jbenc@...hat.com>
To: Pravin B Shelar <pshelar@...ira.com>
Cc: davem@...emloft.net, netdev@...r.kernel.org
Subject: Re: [PATCH net-next 2/4] vlan: Fix mac_len adjustment.
On Mon, 1 Dec 2014 14:30:38 -0800, Pravin B Shelar wrote:
> skb_reset_mac_len() sets length according to ethernet and network
> offsets, but mpls expects mac-length to be offset to mpls header (ref.
> skb_mpls_header()). Therefore rather than reset we need to subtract
> VLAN_HLEN from mac_len.
>
> Signed-off-by: Pravin B Shelar <pshelar@...ira.com>
> ---
> net/core/skbuff.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/net/core/skbuff.c b/net/core/skbuff.c
> index 92116df..c45888f 100644
> --- a/net/core/skbuff.c
> +++ b/net/core/skbuff.c
> @@ -4178,7 +4178,7 @@ static int __skb_vlan_pop(struct sk_buff *skb, u16 *vlan_tci)
> if (skb_network_offset(skb) < ETH_HLEN)
> skb_set_network_header(skb, ETH_HLEN);
>
> - skb_reset_mac_len(skb);
> + skb->mac_len -= VLAN_HLEN;
> pull:
> __skb_pull(skb, offset);
>
See my previous explanation why this patch is wrong with the current
code: http://article.gmane.org/gmane.linux.network/339457
Jiri
--
Jiri Benc
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists