Searched refs:hpts (Results 1 – 4 of 4) sorted by relevance
| /freebsd/sys/netinet/ |
| H A D | tcp_hpts.c | 232 SYSCTL_NODE(_net_inet_tcp, OID_AUTO, hpts, CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 396 tcp_hpts_log(struct tcp_hpts_entry *hpts, struct tcpcb *tp, struct timeval *tv, in tcp_hpts_log() argument 408 log.u_bbr.flex1 = hpts->p_nxt_slot; in tcp_hpts_log() 409 log.u_bbr.flex2 = hpts->p_cur_slot; in tcp_hpts_log() 410 log.u_bbr.flex3 = hpts->p_prev_slot; in tcp_hpts_log() 412 log.u_bbr.flex6 = hpts->p_on_queue_cnt; in tcp_hpts_log() 413 log.u_bbr.flex7 = hpts->p_cpu; in tcp_hpts_log() 416 log.u_bbr.applimited = hpts->overidden_sleep; in tcp_hpts_log() 418 log.u_bbr.epoch = hpts->saved_curslot; in tcp_hpts_log() 419 log.u_bbr.lt_epoch = hpts->saved_prev_slot; in tcp_hpts_log() [all …]
|
| H A D | tcp_hpts_test.c | 138 dump_hpts_entry(struct ktest_test_context *ctx, struct tcp_hpts_entry *hpts) in dump_hpts_entry() argument 140 KTEST_LOG(ctx, "tcp_hpts_entry(%p)", hpts); in dump_hpts_entry() 141 KTEST_LOG(ctx, " p_cur_slot: %u", hpts->p_cur_slot); in dump_hpts_entry() 142 KTEST_LOG(ctx, " p_prev_slot: %u", hpts->p_prev_slot); in dump_hpts_entry() 143 KTEST_LOG(ctx, " p_nxt_slot: %u", hpts->p_nxt_slot); in dump_hpts_entry() 144 KTEST_LOG(ctx, " p_runningslot: %u", hpts->p_runningslot); in dump_hpts_entry() 145 KTEST_LOG(ctx, " p_on_queue_cnt: %d", hpts->p_on_queue_cnt); in dump_hpts_entry() 146 KTEST_LOG(ctx, " p_hpts_active: %u", hpts->p_hpts_active); in dump_hpts_entry() 147 KTEST_LOG(ctx, " p_wheel_complete: %u", hpts->p_wheel_complete); in dump_hpts_entry() 148 KTEST_LOG(ctx, " p_direct_wake: %u", hpts->p_direct_wake); in dump_hpts_entry() [all …]
|
| H A D | tcp_hpts_internal.h | 101 #define HPTS_MTX_ASSERT(hpts) mtx_assert(&(hpts)->p_mtx, MA_OWNED) argument 102 #define HPTS_LOCK(hpts) mtx_lock(&(hpts)->p_mtx) argument 103 #define HPTS_TRYLOCK(hpts) mtx_trylock(&(hpts)->p_mtx) argument 104 #define HPTS_UNLOCK(hpts) mtx_unlock(&(hpts)->p_mtx) argument 172 int32_t tcp_hptsi(struct tcp_hpts_entry *hpts, bool from_callout); 174 void tcp_hpts_wake(struct tcp_hpts_entry *hpts);
|
| /freebsd/sys/modules/tcp/ |
| H A D | Makefile | 10 _hpts= hpts
|