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

/freebsd-10.3-release/sys/netinet/khelp/
H A Dh_ertt.c137 marked_packet_rtt(struct txseginfo *txsi, struct ertt *e_t, struct tcpcb *tp, argument
154 e_t->markedpkt_rtt = tcp_ts_getticks() -
156 e_t->bytes_tx_in_marked_rtt = e_t->bytes_tx_in_rtt +
159 e_t->markedpkt_rtt = tcp_ts_getticks() -
161 e_t->bytes_tx_in_marked_rtt = e_t->bytes_tx_in_rtt -
164 e_t->marked_snd_cwnd = tp->snd_cwnd;
170 e_t->flags &= ~ERTT_MEASUREMENT_IN_PROGRESS;
176 e_t
198 struct ertt *e_t; local
432 struct ertt *e_t; local
514 struct ertt *e_t; local
534 struct ertt *e_t; local
[all...]
/freebsd-10.3-release/sys/netinet/cc/
H A Dcc_hd.c135 struct ertt *e_t; local
139 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id);
141 if (e_t->rtt && e_t->minrtt && V_hd_qthresh > 0) {
142 qdly = e_t->rtt - e_t->minrtt;
148 e_t->maxrtt - e_t->minrtt)) {
H A Dcc_vegas.c129 struct ertt *e_t; local
133 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id);
136 if (e_t->flags & ERTT_NEW_MEASUREMENT) { /* Once per RTT. */
137 if (e_t->minrtt && e_t->markedpkt_rtt) {
138 expected_tx_rate = e_t->marked_snd_cwnd / e_t->minrtt;
139 actual_tx_rate = e_t->bytes_tx_in_marked_rtt /
140 e_t->markedpkt_rtt;
142 e_t
[all...]
H A Dcc_chd.c239 struct ertt *e_t; local
242 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id);
244 new_measurement = e_t->flags & ERTT_NEW_MEASUREMENT;
247 chd_data->maxrtt_in_rtt = imax(e_t->rtt, chd_data->maxrtt_in_rtt);
254 rtt = V_chd_use_max ? chd_data->maxrtt_in_rtt : e_t->rtt;
257 if (rtt && e_t->minrtt && !IN_RECOVERY(CCV(ccv, t_flags))) {
258 qdly = rtt - e_t->minrtt;
265 e_t->maxrtt - e_t->minrtt, chd_data);
270 e_t
331 struct ertt *e_t; local
[all...]
H A Dcc_cdg.c556 struct ertt *e_t; local
561 e_t = (struct ertt *)khelp_get_osd(CCV(ccv, osd), ertt_id);
562 new_measurement = e_t->flags & ERTT_NEW_MEASUREMENT;
564 cdg_data->maxrtt_in_rtt = imax(e_t->rtt, cdg_data->maxrtt_in_rtt);
565 cdg_data->minrtt_in_rtt = imin(e_t->rtt, cdg_data->minrtt_in_rtt);
618 e_t->flags &= ~ERTT_NEW_MEASUREMENT;

Completed in 111 milliseconds