aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/ip6_output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c
index f1dfcc319717..bd25825c0ccd 100644
--- a/net/ipv6/ip6_output.c
+++ b/net/ipv6/ip6_output.c
@@ -1206,9 +1206,9 @@ alloc_new_skb:
1206 * Find where to start putting bytes 1206 * Find where to start putting bytes
1207 */ 1207 */
1208 data = skb_put(skb, fraglen); 1208 data = skb_put(skb, fraglen);
1209 skb->nh.raw = data + exthdrlen; 1209 skb_set_network_header(skb, exthdrlen);
1210 data += fragheaderlen; 1210 data += fragheaderlen;
1211 skb->h.raw = data + exthdrlen; 1211 skb->h.raw = skb->nh.raw + fragheaderlen;
1212 1212
1213 if (fraggap) { 1213 if (fraggap) {
1214 skb->csum = skb_copy_and_csum_bits( 1214 skb->csum = skb_copy_and_csum_bits(