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

/freebsd-11-stable/sys/dev/sfxge/
H A Dsfxge.c125 unsigned int evq_max; local
141 evq_max = MIN(MAX(rss_getnumbuckets(), 1), EFX_MAXRSS);
143 evq_max = MIN(mp_ncpus, EFX_MAXRSS);
146 evq_max = MIN(evq_max, sc->max_rss_channels);
151 limits.edl_max_evq_count = evq_max;
153 limits.edl_max_txq_count = evq_max + SFXGE_EVQ0_N_TXQ(sc) - 1;
155 limits.edl_max_rxq_count = evq_max;
172 sc->evq_max = MIN(evq_allocated, evq_max);
[all...]
H A Dsfxge_intr.c312 KASSERT(sc->evq_max > 0, ("evq_max is zero"));
313 count = MIN(count, sc->evq_max);
H A Dsfxge.h326 unsigned int evq_max; member in struct:sfxge_softc

Completed in 92 milliseconds