Lines Matching defs:seq_out
515 uint32_t seq_out, uint16_t th_flags, int32_t err, uint64_t ts,
8292 uint32_t seq_out, uint16_t th_flags, int32_t err, uint64_t cts,
8345 * or FIN if seq_out is adding more on and a FIN is present
8348 if ((th_flags & TH_SYN) && (seq_out == tp->iss))
8353 if (SEQ_LEQ((seq_out + len), snd_una)) {
8357 if (SEQ_LT(seq_out, snd_una)) {
8361 end = seq_out + len;
8362 seq_out = snd_una;
8363 if (SEQ_GEQ(end, seq_out))
8364 len = end - seq_out;
8376 if (seq_out == snd_max) {
8378 rack_chk_req_and_hybrid_on_out(rack, seq_out, len, cts);
8403 rsm->r_start = seq_out;
8495 if (hintrsm && (hintrsm->r_start == seq_out)) {
8502 if ((rsm) && (rsm->r_start == seq_out)) {
8503 seq_out = rack_update_entry(tp, rack, rsm, cts, &len, add_flag, segsiz);
8512 rsm = tqhash_find(rack->r_ctl.tqh, seq_out);
8514 if (rsm->r_start == seq_out) {
8515 seq_out = rack_update_entry(tp, rack, rsm, cts, &len, add_flag, segsiz);
8522 if (SEQ_GEQ(seq_out, rsm->r_start) && SEQ_LT(seq_out, rsm->r_end)) {
8537 rack_clone_rsm(rack, nrsm, rsm, seq_out);
8552 seq_out = rack_update_entry(tp, rack, nrsm, cts, &len, add_flag, segsiz);
8563 if (seq_out == tp->snd_max) {
8565 } else if (SEQ_LT(seq_out, tp->snd_max)) {
8567 printf("seq_out:%u len:%d snd_una:%u snd_max:%u -- but rsm not found?\n",
8568 seq_out, len, tp->snd_una, tp->snd_max);
8575 panic("seq_out not found rack:%p tp:%p",
8584 panic("seq_out:%u(%d) is beyond snd_max:%u tp:%p",
8585 seq_out, len, tp->snd_max, tp);