PERFORCE change 135069 for review

Sam Leffler sam at FreeBSD.org
Fri Feb 8 15:18:49 PST 2008


http://perforce.freebsd.org/chv.cgi?CH=135069

Change 135069 by sam at sam_ebb on 2008/02/08 23:18:35

	don't classify mgt frames according to QoS use; assign ProbeResponse
	frames to BE and all others to the VO q so they get high priority

Affected files ...

.. //depot/projects/vap/sys/net80211/ieee80211_output.c#27 edit

Differences ...

==== //depot/projects/vap/sys/net80211/ieee80211_output.c#27 (text+ko) ====

@@ -495,8 +495,8 @@
 		    "encrypting frame (%s)", __func__);
 		wh->i_fc[1] |= IEEE80211_FC1_WEP;
 	}
-	if (ni->ni_flags & IEEE80211_NODE_QOS) {
-		/* NB: force all management frames to the highest queue */
+	if (type != IEEE80211_FC0_SUBTYPE_PROBE_RESP) {
+		/* NB: force non-ProbeResp frames to the highest queue */
 		M_WME_SETAC(m, WME_AC_VO);
 	} else
 		M_WME_SETAC(m, WME_AC_BE);


More information about the p4-projects mailing list