summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_output.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2007-05-18 19:56:24 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2007-05-18 19:56:24 +0000
commit0ba5d2eedb83e6d33abd11124045fc7f4c986b15 (patch)
treef116f7c9da8690258be8a3fac9390c56e0da3a61 /sys/netinet/tcp_output.c
parent5d0dd109f4f81ddd90164d54c11230c5a319a509 (diff)
Notes
Diffstat (limited to 'sys/netinet/tcp_output.c')
-rw-r--r--sys/netinet/tcp_output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c
index ae59d556e3c3..acd99d00c440 100644
--- a/sys/netinet/tcp_output.c
+++ b/sys/netinet/tcp_output.c
@@ -749,7 +749,7 @@ send:
if ((tp->t_flags & TF_FORCEDATA) && len == 1)
tcpstat.tcps_sndprobe++;
- else if (SEQ_LT(tp->snd_nxt, tp->snd_max)) {
+ else if (SEQ_LT(tp->snd_nxt, tp->snd_max) || sack_rxmit) {
tcpstat.tcps_sndrexmitpack++;
tcpstat.tcps_sndrexmitbyte += len;
} else {