Date: Sat, 26 Nov 2005 06:42:16 GMT From: Sam Leffler <sam@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 87258 for review Message-ID: <200511260642.jAQ6gGiJ042325@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=87258 Change 87258 by sam@sam_ebb on 2005/11/26 06:42:01 all data frames are classified; just fetch the ac Affected files ... .. //depot/projects/wifi/sys/dev/ath/if_ath.c#116 edit Differences ... ==== //depot/projects/wifi/sys/dev/ath/if_ath.c#116 (text+ko) ==== @@ -3953,17 +3953,11 @@ if (try0 != ATH_TXMAXTRY) ismrr = 1; } - /* - * Default all non-QoS traffic to the best-effort queue. - */ - if (wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_QOS) { - pri = M_WME_GETAC(m0); - if (cap->cap_wmeParams[pri].wmep_noackPolicy) { - flags |= HAL_TXDESC_NOACK; - sc->sc_stats.ast_tx_noack++; - } - } else - pri = WME_AC_BE; + pri = M_WME_GETAC(m0); + if (cap->cap_wmeParams[pri].wmep_noackPolicy) { + flags |= HAL_TXDESC_NOACK; + sc->sc_stats.ast_tx_noack++; + } break; default: if_printf(ifp, "bogus frame type 0x%x (%s)\n",
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200511260642.jAQ6gGiJ042325>