Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Jan 2005 23:59:35 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 68505 for review
Message-ID:  <200501072359.j07NxZ49077454@repoman.freebsd.org>

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

Change 68505 by sam@sam_ebb on 2005/01/07 23:59:16

	o correct comment
	o add missing stat for frame marked w/ no ack

Affected files ...

.. //depot/projects/wifi/sys/dev/ath/if_ath.c#58 edit

Differences ...

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

@@ -3119,13 +3119,15 @@
 			&rix, &try0, &txrate);
 		sc->sc_txrate = txrate;			/* for LED blinking */
 		/*
-		 * Default all non-QoS traffic to the background queue.
+		 * Default all non-QoS traffic to the best-effort queue.
 		 */
 		if (wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_QOS) {
 			u_int pri = M_WME_GETAC(m0);
 			txq = sc->sc_ac2q[pri];
-			if (ic->ic_wme.wme_wmeChanParams.cap_wmeParams[pri].wmep_noackPolicy)
+			if (ic->ic_wme.wme_wmeChanParams.cap_wmeParams[pri].wmep_noackPolicy) {
 				 flags |= HAL_TXDESC_NOACK;
+				sc->sc_stats.ast_tx_noack++;
+			}
 		} else
 			txq = sc->sc_ac2q[WME_AC_BE];
 		break;



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