Commit 61eb55f4 authored by Ilpo Järvinen's avatar Ilpo Järvinen Committed by David S. Miller

tcp: Reorganize skb tagbit checks

Signed-off-by: default avatarIlpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 34638570
......@@ -2032,6 +2032,7 @@ void tcp_xmit_retransmit_queue(struct sock *sk)
const struct inet_connection_sock *icsk = inet_csk(sk);
struct tcp_sock *tp = tcp_sk(sk);
struct sk_buff *skb;
int mib_idx;
if (tp->retransmit_skb_hint)
skb = tp->retransmit_skb_hint;
......@@ -2059,10 +2060,11 @@ void tcp_xmit_retransmit_queue(struct sock *sk)
return;
if (!before(TCP_SKB_CB(skb)->seq, tp->retransmit_high))
break;
if (sacked & (TCPCB_SACKED_ACKED|TCPCB_SACKED_RETRANS))
continue;
if (sacked & TCPCB_LOST) {
if (!(sacked & (TCPCB_SACKED_ACKED|TCPCB_SACKED_RETRANS))) {
int mib_idx;
if (!(sacked & TCPCB_LOST))
continue;
if (tcp_retransmit_skb(sk, skb)) {
tp->retransmit_skb_hint = NULL;
......@@ -2080,8 +2082,6 @@ void tcp_xmit_retransmit_queue(struct sock *sk)
TCP_RTO_MAX);
}
}
}
}
/* OK, demanded retransmission is finished. */
if (!tcp_can_forward_retransmit(sk))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment