From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick McHardy Subject: Re: [XFRM]: Fix protocol field value for outgoing IPv6 GSO packets Date: Mon, 31 Jul 2006 06:06:37 +0200 Message-ID: <44CD81CD.3060503@trash.net> References: <44C56136.50600@trash.net> <20060725001326.GA18972@gondor.apana.org.au> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------000505060408070205030208" Cc: Herbert Xu , Kernel Netdev Mailing List Return-path: Received: from stinky.trash.net ([213.144.137.162]:22666 "EHLO stinky.trash.net") by vger.kernel.org with ESMTP id S1751435AbWGaEGj (ORCPT ); Mon, 31 Jul 2006 00:06:39 -0400 To: "David S. Miller" In-Reply-To: <20060725001326.GA18972@gondor.apana.org.au> Sender: netdev-owner@vger.kernel.org List-Id: netdev.vger.kernel.org This is a multi-part message in MIME format. --------------000505060408070205030208 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Hi Dave, Herbert Xu wrote: > On Tue, Jul 25, 2006 at 02:09:26AM +0200, Patrick McHardy wrote: > >>[XFRM]: Fix protocol field value for outgoing IPv6 GSO packets >> >>Signed-off-by: Patrick McHardy > > Acked-by: Herbert Xu I believe you missed this one. Attached again for your convenience. --------------000505060408070205030208 Content-Type: text/plain; name="x" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="x" [XFRM]: Fix protocol field value for outgoing IPv6 GSO packets Signed-off-by: Patrick McHardy --- commit 8035f60a607630459e4440dbbc5a20f3cfbf97ac tree f1a7061cfd1f923b3991ee8f449cffce86870a3e parent 440848a8e33fc1927bab45bd73f6c8e042ea7abd author Patrick McHardy Tue, 25 Jul 2006 02:02:00 +0200 committer Patrick McHardy Tue, 25 Jul 2006 02:02:00 +0200 net/ipv6/xfrm6_output.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/ipv6/xfrm6_output.c b/net/ipv6/xfrm6_output.c index 0eea60e..c8c8b44 100644 --- a/net/ipv6/xfrm6_output.c +++ b/net/ipv6/xfrm6_output.c @@ -125,7 +125,7 @@ static int xfrm6_output_finish(struct sk if (!skb_is_gso(skb)) return xfrm6_output_finish2(skb); - skb->protocol = htons(ETH_P_IP); + skb->protocol = htons(ETH_P_IPV6); segs = skb_gso_segment(skb, 0); kfree_skb(skb); if (unlikely(IS_ERR(segs))) --------------000505060408070205030208--