svn commit: r193445 - projects/mesh11s/sys/dev/ath

Rui Paulo rpaulo at FreeBSD.org
Thu Jun 4 18:03:04 UTC 2009


Author: rpaulo
Date: Thu Jun  4 18:03:03 2009
New Revision: 193445
URL: http://svn.freebsd.org/changeset/base/193445

Log:
  Enable promisc filtering for MBSS. XXX need to think about this
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  projects/mesh11s/sys/dev/ath/if_ath.c

Modified: projects/mesh11s/sys/dev/ath/if_ath.c
==============================================================================
--- projects/mesh11s/sys/dev/ath/if_ath.c	Thu Jun  4 17:55:42 2009	(r193444)
+++ projects/mesh11s/sys/dev/ath/if_ath.c	Thu Jun  4 18:03:03 2009	(r193445)
@@ -2374,7 +2374,7 @@ ath_calcrxfilter(struct ath_softc *sc)
 	    IEEE80211_IS_CHAN_ANYG(ic->ic_curchan))
 		rfilt |= HAL_RX_FILTER_BEACON;
 	if (ic->ic_opmode == IEEE80211_M_MBSS)
-		rfilt |= HAL_RX_FILTER_BEACON;
+		rfilt |= HAL_RX_FILTER_PROM | HAL_RX_FILTER_BEACON;
 	if (ic->ic_opmode == IEEE80211_M_MONITOR)
 		rfilt |= HAL_RX_FILTER_CONTROL;
 	DPRINTF(sc, ATH_DEBUG_MODE, "%s: RX filter 0x%x, %s if_flags 0x%x\n",


More information about the svn-src-projects mailing list