• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/netinet/tcp_stacks/

Lines Matching defs:thresh

497     uint32_t thresh, uint32_t to);
571 uint32_t thresh, exp, to, srtt, time_since_sent, tstmp_touse;
643 thresh = bbr_calc_thresh_rack(bbr, srtt, cts, rsm);
645 exp = rsm->r_tim_lastsent[idx] + thresh;
682 thresh = bbr_calc_thresh_tlp(tp, bbr, rsm, srtt, cts);
683 if (thresh > time_since_sent)
684 to = thresh - time_since_sent;
716 bbr_log_timer_var(bbr, 1, cts, time_since_sent, srtt, thresh, to);
1684 "Extra RACK time (in useconds) besides reordering thresh");
2449 uint32_t thresh, uint32_t to)
2458 log.u_bbr.flex4 = thresh;
2522 bbr_log_thresh_choice(struct tcp_bbr *bbr, uint32_t cts, uint32_t thresh, uint32_t lro, uint32_t srtt, struct bbr_sendmap *rsm, uint8_t frm)
2528 log.u_bbr.flex1 = thresh;
3241 * if its under 10% (or some thresh) reset all otherwise
4109 uint32_t thresh, t_rxtcur;
4140 thresh = srtt + bbr->r_ctl.rc_pkt_delay;
4144 thresh += (srtt >> bbr->r_ctl.rc_reorder_shift);
4146 thresh += (srtt >> 2);
4148 thresh += 1000;
4155 if (thresh > t_rxtcur) {
4156 thresh = t_rxtcur;
4159 if (thresh > (((uint32_t)bbr->rc_max_rto_sec) * USECS_IN_SECOND)) {
4160 thresh = (((uint32_t)bbr->rc_max_rto_sec) * USECS_IN_SECOND);
4162 bbr_log_thresh_choice(bbr, cts, thresh, lro, srtt, rsm, BBR_TO_FRM_RACK);
4163 return (thresh);
4176 uint32_t thresh, len, maxseg, t_rxtcur;
4182 thresh = srtt + (srtt / bbr->rc_tlp_threshold);
4184 thresh = (srtt * 2);
4193 * Two packets outstanding, thresh should be (2*srtt) +
4205 thresh += inter_gap;
4213 if (alt_thresh > thresh)
4214 thresh = alt_thresh;
4222 bbr_log_thresh_choice(bbr, cts, thresh, t_rxtcur, srtt, rsm, BBR_TO_FRM_TLP);
4224 if (thresh > t_rxtcur) {
4225 thresh = t_rxtcur;
4228 if (thresh > (((uint32_t)bbr->rc_max_rto_sec) * USECS_IN_SECOND)) {
4229 thresh = (((uint32_t)bbr->rc_max_rto_sec) * USECS_IN_SECOND);
4232 if (thresh < bbr_tlp_min) {
4233 thresh = bbr_tlp_min;
4235 return (thresh);
4292 uint32_t thresh;
4294 thresh = bbr_calc_thresh_rack(bbr, bbr_get_rtt(bbr, BBR_RTT_RACK),
4296 if ((cts - rsm->r_tim_lastsent[(rsm->r_rtr_cnt - 1)]) >= thresh) {