aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/ip_output.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/ip_output.c')
-rw-r--r--net/ipv4/ip_output.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c
index d329718a8e8c..dde51fb72cda 100644
--- a/net/ipv4/ip_output.c
+++ b/net/ipv4/ip_output.c
@@ -1126,7 +1126,8 @@ ssize_t ip_append_page(struct sock *sk, struct page *page,
1126 * Find where to start putting bytes. 1126 * Find where to start putting bytes.
1127 */ 1127 */
1128 data = skb_put(skb, fragheaderlen + fraggap); 1128 data = skb_put(skb, fragheaderlen + fraggap);
1129 skb->nh.iph = iph = (struct iphdr *)data; 1129 skb_reset_network_header(skb);
1130 iph = skb->nh.iph;
1130 data += fragheaderlen; 1131 data += fragheaderlen;
1131 skb->h.raw = data; 1132 skb->h.raw = data;
1132 1133