Date: Thu, 21 Feb 2008 17:10:28 GMT From: Sam Leffler <sam@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 135902 for review Message-ID: <200802211710.m1LHASs1060395@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=135902 Change 135902 by sam@sam_ebb on 2008/02/21 17:10:27 send EAPOL frames w/ the mgmt rate Affected files ... .. //depot/projects/vap/sys/dev/ral/rt2560.c#14 edit .. //depot/projects/vap/sys/dev/ral/rt2661.c#11 edit Differences ... ==== //depot/projects/vap/sys/dev/ral/rt2560.c#14 (text) ==== @@ -1819,6 +1819,8 @@ tp = &vap->iv_txparms[ieee80211_chan2mode(ni->ni_chan)]; if (IEEE80211_IS_MULTICAST(wh->i_addr1)) { rate = tp->mcastrate; + } else if (m0->m_flags & M_EAPOL) { + rate = tp->mgmtrate; } else if (tp->ucastrate != IEEE80211_FIXED_RATE_NONE) { rate = tp->ucastrate; } else { ==== //depot/projects/vap/sys/dev/ral/rt2661.c#11 (text) ==== @@ -1613,6 +1613,8 @@ tp = &vap->iv_txparms[ieee80211_chan2mode(ni->ni_chan)]; if (IEEE80211_IS_MULTICAST(wh->i_addr1)) { rate = tp->mcastrate; + } else if (m0->m_flags & M_EAPOL) { + rate = tp->mgmtrate; } else if (tp->ucastrate != IEEE80211_FIXED_RATE_NONE) { rate = tp->ucastrate; } else {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200802211710.m1LHASs1060395>