Lines Matching refs:t_flags
286 tp->t_flags |= TF_ACKNOW; in tcp_timer_delack()
587 tp->t_flags |= TF_FORCEDATA; in tcp_timer_persist()
591 tp->t_flags &= ~TF_FORCEDATA; in tcp_timer_persist()
677 if (IN_FASTRECOVERY(tp->t_flags)) in tcp_timer_rexmt()
678 tp->t_flags |= TF_WASFRECOVERY; in tcp_timer_rexmt()
680 tp->t_flags &= ~TF_WASFRECOVERY; in tcp_timer_rexmt()
681 if (IN_CONGRECOVERY(tp->t_flags)) in tcp_timer_rexmt()
682 tp->t_flags |= TF_WASCRECOVERY; in tcp_timer_rexmt()
684 tp->t_flags &= ~TF_WASCRECOVERY; in tcp_timer_rexmt()
685 if ((tp->t_flags & TF_RCVD_TSTMP) == 0) in tcp_timer_rexmt()
691 tp->t_flags |= TF_PREVVALID; in tcp_timer_rexmt()
693 tp->t_flags &= ~TF_PREVVALID; in tcp_timer_rexmt()
847 tp->t_flags &= ~(TF_REQ_SCALE|TF_REQ_TSTMP|TF_SACK_PERMIT); in tcp_timer_rexmt()
865 tp->t_flags |= TF_ACKNOW; in tcp_timer_rexmt()
895 if (tp->t_flags & TF_TOE) in tcp_timer_activate()
979 uint32_t t_flags; in tcp_timer_suspend() local
983 t_flags = TT_DELACK_SUS; in tcp_timer_suspend()
987 t_flags = TT_REXMT_SUS; in tcp_timer_suspend()
991 t_flags = TT_PERSIST_SUS; in tcp_timer_suspend()
995 t_flags = TT_KEEP_SUS; in tcp_timer_suspend()
999 t_flags = TT_2MSL_SUS; in tcp_timer_suspend()
1005 tp->t_timers->tt_flags |= t_flags; in tcp_timer_suspend()
1016 if (tp->t_flags & TF_DELACK) { in tcp_timers_unsuspend()
1018 tp->t_flags &= ~TF_DELACK; in tcp_timers_unsuspend()