Symbol: malo_rxbuf
sys/dev/malo/if_malo.c
1331
malo_getrxmbuf(struct malo_softc *sc, struct malo_rxbuf *bf)
sys/dev/malo/if_malo.c
1359
malo_rxbuf_init(struct malo_softc *sc, struct malo_rxbuf *bf)
sys/dev/malo/if_malo.c
1399
struct malo_rxbuf *bf, *prev;
sys/dev/malo/if_malo.c
1408
STAILQ_FOREACH(bf, &sc->malo_rxbuf, bf_list) {
sys/dev/malo/if_malo.c
1425
htole32(STAILQ_FIRST(&sc->malo_rxbuf)->bf_daddr);
sys/dev/malo/if_malo.c
1839
if (bootverbose || malo_rxbuf != MALO_RXBUF)
sys/dev/malo/if_malo.c
1841
"using %u rx buffers\n", malo_rxbuf);
sys/dev/malo/if_malo.c
1931
struct malo_rxbuf *bf;
sys/dev/malo/if_malo.c
1956
bf = STAILQ_FIRST(&sc->malo_rxbuf);
sys/dev/malo/if_malo.c
507
struct malo_rxbuf *bf;
sys/dev/malo/if_malo.c
511
malo_rxbuf, sizeof(struct malo_rxbuf),
sys/dev/malo/if_malo.c
519
bsize = malo_rxbuf * sizeof(struct malo_rxbuf);
sys/dev/malo/if_malo.c
528
STAILQ_INIT(&sc->malo_rxbuf);
sys/dev/malo/if_malo.c
530
for (i = 0; i < malo_rxbuf; i++, bf++, ds++) {
sys/dev/malo/if_malo.c
542
STAILQ_INSERT_TAIL(&sc->malo_rxbuf, bf, bf_list);
sys/dev/malo/if_malo.c
604
struct malo_rxbuf *bf;
sys/dev/malo/if_malo.c
606
STAILQ_FOREACH(bf, &sc->malo_rxbuf, bf_list) {
sys/dev/malo/if_malo.c
616
STAILQ_INIT(&sc->malo_rxbuf);
sys/dev/malo/if_malo.c
68
static int malo_rxbuf = MALO_RXBUF; /* # rx buffers to allocate */
sys/dev/malo/if_malo.c
69
SYSCTL_INT(_hw_malo, OID_AUTO, rxbuf, CTLFLAG_RWTUN, &malo_rxbuf,
sys/dev/malo/if_malo.c
850
malo_printrxbuf(const struct malo_rxbuf *bf, u_int ix)
sys/dev/malo/if_malo.h
447
STAILQ_ENTRY(malo_rxbuf) bf_list;
sys/dev/malo/if_malo.h
454
typedef STAILQ_HEAD(, malo_rxbuf) malo_rxbufhead;
sys/dev/malo/if_malo.h
549
malo_rxbufhead malo_rxbuf; /* rx buffers */
sys/dev/malo/if_malo.h
550
struct malo_rxbuf *malo_rxnext; /* next rx buffer to process */