diff options
Diffstat (limited to 'net/ipv4/tcp.c')
| -rw-r--r-- | net/ipv4/tcp.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index f28acf11fc67..35bcddf8a932 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c | |||
| @@ -580,10 +580,6 @@ ssize_t tcp_splice_read(struct socket *sock, loff_t *ppos, | |||
| 580 | else if (!ret) { | 580 | else if (!ret) { |
| 581 | if (spliced) | 581 | if (spliced) |
| 582 | break; | 582 | break; |
| 583 | if (flags & SPLICE_F_NONBLOCK) { | ||
| 584 | ret = -EAGAIN; | ||
| 585 | break; | ||
| 586 | } | ||
| 587 | if (sock_flag(sk, SOCK_DONE)) | 583 | if (sock_flag(sk, SOCK_DONE)) |
| 588 | break; | 584 | break; |
| 589 | if (sk->sk_err) { | 585 | if (sk->sk_err) { |
| @@ -2519,9 +2515,7 @@ found: | |||
| 2519 | flush |= memcmp(th + 1, th2 + 1, thlen - sizeof(*th)); | 2515 | flush |= memcmp(th + 1, th2 + 1, thlen - sizeof(*th)); |
| 2520 | 2516 | ||
| 2521 | total = p->len; | 2517 | total = p->len; |
| 2522 | mss = total; | 2518 | mss = skb_shinfo(p)->gso_size; |
| 2523 | if (skb_shinfo(p)->frag_list) | ||
| 2524 | mss = skb_shinfo(p)->frag_list->len; | ||
| 2525 | 2519 | ||
| 2526 | flush |= skb->len > mss || skb->len <= 0; | 2520 | flush |= skb->len > mss || skb->len <= 0; |
| 2527 | flush |= ntohl(th2->seq) + total != ntohl(th->seq); | 2521 | flush |= ntohl(th2->seq) + total != ntohl(th->seq); |
| @@ -2557,7 +2551,6 @@ int tcp_gro_complete(struct sk_buff *skb) | |||
| 2557 | skb->csum_offset = offsetof(struct tcphdr, check); | 2551 | skb->csum_offset = offsetof(struct tcphdr, check); |
| 2558 | skb->ip_summed = CHECKSUM_PARTIAL; | 2552 | skb->ip_summed = CHECKSUM_PARTIAL; |
| 2559 | 2553 | ||
| 2560 | skb_shinfo(skb)->gso_size = skb_shinfo(skb)->frag_list->len; | ||
| 2561 | skb_shinfo(skb)->gso_segs = NAPI_GRO_CB(skb)->count; | 2554 | skb_shinfo(skb)->gso_segs = NAPI_GRO_CB(skb)->count; |
| 2562 | 2555 | ||
| 2563 | if (th->cwr) | 2556 | if (th->cwr) |
