diff options
author | adrian <adrian@FreeBSD.org> | 2011-10-17 14:17:37 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2011-10-17 14:17:37 +0000 |
commit | 6d4595e17ad63991be17c1b14d9fec95281743ba (patch) | |
tree | 1728034c054f74c9709da597b8b011493e492f6d | |
parent | ce57dfe4038ab99effe05d18ad38acdc421a7f29 (diff) | |
download | FreeBSD-src-6d4595e17ad63991be17c1b14d9fec95281743ba.zip FreeBSD-src-6d4595e17ad63991be17c1b14d9fec95281743ba.tar.gz |
Don't enable the PHY radar errors in calcrxfilter.
That way the radar errors aren't enabled prematurely.
A DFS tester has reported that radar events are reported
during channel scanning, before DFS is actually enabled.
-rw-r--r-- | sys/dev/ath/if_ath.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c index d74abe0..4105fd6 100644 --- a/sys/dev/ath/if_ath.c +++ b/sys/dev/ath/if_ath.c @@ -2031,10 +2031,6 @@ ath_calcrxfilter(struct ath_softc *sc) if (ic->ic_opmode == IEEE80211_M_MONITOR) rfilt |= HAL_RX_FILTER_CONTROL; - if (sc->sc_dodfs) { - rfilt |= HAL_RX_FILTER_PHYRADAR; - } - /* * Enable RX of compressed BAR frames only when doing * 802.11n. Required for A-MPDU. |