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

/freebsd-12-stable/sys/dev/rtwn/
H A Dif_rtwn_rx.c371 uint32_t *mfilt = arg; local
375 mfilt[pos / 32] |= (1 << (pos % 32));
384 uint32_t mfilt[2]; local
395 mfilt[0] = mfilt[1] = 0;
397 if_foreach_llmaddr(vap->iv_ifp, rtwm_hash_maddr, mfilt);
399 mfilt[0] = mfilt[1] = ~0;
401 rtwn_write_4(sc, R92C_MAR + 0, mfilt[0]);
402 rtwn_write_4(sc, R92C_MAR + 4, mfilt[
[all...]
/freebsd-12-stable/sys/dev/usb/wlan/
H A Dif_rsu.c864 uint32_t *mfilt = arg; local
868 mfilt[pos / 32] |= (1 << (pos % 32));
877 uint32_t mfilt[2]; local
888 mfilt[0] = mfilt[1] = 0;
890 if_foreach_llmaddr(vap->iv_ifp, rsu_hash_maddr, &mfilt);
892 mfilt[0] = mfilt[1] = ~0;
894 rsu_write_4(sc, R92S_MAR + 0, mfilt[0]);
895 rsu_write_4(sc, R92S_MAR + 4, mfilt[
[all...]
/freebsd-12-stable/sys/dev/ath/
H A Dif_ath.c3589 uint32_t val, *mfilt = arg; local
3600 mfilt[pos / 32] |= (1 << (pos % 32));
3614 u_int32_t mfilt[2]; local
3623 mfilt[0] = mfilt[1] = 0;
3625 if_foreach_llmaddr(vap->iv_ifp, ath_hash_maddr, &mfilt);
3627 mfilt[0] = mfilt[1] = ~0;
3629 ath_hal_setmcastfilter(sc->sc_ah, mfilt[0], mfilt[
[all...]

Completed in 66 milliseconds