svn commit: r343818 - in stable: 10/sys/net80211 11/sys/net80211 12/sys/net80211
Andriy Voskoboinyk
avos at FreeBSD.org
Wed Feb 6 01:53:03 UTC 2019
Author: avos
Date: Wed Feb 6 01:53:01 2019
New Revision: 343818
URL: https://svnweb.freebsd.org/changeset/base/343818
Log:
MFC r343697:
net80211(4): fix rate check when 'roaming' ifconfig(8) option is set to 'auto'
Do not try to clear 'basic rate' bit from roamRate; it cannot be here and,
actually, this operation clears 'MCS rate' bit instead, breaking comparison
for 11n / 11ac modes.
Modified:
stable/12/sys/net80211/ieee80211_scan_sta.c
Directory Properties:
stable/12/ (props changed)
Changes in other areas also in this revision:
Modified:
stable/10/sys/net80211/ieee80211_scan_sta.c
stable/11/sys/net80211/ieee80211_scan_sta.c
Directory Properties:
stable/10/ (props changed)
stable/11/ (props changed)
Modified: stable/12/sys/net80211/ieee80211_scan_sta.c
==============================================================================
--- stable/12/sys/net80211/ieee80211_scan_sta.c Wed Feb 6 01:47:22 2019 (r343817)
+++ stable/12/sys/net80211/ieee80211_scan_sta.c Wed Feb 6 01:53:01 2019 (r343818)
@@ -1359,7 +1359,6 @@ sta_roam_check(struct ieee80211_scan_state *ss, struct
curRssi = ic->ic_node_getrssi(ni);
if (ucastRate == IEEE80211_FIXED_RATE_NONE) {
curRate = ni->ni_txrate;
- roamRate &= IEEE80211_RATE_VAL;
IEEE80211_DPRINTF(vap, IEEE80211_MSG_ROAM,
"%s: currssi %d currate %u roamrssi %d roamrate %u\n",
__func__, curRssi, curRate, roamRssi, roamRate);
More information about the svn-src-all
mailing list