Lines Matching refs:t_flags
292 tp->t_flags |= TF_ACKNOW; in tcp_timer_delack()
593 tp->t_flags |= TF_FORCEDATA; in tcp_timer_persist()
597 tp->t_flags &= ~TF_FORCEDATA; in tcp_timer_persist()
683 if (IN_FASTRECOVERY(tp->t_flags)) in tcp_timer_rexmt()
684 tp->t_flags |= TF_WASFRECOVERY; in tcp_timer_rexmt()
686 tp->t_flags &= ~TF_WASFRECOVERY; in tcp_timer_rexmt()
687 if (IN_CONGRECOVERY(tp->t_flags)) in tcp_timer_rexmt()
688 tp->t_flags |= TF_WASCRECOVERY; in tcp_timer_rexmt()
690 tp->t_flags &= ~TF_WASCRECOVERY; in tcp_timer_rexmt()
691 if ((tp->t_flags & TF_RCVD_TSTMP) == 0) in tcp_timer_rexmt()
697 tp->t_flags |= TF_PREVVALID; in tcp_timer_rexmt()
699 tp->t_flags &= ~TF_PREVVALID; in tcp_timer_rexmt()
853 tp->t_flags &= ~(TF_REQ_SCALE|TF_REQ_TSTMP|TF_SACK_PERMIT); in tcp_timer_rexmt()
871 tp->t_flags |= TF_ACKNOW; in tcp_timer_rexmt()
901 if (tp->t_flags & TF_TOE) in tcp_timer_activate()
985 uint32_t t_flags; in tcp_timer_suspend() local
989 t_flags = TT_DELACK_SUS; in tcp_timer_suspend()
993 t_flags = TT_REXMT_SUS; in tcp_timer_suspend()
997 t_flags = TT_PERSIST_SUS; in tcp_timer_suspend()
1001 t_flags = TT_KEEP_SUS; in tcp_timer_suspend()
1005 t_flags = TT_2MSL_SUS; in tcp_timer_suspend()
1011 tp->t_timers->tt_flags |= t_flags; in tcp_timer_suspend()
1022 if (tp->t_flags & TF_DELACK) { in tcp_timers_unsuspend()
1024 tp->t_flags &= ~TF_DELACK; in tcp_timers_unsuspend()