diff options
author | sam <sam@FreeBSD.org> | 2009-07-21 19:01:04 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2009-07-21 19:01:04 +0000 |
commit | 0d00f45642b88a95b53e69a9c2beb4d34619bd7a (patch) | |
tree | 0b04c6c833cd3c2b3a8143aad3750365d2003efe /sys/dev/ath/if_athvar.h | |
parent | 659a9be16ec80fc252ae9c9cba9ac9ecf7dbcce2 (diff) | |
download | FreeBSD-src-0d00f45642b88a95b53e69a9c2beb4d34619bd7a.zip FreeBSD-src-0d00f45642b88a95b53e69a9c2beb4d34619bd7a.tar.gz |
track whether any mesh vaps are present to correctly setup the rx filter
when, for example, an ap vap is created first
Reviewed by: rpaulo
Approved by: re (kib)
Diffstat (limited to 'sys/dev/ath/if_athvar.h')
-rw-r--r-- | sys/dev/ath/if_athvar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/ath/if_athvar.h b/sys/dev/ath/if_athvar.h index 0bd3ea2..29efc4c 100644 --- a/sys/dev/ath/if_athvar.h +++ b/sys/dev/ath/if_athvar.h @@ -203,6 +203,7 @@ struct ath_softc { int sc_debug; int sc_nvaps; /* # vaps */ int sc_nstavaps; /* # station vaps */ + int sc_nmeshvaps; /* # mbss vaps */ u_int8_t sc_hwbssidmask[IEEE80211_ADDR_LEN]; u_int8_t sc_nbssid0; /* # vap's using base mac */ uint32_t sc_bssidmask; /* bssid mask */ |