diff options
| -rw-r--r-- | net/ipv4/tcp_output.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index 5dd6dd7d091e..d6e3d269e906 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c | |||
| @@ -509,7 +509,16 @@ int tcp_fragment(struct sock *sk, struct sk_buff *skb, u32 len, unsigned int mss | |||
| 509 | tp->lost_out -= diff; | 509 | tp->lost_out -= diff; |
| 510 | tp->left_out -= diff; | 510 | tp->left_out -= diff; |
| 511 | } | 511 | } |
| 512 | |||
| 512 | if (diff > 0) { | 513 | if (diff > 0) { |
| 514 | /* Adjust Reno SACK estimate. */ | ||
| 515 | if (!tp->rx_opt.sack_ok) { | ||
| 516 | tp->sacked_out -= diff; | ||
| 517 | if ((int)tp->sacked_out < 0) | ||
| 518 | tp->sacked_out = 0; | ||
| 519 | tcp_sync_left_out(tp); | ||
| 520 | } | ||
| 521 | |||
| 513 | tp->fackets_out -= diff; | 522 | tp->fackets_out -= diff; |
| 514 | if ((int)tp->fackets_out < 0) | 523 | if ((int)tp->fackets_out < 0) |
| 515 | tp->fackets_out = 0; | 524 | tp->fackets_out = 0; |
