Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Jul 2005 01:02:04 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 80570 for review
Message-ID:  <200507200102.j6K124Jw008933@repoman.freebsd.org>

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

Change 80570 by sam@sam_ebb on 2005/07/20 01:01:06

	fix short preamble handling for mcast frames

Affected files ...

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

Differences ...

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

@@ -3860,7 +3860,7 @@
 		 */
 		if (ismcast) {
 			/*
-			 * Check mcast rate setting in case it changed.
+			 * Check mcast rate setting in case it's changed.
 			 * XXX move out of fastpath
 			 */
 			if (ic->ic_mcast_rate != sc->sc_mcastrate) {
@@ -3870,6 +3870,8 @@
 			}
 			rix = sc->sc_mcastrix;
 			txrate = rt->info[rix].rateCode;
+			if (shortPreamble)
+				txrate |= rt->info[rix].shortPreamble;
 			try0 = ATH_TXMAXTRY;
 		} else {
 			ath_rate_findrate(sc, an, shortPreamble, pktlen,



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