Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Apr 2007 05:17:17 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 118561 for review
Message-ID:  <200704220517.l3M5HHTK023586@repoman.freebsd.org>

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

Change 118561 by sam@sam_ebb on 2007/04/22 05:16:42

	user IEEE80211_QOS_ACKPOLICY_NOACK instead of hand-rolled value

Affected files ...

.. //depot/projects/wifi/sys/net80211/ieee80211_output.c#72 edit

Differences ...

==== //depot/projects/wifi/sys/net80211/ieee80211_output.c#72 (text+ko) ====

@@ -803,7 +803,7 @@
 		tid = WME_AC_TO_TID(ac);
 		qwh->i_qos[0] = tid & IEEE80211_QOS_TID;
 		if (ic->ic_wme.wme_wmeChanParams.cap_wmeParams[ac].wmep_noackPolicy)
-			qwh->i_qos[0] |= 1 << IEEE80211_QOS_ACKPOLICY_S;
+			qwh->i_qos[0] |= IEEE80211_QOS_ACKPOLICY_NOACK;
 		qwh->i_qos[1] = 0;
 		qwh->i_fc[0] |= IEEE80211_FC0_SUBTYPE_QOS;
 



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