Lines Matching defs:high_seq

14163 rack_log_hystart_event(struct tcp_rack *rack, uint32_t high_seq, uint8_t mod)
14180 log.u_bbr.flex3 = high_seq;
15365 rack_log_input_packet(struct tcpcb *tp, struct tcp_rack *rack, struct tcp_ackent *ae, int ackval, uint32_t high_seq)
15488 * snd_una to high_seq, but since compressed acks are
15495 if (tp->snd_una != high_seq) {
15497 tp->snd_una = high_seq;
15567 rack_new_round_starts(struct tcpcb *tp, struct tcp_rack *rack, uint32_t high_seq)
15610 rack_new_round_setup(struct tcpcb *tp, struct tcp_rack *rack, uint32_t high_seq)
15618 rack_log_hystart_event(rack, high_seq, 21);
15719 uint32_t tiwin, ms_cts, cts, acked, acked_amount, high_seq, win_seq, the_win, win_upd_ack;
15770 high_seq = tp->snd_una;
15803 if (SEQ_LT(ae->ack, high_seq)) {
15806 } else if (SEQ_GT(ae->ack, high_seq)) {
15817 rack_log_input_packet(tp, rack, ae, ae->ack_val_set, high_seq);
15943 tp->tcp_cnt_counters[CNT_OF_ACKS_IN] += (((ae->ack - high_seq) + segsiz - 1) / segsiz);
15946 high_seq = ae->ack;
15959 rack_req_check_for_comp(rack, high_seq);
15988 if (SEQ_GT(tp->snd_max, high_seq) && (tp->snd_wnd < (tp->snd_max - high_seq))) {
15990 rack_collapsed_window(rack, (tp->snd_max - high_seq), high_seq, __LINE__);
15994 (SEQ_GT(high_seq, rack->r_ctl.high_collapse_point)))
15996 acked_amount = acked = (high_seq - tp->snd_una);
16009 if (SEQ_GEQ(high_seq, rack->r_ctl.roundends) &&
16016 rack_new_round_setup(tp, rack, high_seq);
16032 acked_amount = acked = (high_seq - tp->snd_una);
16038 rack_update_prr(tp, rack, acked_amount, high_seq);
16040 if (SEQ_LT(high_seq, tp->snd_recover) &&
16041 (SEQ_LT(high_seq, tp->snd_max))) {
16044 rack_post_recovery(tp, high_seq);
16048 SEQ_GEQ(high_seq, tp->snd_recover)) {
16074 tp->snd_una = high_seq;
16082 rack_cong_signal(tp, CC_RTO_ERR, high_seq, __LINE__);
16101 rack_ack_received(tp, rack, high_seq, nsegs, CC_ACK, post_recovery);
16108 tp->snd_una = high_seq;
16137 tp->snd_wl2 = high_seq;