From 8b385946d47de12d8531c3e2abf69e5d5bff2720 Mon Sep 17 00:00:00 2001 From: "David S. Miller" Date: Wed, 6 Sep 2006 19:35:53 +0200 Subject: [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 --- net/core/pktgen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/core/pktgen.c b/net/core/pktgen.c index f6445303bda..47d0c28ae39 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); -- cgit v1.2.3-18-g5258