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/11/sys/net80211/ieee80211_scan_sta.c
Directory Properties:
  stable/11/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/10/sys/net80211/ieee80211_scan_sta.c
  stable/12/sys/net80211/ieee80211_scan_sta.c
Directory Properties:
  stable/10/   (props changed)
  stable/12/   (props changed)

Modified: stable/11/sys/net80211/ieee80211_scan_sta.c
==============================================================================
--- stable/11/sys/net80211/ieee80211_scan_sta.c Wed Feb  6 01:47:22 2019        
(r343817)
+++ stable/11/sys/net80211/ieee80211_scan_sta.c Wed Feb  6 01:53:01 2019        
(r343818)
@@ -1329,7 +1329,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);
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to