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

/freebsd-11-stable/sys/netpfil/ipfw/
H A Ddn_sched_wf2q.c189 /* XXX invariant: sch > 0 || V >= min(S in neh) */
198 struct dn_heap *neh = &si->ne_heap; local
201 if (sch->elements == 0 && neh->elements == 0) {
224 * if sch is empty we only need to look at neh.
228 if (sch->elements == 0 && neh->elements > 0) {
229 si->V = MAX64(si->V, HEAP_TOP(neh)->key);
231 while (neh->elements > 0 &&
232 DN_KEY_LEQ(HEAP_TOP(neh)->key, si->V)) {
233 q = HEAP_TOP(neh)->object;
235 heap_extract(neh, NUL
[all...]

Completed in 114 milliseconds