Searched refs:e_t (Results 1 - 5 of 5) sorted by relevance

/freebsd-12-stable/sys/netinet/khelp/
H A Dh_ertt.c139 marked_packet_rtt(struct txseginfo *txsi, struct ertt *e_t, struct tcpcb *tp, argument
156 e_t->markedpkt_rtt = tcp_ts_getticks() -
158 e_t->bytes_tx_in_marked_rtt = e_t->bytes_tx_in_rtt +
161 e_t->markedpkt_rtt = tcp_ts_getticks() -
163 e_t->bytes_tx_in_marked_rtt = e_t->bytes_tx_in_rtt -
166 e_t->marked_snd_cwnd = tp->snd_cwnd;
172 e_t->flags &= ~ERTT_MEASUREMENT_IN_PROGRESS;
178 e_t
200 struct ertt *e_t; local
435 struct ertt *e_t; local
517 struct ertt *e_t; local
537 struct ertt *e_t; local
[all...]
/freebsd-12-stable/sys/netinet/cc/
H A Dcc_hd.c134 struct ertt *e_t; local
138 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id);
140 if (e_t->rtt && e_t->minrtt && V_hd_qthresh > 0) {
141 qdly = e_t->rtt - e_t->minrtt;
147 e_t->maxrtt - e_t->minrtt)) {
H A Dcc_vegas.c127 struct ertt *e_t; local
131 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id);
134 if (e_t->flags & ERTT_NEW_MEASUREMENT) { /* Once per RTT. */
135 if (e_t->minrtt && e_t->markedpkt_rtt) {
136 expected_tx_rate = e_t->marked_snd_cwnd / e_t->minrtt;
137 actual_tx_rate = e_t->bytes_tx_in_marked_rtt /
138 e_t->markedpkt_rtt;
140 e_t
[all...]
H A Dcc_chd.c238 struct ertt *e_t; local
241 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id);
243 new_measurement = e_t->flags & ERTT_NEW_MEASUREMENT;
246 chd_data->maxrtt_in_rtt = imax(e_t->rtt, chd_data->maxrtt_in_rtt);
253 rtt = V_chd_use_max ? chd_data->maxrtt_in_rtt : e_t->rtt;
256 if (rtt && e_t->minrtt && !IN_RECOVERY(CCV(ccv, t_flags))) {
257 qdly = rtt - e_t->minrtt;
264 e_t->maxrtt - e_t->minrtt, chd_data);
269 e_t
329 struct ertt *e_t; local
[all...]
H A Dcc_cdg.c570 struct ertt *e_t; local
575 e_t = (struct ertt *)khelp_get_osd(CCV(ccv, osd), ertt_id);
576 new_measurement = e_t->flags & ERTT_NEW_MEASUREMENT;
578 cdg_data->maxrtt_in_rtt = imax(e_t->rtt, cdg_data->maxrtt_in_rtt);
579 cdg_data->minrtt_in_rtt = imin(e_t->rtt, cdg_data->minrtt_in_rtt);
636 e_t->flags &= ~ERTT_NEW_MEASUREMENT;

Completed in 104 milliseconds