Searched refs:mwl_rxbuf (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/dev/mwl/ |
H A D | if_mwlvar.h | 160 struct mwl_rxbuf { struct 161 STAILQ_ENTRY(mwl_rxbuf) bf_list; 166 typedef STAILQ_HEAD(, mwl_rxbuf) mwl_rxbufhead; argument 313 struct mwl_rxbuf *sc_rxnext; /* next rx buffer to process */
|
H A D | if_mwl.c | 135 static int mwl_rxbuf_init(struct mwl_softc *, struct mwl_rxbuf *); 191 static int mwl_rxbuf = MWL_RXBUF; /* # rx buffers to allocate */ variable 192 SYSCTL_INT(_hw_mwl, OID_AUTO, rxbuf, CTLFLAG_RWTUN, &mwl_rxbuf, 243 static void mwl_printrxbuf(const struct mwl_rxbuf *bf, u_int ix); 2084 struct mwl_rxbuf *bf; in mwl_rxdma_setup() 2090 mwl_rxdesc, sizeof(struct mwl_rxbuf), in mwl_rxdma_setup() 2105 if (mwl_rxbuf < 2*mwl_rxdesc) { in mwl_rxdma_setup() 2108 mwl_rxbuf, 2*mwl_rxdesc); in mwl_rxdma_setup() 2109 mwl_rxbuf = 2*mwl_rxdesc; in mwl_rxdma_setup() 2112 sc->sc_rxmemsize = mwl_rxbuf*jumbosize; in mwl_rxdma_setup() [all …]
|