Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Sep 2016 12:07:02 +0000 (UTC)
From:      Andriy Voskoboinyk <avos@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r305528 - head/sys/dev/usb/wlan
Message-ID:  <201609071207.u87C72Sp065435@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: avos
Date: Wed Sep  7 12:07:02 2016
New Revision: 305528
URL: https://svnweb.freebsd.org/changeset/base/305528

Log:
  rum: use mgmt frame rate for EAPOL frames.

Modified:
  head/sys/dev/usb/wlan/if_rum.c

Modified: head/sys/dev/usb/wlan/if_rum.c
==============================================================================
--- head/sys/dev/usb/wlan/if_rum.c	Wed Sep  7 09:31:10 2016	(r305527)
+++ head/sys/dev/usb/wlan/if_rum.c	Wed Sep  7 12:07:02 2016	(r305528)
@@ -1631,6 +1631,8 @@ rum_tx_data(struct rum_softc *sc, struct
 		rate = tp->mcastrate;
 	else if (tp->ucastrate != IEEE80211_FIXED_RATE_NONE)
 		rate = tp->ucastrate;
+	else if (m0->m_flags & M_EAPOL)
+		rate = tp->mgmtrate;
 	else
 		rate = ni->ni_txrate;
 



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