From: David S. Miller Date: Wed, 6 Sep 2006 17:35:53 +0000 (+0200) Subject: [PKTGEN]: Make sure skb->{nh,h} are initialized in fill_packet_ipv6() too. X-Git-Tag: v2.6.16.29-rc1~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b385946d47de12d8531c3e2abf69e5d5bff2720;p=thirdparty%2Fkernel%2Fstable.git [PKTGEN]: Make sure skb->{nh,h} are initialized in fill_packet_ipv6() too. Mirror the bug fix from fill_packet_ipv4() Signed-off-by: David S. Miller Signed-off-by: Adrian Bunk --- diff --git a/net/core/pktgen.c b/net/core/pktgen.c index f6445303bda00..47d0c28ae3908 100644 --- a/net/core/pktgen.c +++ b/net/core/pktgen.c @@ -2179,6 +2179,8 @@ static struct sk_buff *fill_packet_ipv6(struct net_device *odev, skb->protocol = __constant_htons(ETH_P_IPV6); skb->dev = odev; skb->pkt_type = PACKET_HOST; + skb->nh.ipv6h = iph; + skb->h.uh = udph; if (pkt_dev->nfrags <= 0) pgh = (struct pktgen_hdr *)skb_put(skb, datalen);