Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Oct 2011 14:17:37 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r226469 - head/sys/dev/ath
Message-ID:  <201110171417.p9HEHbeV026792@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Mon Oct 17 14:17:37 2011
New Revision: 226469
URL: http://svn.freebsd.org/changeset/base/226469

Log:
  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.

Modified:
  head/sys/dev/ath/if_ath.c

Modified: head/sys/dev/ath/if_ath.c
==============================================================================
--- head/sys/dev/ath/if_ath.c	Mon Oct 17 13:54:55 2011	(r226468)
+++ head/sys/dev/ath/if_ath.c	Mon Oct 17 14:17:37 2011	(r226469)
@@ -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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201110171417.p9HEHbeV026792>