Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Feb 2008 23:18:48 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 135069 for review
Message-ID:  <200802082318.m18NImoW019245@repoman.freebsd.org>

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

Change 135069 by sam@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);



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