diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-03-09 00:37:25 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-03-09 00:37:25 +0000 |
commit | 129e9e84d30850a1479cfcffe116cf718df4f878 (patch) | |
tree | 1515d9b952f63540b2771b8e8a475598e534d0ba | |
parent | c47460467c0aaa532080cb5cd1e600220e44f367 (diff) | |
download | upstream-129e9e84d30850a1479cfcffe116cf718df4f878.tar.gz upstream-129e9e84d30850a1479cfcffe116cf718df4f878.tar.bz2 upstream-129e9e84d30850a1479cfcffe116cf718df4f878.zip |
ath9k: remove support for in-bss promisc mode, the rx filter flag is too broad and in-bss promisc mode is not particularly useful. should fix most (or all) instances of "ath: Could not stop RX..." error messages
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25963 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/mac80211/patches/550-ath9k_no_vif_promisc_handling.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/package/mac80211/patches/550-ath9k_no_vif_promisc_handling.patch b/package/mac80211/patches/550-ath9k_no_vif_promisc_handling.patch new file mode 100644 index 0000000000..c3a9663266 --- /dev/null +++ b/package/mac80211/patches/550-ath9k_no_vif_promisc_handling.patch @@ -0,0 +1,13 @@ +--- a/drivers/net/wireless/ath/ath9k/recv.c ++++ b/drivers/net/wireless/ath/ath9k/recv.c +@@ -413,9 +413,7 @@ u32 ath_calcrxfilter(struct ath_softc *s + * mode interface or when in monitor mode. AP mode does not need this + * since it receives all in-BSS frames anyway. + */ +- if (((sc->sc_ah->opmode != NL80211_IFTYPE_AP) && +- (sc->rx.rxfilter & FIF_PROMISC_IN_BSS)) || +- (sc->sc_ah->is_monitoring)) ++ if (sc->sc_ah->is_monitoring) + rfilt |= ATH9K_RX_FILTER_PROM; + + if (sc->rx.rxfilter & FIF_CONTROL) |