Searched refs:V_dn_cfg (Results 1 - 11 of 11) sorted by relevance

/freebsd-13-stable/sys/netpfil/ipfw/
H A Dip_dn_private.h49 if (V_dn_cfg.debug > lev) D(fmt, ## __VA_ARGS__); } while (0)
59 mtx_init(&V_dn_cfg.uh_mtx, "dn_uh", NULL, MTX_DEF); \
60 mtx_init(&V_dn_cfg.bh_mtx, "dn_bh", NULL, MTX_DEF); \
63 mtx_destroy(&V_dn_cfg.uh_mtx); \
64 mtx_destroy(&V_dn_cfg.bh_mtx); \
67 #define DN_UH_RLOCK() mtx_lock(&V_dn_cfg.uh_mtx)
68 #define DN_UH_RUNLOCK() mtx_unlock(&V_dn_cfg.uh_mtx)
69 #define DN_UH_WLOCK() mtx_lock(&V_dn_cfg.uh_mtx)
70 #define DN_UH_WUNLOCK() mtx_unlock(&V_dn_cfg.uh_mtx)
71 #define DN_UH_LOCK_ASSERT() mtx_assert(&V_dn_cfg
407 #define V_dn_cfg macro
[all...]
H A Dip_dn_io.c77 * instead of V_dn_cfg.curr_time
80 #define V_dn_cfg VNET(dn_cfg) macro
104 value = V_dn_cfg.hash_size;
110 V_dn_cfg.hash_size = value;
121 value = V_dn_cfg.slot_limit;
123 value = V_dn_cfg.byte_limit;
131 V_dn_cfg.slot_limit = value;
135 V_dn_cfg.byte_limit = value;
153 /* wrapper to pass V_dn_cfg fields to SYSCTL_* */
351 u_int t = div64((V_dn_cfg
[all...]
H A Dip_dummynet.c371 V_dn_cfg.queue_count++;
404 V_dn_cfg.queue_count--;
544 V_dn_cfg.si_count++;
569 heap_extract(&V_dn_cfg.evheap, dl);
572 heap_extract(&V_dn_cfg.evheap, si);
591 V_dn_cfg.si_count--;
622 si->credit = p->burst + (V_dn_cfg.io_fast ? p->bandwidth : 0);
668 V_dn_cfg.fsk_count++;
670 SLIST_INSERT_HEAD(&V_dn_cfg.fsu, fs, sch_chain);
754 h = fs->sched ? &fs->sched->fsk_list : &V_dn_cfg
[all...]
H A Ddn_aqm.h42 #define NOW ((V_dn_cfg.curr_time * tick) / 1000)
44 #define AQM_UNOW (V_dn_cfg.curr_time * tick)
139 V_dn_cfg.io_pkt_drop++;
H A Ddn_sched_fq_codel.h110 V_dn_cfg.io_pkt_drop ++;
153 si->main_q.q_time = V_dn_cfg.curr_time;
H A Ddn_sched.h192 q->q_time = V_dn_cfg.curr_time;
H A Dip_dn_glue.c570 need += V_dn_cfg.schk_count * sizeof(struct dn_pipe8) / 2;
571 need += V_dn_cfg.fsk_count * sizeof(struct dn_flow_set);
572 need += V_dn_cfg.si_count * sizeof(struct dn_flow_queue8);
573 need += V_dn_cfg.queue_count * sizeof(struct dn_flow_queue8);
H A Ddn_aqm_codel.c205 q->q_time = V_dn_cfg.curr_time;
H A Ddn_sched_fq_pie.c305 V_dn_cfg.io_pkt_drop ++;
353 si->main_q.q_time = V_dn_cfg.curr_time;
774 si->main_q.q_time = V_dn_cfg.curr_time;
H A Ddn_aqm_pie.c341 q->q_time = V_dn_cfg.curr_time;
H A Ddn_sched_fq_codel.c168 si->main_q.q_time = V_dn_cfg.curr_time;

Completed in 126 milliseconds