aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/ipv4/tcp_input.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index 7c1a92ffa083..4268cd13ff9a 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -1160,7 +1160,8 @@ tcp_sacktag_write_queue(struct sock *sk, struct sk_buff *ack_skb, u32 prior_snd_
1160 int first_sack_index; 1160 int first_sack_index;
1161 1161
1162 if (!tp->sacked_out) { 1162 if (!tp->sacked_out) {
1163 tp->fackets_out = 0; 1163 if (WARN_ON(tp->fackets_out))
1164 tp->fackets_out = 0;
1164 tp->highest_sack = tp->snd_una; 1165 tp->highest_sack = tp->snd_una;
1165 } 1166 }
1166 prior_fackets = tp->fackets_out; 1167 prior_fackets = tp->fackets_out;