Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Jun 2009 18:03:03 +0000 (UTC)
From:      Rui Paulo <rpaulo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r193445 - projects/mesh11s/sys/dev/ath
Message-ID:  <200906041803.n54I33LK099476@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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",



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