summaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp_input.c
diff options
context:
space:
mode:
authorIlpo Järvinen2007-11-01 08:10:18 +0100
committerDavid S. Miller2007-11-01 08:10:18 +0100
commit261ab365fadd53ddc1b292b1663800e11fbf3e71 (patch)
tree18224fa6f7c36155837e7afcf958b10eb3f05273 /net/ipv4/tcp_input.c
parent[TCP]: Process DSACKs that reside within a SACK block (diff)
downloadkernel-qcow2-linux-261ab365fadd53ddc1b292b1663800e11fbf3e71.tar.gz
kernel-qcow2-linux-261ab365fadd53ddc1b292b1663800e11fbf3e71.tar.xz
kernel-qcow2-linux-261ab365fadd53ddc1b292b1663800e11fbf3e71.zip
[TCP]: Another TAGBITS -> SACKED_ACKED|LOST conversion
Similar to commit 3eec0047d9bdd, point of this is to avoid skipping R-bit skbs. Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_input.c')
-rw-r--r--net/ipv4/tcp_input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index 4d72781a49be..ca9590f4f520 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -2078,7 +2078,7 @@ static void tcp_update_scoreboard(struct sock *sk)
if (!tcp_skb_timedout(sk, skb))
break;
- if (!(TCP_SKB_CB(skb)->sacked&TCPCB_TAGBITS)) {
+ if (!(TCP_SKB_CB(skb)->sacked & (TCPCB_SACKED_ACKED|TCPCB_LOST))) {
TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
tp->lost_out += tcp_skb_pcount(skb);
tcp_verify_retransmit_hint(tp, skb);