Honor the CE bit even when the CWR bit is set.
PR: 145600 Submitted by: Richard Scheffenegger <rs at netapp.com> MFC after: 1 week
This commit is contained in:
parent
e259b9c75e
commit
9c251892c0
@ -1134,6 +1134,8 @@ tcp_do_segment(struct mbuf *m, struct tcphdr *th, struct socket *so,
|
||||
* TCP ECN processing.
|
||||
*/
|
||||
if (tp->t_flags & TF_ECN_PERMIT) {
|
||||
if (thflags & TH_CWR)
|
||||
tp->t_flags &= ~TF_ECN_SND_ECE;
|
||||
switch (iptos & IPTOS_ECN_MASK) {
|
||||
case IPTOS_ECN_CE:
|
||||
tp->t_flags |= TF_ECN_SND_ECE;
|
||||
@ -1146,10 +1148,6 @@ tcp_do_segment(struct mbuf *m, struct tcphdr *th, struct socket *so,
|
||||
TCPSTAT_INC(tcps_ecn_ect1);
|
||||
break;
|
||||
}
|
||||
|
||||
if (thflags & TH_CWR)
|
||||
tp->t_flags &= ~TF_ECN_SND_ECE;
|
||||
|
||||
/*
|
||||
* Congestion experienced.
|
||||
* Ignore if we are already trying to recover.
|
||||
|
Loading…
Reference in New Issue
Block a user