Lines Matching defs:seq_out
5872 uint32_t seq_out, uint16_t th_flags, int32_t err, uint32_t cts,
5917 * or FIN if seq_out is adding more on and a FIN is present
5920 if ((th_flags & TH_SYN) && (tp->iss == seq_out))
5925 if (SEQ_LEQ((seq_out + len), snd_una)) {
5929 if (SEQ_LT(seq_out, snd_una)) {
5933 end = seq_out + len;
5934 seq_out = snd_una;
5935 len = end - seq_out;
5944 if (seq_out == snd_max) {
5958 rsm->r_start = seq_out;
6002 if (hintrsm && (hintrsm->r_start == seq_out)) {
6012 if ((rsm) && (rsm->r_start == seq_out)) {
6017 seq_out = bbr_update_entry(tp, bbr, rsm, cts, &len, pacing_time);
6026 if (rsm->r_start == seq_out) {
6027 seq_out = bbr_update_entry(tp, bbr, rsm, cts, &len, pacing_time);
6035 if (SEQ_GEQ(seq_out, rsm->r_start) && SEQ_LT(seq_out, rsm->r_end)) {
6050 bbr_clone_rsm(bbr, nrsm, rsm, seq_out);
6057 seq_out = bbr_update_entry(tp, bbr, nrsm, cts, &len, pacing_time);
6067 if (seq_out == tp->snd_max) {
6069 } else if (SEQ_LT(seq_out, tp->snd_max)) {
6071 printf("seq_out:%u len:%d snd_una:%u snd_max:%u -- but rsm not found?\n",
6072 seq_out, len, tp->snd_una, tp->snd_max);
6079 panic("seq_out not found rack:%p tp:%p",
6088 panic("seq_out:%u(%d) is beyond snd_max:%u tp:%p",
6089 seq_out, len, tp->snd_max, tp);