Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Feb 2008 22:45:35 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 135851 for review
Message-ID:  <200802202245.m1KMjZGL010606@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=135851

Change 135851 by sam@sam_ebb on 2008/02/20 22:44:45

	turn off WME by default; net80211 enables it 'cuz we say
	we're capable; need to bring in support for h/w TKIP+s/w MIC 
	so it's generally safe

Affected files ...

.. //depot/projects/vap/sys/dev/ath/if_ath.c#35 edit

Differences ...

==== //depot/projects/vap/sys/dev/ath/if_ath.c#35 (text+ko) ====

@@ -857,6 +857,9 @@
 	ieee80211_vap_setup(ic, vap, name, unit, opmode, flags, bssid, mac);
 	ATH_LOCK(sc);
 
+	/* XXX turn off WME until we fix WME+TKIP for older chips */
+	vap->iv_flags &= ~IEEE80211_F_WME;
+
 	/* h/w crypto support */
 	vap->iv_key_alloc = ath_key_alloc;
 	vap->iv_key_delete = ath_key_delete;



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