| /freebsd-14.2/sys/netinet/cc/ |
| H A D | cc_htcp.c | 199 htcp_record_rtt(ccv); in htcp_ack_received() 208 CCV(ccv, snd_cwnd) <= CCV(ccv, snd_ssthresh) || in htcp_ack_received() 210 htcp_recalc_beta(ccv); in htcp_ack_received() 218 CCV(ccv, snd_cwnd) <= CCV(ccv, snd_ssthresh)) in htcp_ack_received() 234 CCV(ccv, snd_cwnd) / CCV(ccv, t_maxseg)))) * in htcp_ack_received() 319 CCV(ccv, snd_cwnd) = CCV(ccv, snd_ssthresh); in htcp_cong_signal() 327 CCV(ccv, snd_ssthresh) = max(min(CCV(ccv, snd_wnd), in htcp_cong_signal() 379 pipe = CCV(ccv, snd_max) - ccv->curack; in htcp_post_recovery() 386 CCV(ccv, snd_cwnd) = max(pipe, CCV(ccv, t_maxseg)) + in htcp_post_recovery() 525 CCV(ccv, snd_ssthresh) = ((u_long)CCV(ccv, snd_cwnd) * in htcp_ssthresh_update() [all …]
|
| H A D | cc_dctcp.c | 113 dctcp_data = ccv->cc_data; in dctcp_ack_received() 129 bytes_acked = min(ccv->bytes_this_ack, CCV(ccv, t_maxseg)); in dctcp_ack_received() 162 dctcp_update_alpha(ccv); in dctcp_ack_received() 233 ccv->cc_data = dctcp_data; in dctcp_cb_init() 290 CCV(ccv, snd_cwnd) = CCV(ccv, snd_ssthresh); in dctcp_cong_signal() 296 CCV(ccv, snd_ssthresh) = max(min(CCV(ccv, snd_wnd), in dctcp_cong_signal() 300 dctcp_update_alpha(ccv); in dctcp_cong_signal() 314 dctcp_data = ccv->cc_data; in dctcp_conn_init() 332 dctcp_update_alpha(ccv); in dctcp_post_recovery() 346 dctcp_data = ccv->cc_data; in dctcp_ecnpkt_handler() [all …]
|
| H A D | cc_cubic.c | 129 tp = ccv->ccvc.tcp; in cubic_log_hystart_event() 218 if (CCV(ccv, snd_nxt) == CCV(ccv, snd_max)) in cubic_does_slow_start() 223 incr = min(ccv->bytes_this_ack, CCV(ccv, t_maxseg)); in cubic_does_slow_start() 253 if (CCV(ccv, snd_cwnd) <= CCV(ccv, snd_ssthresh) || in cubic_ack_received() 366 cubic_log_hystart_event(ccv, cubic_data, 12, CCV(ccv, snd_ssthresh)); in cubic_after_idle() 461 CCV(ccv, snd_cwnd) = CCV(ccv, snd_ssthresh); in cubic_cong_signal() 485 CCV(ccv, snd_ssthresh) = ((uint64_t)CCV(ccv, snd_cwnd) * in cubic_cong_signal() 547 pipe = CCV(ccv, snd_max) - ccv->curack; in cubic_post_recovery() 554 CCV(ccv, snd_cwnd) = max(pipe, CCV(ccv, t_maxseg)) + in cubic_post_recovery() 720 CCV(ccv, snd_ssthresh) = CCV(ccv, snd_cwnd); in cubic_newround() [all …]
|
| H A D | cc_newreno.c | 139 tp = ccv->ccvc.tcp; in newreno_log_hystart_event() 185 ccv->cc_data = ptr; in newreno_cb_init() 263 newreno_log_hystart_event(ccv, nreno, 11, CCV(ccv, snd_ssthresh)); in newreno_ack_received() 326 if (CCV(ccv, snd_nxt) == CCV(ccv, snd_max)) in newreno_ack_received() 331 incr = min(ccv->bytes_this_ack, CCV(ccv, t_maxseg)); in newreno_ack_received() 359 newreno_log_hystart_event(ccv, nreno, 12, CCV(ccv, snd_ssthresh)); in newreno_after_idle() 404 newreno_log_hystart_event(ccv, nreno, 10, CCV(ccv, snd_ssthresh)); in newreno_cong_signal() 423 newreno_log_hystart_event(ccv, nreno, 9, CCV(ccv, snd_ssthresh)); in newreno_cong_signal() 432 CCV(ccv, snd_ssthresh) = max(min(CCV(ccv, snd_wnd), in newreno_cong_signal() 536 CCV(ccv, snd_ssthresh) = CCV(ccv, snd_cwnd); in newreno_newround() [all …]
|
| H A D | cc_chd.c | 151 win = min(CCV(ccv, snd_wnd), CCV(ccv, snd_cwnd)) / CCV(ccv, t_maxseg); in chd_window_decrease() 153 CCV(ccv, snd_ssthresh) = max(win, 2) * CCV(ccv, t_maxseg); in chd_window_decrease() 197 if (CCV(ccv, snd_cwnd) <= CCV(ccv, snd_ssthresh)) { in chd_window_increase() 201 if (CCV(ccv, snd_nxt) == CCV(ccv, snd_max)) { in chd_window_increase() 229 CCV(ccv,snd_cwnd) = min(CCV(ccv, snd_cwnd) + incr, in chd_window_increase() 353 CCV(ccv, snd_cwnd) = CCV(ccv, snd_ssthresh); in chd_cong_signal() 354 CCV(ccv, snd_recover) = CCV(ccv, snd_max); in chd_cong_signal() 369 CCV(ccv, snd_cwnd) = max(CCV(ccv, snd_cwnd), in chd_cong_signal() 378 CCV(ccv, snd_ssthresh) = CCV(ccv, snd_cwnd); in chd_cong_signal() 379 CCV(ccv, snd_recover) = CCV(ccv, snd_max); in chd_cong_signal() [all …]
|
| H A D | cc_vegas.c | 135 vegas_data = ccv->cc_data; in vegas_ack_received() 153 CCV(ccv, snd_cwnd) = in vegas_ack_received() 155 CCV(ccv, t_maxseg), in vegas_ack_received() 197 ccv->cc_data = vegas_data; in vegas_cb_init() 212 vegas_data = ccv->cc_data; in vegas_cong_signal() 222 CCV(ccv, snd_cwnd) = max(2 * CCV(ccv, t_maxseg), in vegas_cong_signal() 223 CCV(ccv, snd_cwnd) - CCV(ccv, t_maxseg)); in vegas_cong_signal() 224 if (CCV(ccv, snd_cwnd) < CCV(ccv, snd_ssthresh)) in vegas_cong_signal() 226 CCV(ccv, snd_ssthresh) = CCV(ccv, snd_cwnd); in vegas_cong_signal() 236 (CCV(ccv, snd_cwnd) < CCV(ccv, snd_ssthresh)) ? 1 : 0; in vegas_cong_signal() [all …]
|
| H A D | cc.c | 409 pipe = CCV(ccv, snd_max) - ccv->curack; in newreno_cc_post_recovery() 415 CCV(ccv, snd_cwnd) = max(pipe, CCV(ccv, t_maxseg)) + in newreno_cc_post_recovery() 416 CCV(ccv, t_maxseg); in newreno_cc_post_recovery() 418 CCV(ccv, snd_cwnd) = CCV(ccv, snd_ssthresh); in newreno_cc_post_recovery() 445 CCV(ccv, snd_ssthresh) = max(CCV(ccv, snd_ssthresh), in newreno_cc_after_idle() 446 CCV(ccv, snd_cwnd)-(CCV(ccv, snd_cwnd)>>2)); in newreno_cc_after_idle() 448 CCV(ccv, snd_cwnd) = min(rw, CCV(ccv, snd_cwnd)); in newreno_cc_after_idle() 492 CCV(ccv, snd_ssthresh) = max(min(CCV(ccv, snd_wnd), in newreno_cc_cong_signal() 557 abc_val = ccv->labc; in newreno_cc_ack_received() 560 if (CCV(ccv, snd_nxt) == CCV(ccv, snd_max)) in newreno_cc_ack_received() [all …]
|
| H A D | cc_cdg.c | 322 ccv->cc_data = cdg_data; in cdg_cb_init() 345 cdg_data = ccv->cc_data; in cdg_cb_destroy() 423 if (CCV(ccv, snd_cwnd) <= CCV(ccv, snd_ssthresh)) { in cdg_window_increase() 449 CCV(ccv, snd_cwnd) = ulmin(CCV(ccv, snd_cwnd) + incr, in cdg_window_increase() 460 CCV(ccv, snd_ssthresh) = cdg_window_decrease(ccv, in cdg_cong_signal() 462 CCV(ccv, snd_cwnd) = CCV(ccv, snd_ssthresh); in cdg_cong_signal() 463 CCV(ccv, snd_recover) = CCV(ccv, snd_max); in cdg_cong_signal() 474 CCV(ccv, snd_ssthresh) = CCV(ccv, snd_cwnd); in cdg_cong_signal() 475 CCV(ccv, snd_recover) = CCV(ccv, snd_max); in cdg_cong_signal() 487 cdg_window_decrease(ccv, CCV(ccv, snd_cwnd), in cdg_cong_signal() [all …]
|
| H A D | cc.h | 169 int (*cb_init)(struct cc_var *ccv, void *ptr); 172 void (*cb_destroy)(struct cc_var *ccv); 175 void (*conn_init)(struct cc_var *ccv); 178 void (*ack_received)(struct cc_var *ccv, uint16_t type); 181 void (*cong_signal)(struct cc_var *ccv, uint32_t type); 184 void (*post_recovery)(struct cc_var *ccv); 187 void (*after_idle)(struct cc_var *ccv); 190 void (*ecnpkt_handler)(struct cc_var *ccv); 193 void (*newround)(struct cc_var *ccv, uint32_t round_cnt); 199 void (*rttsample)(struct cc_var *ccv, uint32_t usec_rtt, uint32_t rxtcnt, uint32_t fas);
|
| H A D | cc_hd.c | 84 static void hd_ack_received(struct cc_var *ccv, uint16_t ack_type); 142 hd_ack_received(struct cc_var *ccv, uint16_t ack_type) in hd_ack_received() argument 148 e_t = khelp_get_osd(&CCV(ccv, t_osd), ertt_id); in hd_ack_received() 154 !IN_RECOVERY(CCV(ccv, t_flags))) { in hd_ack_received() 163 newreno_cc_cong_signal(ccv, in hd_ack_received() 170 newreno_cc_ack_received(ccv, ack_type); in hd_ack_received()
|
| H A D | cc_module.h | 57 #define CCV(ccv, what) (ccv)->ccvc.tcp->what argument
|
| /freebsd-14.2/crypto/openssl/crypto/ |
| H A D | ia64cpuid.S | 38 { .mii; mov ar.ccv=r2 42 cmpxchg4.acq r2=[r32],r8,ar.ccv 231 mov ar.ccv=r8 233 { .mmi; cmpxchg4.acq r3=[r32],r8,ar.ccv 242 mov ar.ccv=r8 244 { .mmi; cmpxchg4.acq r3=[r32],r8,ar.ccv 266 mov ar.ccv=r8 268 { .mmi; cmpxchg4.acq r3=[r32],r8,ar.ccv 281 mov ar.ccv=r8 283 { .mmb; cmpxchg4.acq r3=[r32],r8,ar.ccv
|
| /freebsd-14.2/sys/dev/cxgbe/ |
| H A D | if_ccv.c | 42 MODULE_DEPEND(if_ccv, ccv, 1, 1, 1);
|
| H A D | t4_vf.c | 1000 DRIVER_MODULE(ccv, t6vf, ccv_driver, 0, 0); 1001 MODULE_VERSION(ccv, 1);
|
| /freebsd-14.2/share/man/man4/ |
| H A D | Makefile | 661 cxgbev.4 ccv.4 \
|
| /freebsd-14.2/contrib/ntp/ |
| H A D | ChangeLog | 2758 * Preserve last timecode in ACTS driver (ntpq -ccv).
|
| H A D | CommitLog | 142312 Preserve last timecode in ACTS driver (ntpq -ccv). 142320 Preserve last timecode in ACTS driver (ntpq -ccv).
|