diff options
Diffstat (limited to 'net/ipv4/ip_output.c')
-rw-r--r-- | net/ipv4/ip_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c index 11a6ac756f8c..02988fb262d6 100644 --- a/net/ipv4/ip_output.c +++ b/net/ipv4/ip_output.c | |||
@@ -1187,7 +1187,7 @@ int ip_push_pending_frames(struct sock *sk) | |||
1187 | if (skb->data < skb_network_header(skb)) | 1187 | if (skb->data < skb_network_header(skb)) |
1188 | __skb_pull(skb, skb_network_offset(skb)); | 1188 | __skb_pull(skb, skb_network_offset(skb)); |
1189 | while ((tmp_skb = __skb_dequeue(&sk->sk_write_queue)) != NULL) { | 1189 | while ((tmp_skb = __skb_dequeue(&sk->sk_write_queue)) != NULL) { |
1190 | __skb_pull(tmp_skb, skb->h.raw - skb->nh.raw); | 1190 | __skb_pull(tmp_skb, skb_network_header_len(skb)); |
1191 | *tail_skb = tmp_skb; | 1191 | *tail_skb = tmp_skb; |
1192 | tail_skb = &(tmp_skb->next); | 1192 | tail_skb = &(tmp_skb->next); |
1193 | skb->len += tmp_skb->len; | 1193 | skb->len += tmp_skb->len; |