Lines Matching refs:t_flags
229 if (tp->t_flags & TF_TOE) in tcp_default_output()
238 if ((tp->t_flags & TF_FASTOPEN) && in tcp_default_output()
251 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una); in tcp_default_output()
255 tp->t_flags &= ~TF_LASTIDLE; in tcp_default_output()
257 if (tp->t_flags & TF_MORETOCOME) { in tcp_default_output()
258 tp->t_flags |= TF_LASTIDLE; in tcp_default_output()
269 if ((tp->t_flags & TF_SACK_PERMIT) && in tcp_default_output()
271 !IN_FASTRECOVERY(tp->t_flags)) { in tcp_default_output()
293 if ((tp->t_flags & TF_SACK_PERMIT) && in tcp_default_output()
294 (IN_FASTRECOVERY(tp->t_flags) || in tcp_default_output()
299 if (IN_FASTRECOVERY(tp->t_flags)) { in tcp_default_output()
361 if (tp->t_flags & TF_NEEDFIN) in tcp_default_output()
363 if (tp->t_flags & TF_NEEDSYN) in tcp_default_output()
373 if (tp->t_flags & TF_FORCEDATA) { in tcp_default_output()
442 if ((tp->t_flags & TF_FASTOPEN) && in tcp_default_output()
453 if ((flags & TH_SYN) && (tp->t_flags & TF_NOOPT)) { in tcp_default_output()
470 if ((tp->t_flags & TF_FASTOPEN) && in tcp_default_output()
478 if ((flags & TH_SYN) && !(tp->t_flags & TF_FASTOPEN)) { in tcp_default_output()
561 if ((tp->t_flags & TF_TSO) && V_tcp_do_tso && len > tp->t_maxseg && in tcp_default_output()
563 ((tp->t_flags & TF_SIGNATURE) == 0) && in tcp_default_output()
601 if ((((tp->t_flags & TF_SIGNATURE) ? in tcp_default_output()
603 ((tp->t_flags & TF_RCVD_TSTMP) ? in tcp_default_output()
614 if (!(tp->t_flags & TF_MORETOCOME) && /* normal case */ in tcp_default_output()
615 (idle || (tp->t_flags & TF_NODELAY)) && in tcp_default_output()
617 (tp->t_flags & TF_NOPUSH) == 0) { in tcp_default_output()
620 if (tp->t_flags & TF_FORCEDATA) /* typ. timeout case */ in tcp_default_output()
658 if (recwin > 0 && !(tp->t_flags & TF_NEEDSYN) && in tcp_default_output()
659 !(tp->t_flags & TF_DELACK) && in tcp_default_output()
702 if (tp->t_flags & TF_ACKNOW) in tcp_default_output()
705 ((flags & TH_SYN) && (tp->t_flags & TF_NEEDSYN) == 0)) in tcp_default_output()
714 ((tp->t_flags & TF_SENTFIN) == 0 || tp->snd_nxt == tp->snd_una)) in tcp_default_output()
721 if ((tp->t_flags & TF_SACK_PERMIT) && in tcp_default_output()
798 if ((tp->t_flags & TF_NOOPT) == 0) { in tcp_default_output()
813 if ((tp->t_flags & TF_FASTOPEN) && in tcp_default_output()
840 if ((flags & TH_SYN) && (tp->t_flags & TF_REQ_SCALE)) { in tcp_default_output()
845 if ((tp->t_flags & TF_RCVD_TSTMP) || in tcp_default_output()
846 ((flags & TH_SYN) && (tp->t_flags & TF_REQ_TSTMP))) { in tcp_default_output()
861 if (tp->t_flags & TF_SACK_PERMIT) { in tcp_default_output()
877 if (tp->t_flags & TF_SIGNATURE) in tcp_default_output()
887 if ((tp->t_flags & TF_FASTOPEN) && wanted_cookie && in tcp_default_output()
974 if (tp->t_flags & TF_NEEDFIN) in tcp_default_output()
1027 if ((tp->t_flags & TF_FORCEDATA) && len == 1) { in tcp_default_output()
1131 if (tp->t_flags & TF_ACKNOW) in tcp_default_output()
1195 if (flags & TH_FIN && tp->t_flags & TF_SENTFIN && in tcp_default_output()
1255 if ((tp->t_flags & TF_LRD) && SEQ_GEQ(p->rxmit, p->end)) in tcp_default_output()
1259 if (IN_RECOVERY(tp->t_flags)) { in tcp_default_output()
1311 tp->t_flags |= TF_RXWIN0SENT; in tcp_default_output()
1313 tp->t_flags &= ~TF_RXWIN0SENT; in tcp_default_output()
1543 } else if ((tp->t_flags & TF_FORCEDATA) == 0 || in tcp_default_output()
1555 tp->t_flags |= TF_SENTFIN; in tcp_default_output()
1580 if (!(tp->t_flags & TF_GPUTINPROG) && len) { in tcp_default_output()
1581 tp->t_flags |= TF_GPUTINPROG; in tcp_default_output()
1642 tp->t_flags |= TF_SENTFIN; in tcp_default_output()
1650 (tp->t_flags & TF_SACK_PERMIT)) { in tcp_default_output()
1677 if (((tp->t_flags & TF_FORCEDATA) == 0 || in tcp_default_output()
1693 if (IN_RECOVERY(tp->t_flags)) in tcp_default_output()
1717 tp->t_flags &= ~TF_TSO; in tcp_default_output()
1747 tp->t_flags &= ~(TF_ACKNOW | TF_DELACK); in tcp_default_output()
1762 tp->t_flags &= ~TF_PREVVALID; in tcp_setpersist()