svn commit: r366522 - in head: lib/lib80211 sbin/ifconfig sys/net80211
Bjoern A. Zeeb
bz at FreeBSD.org
Wed Oct 7 21:56:59 UTC 2020
Author: bz
Date: Wed Oct 7 21:56:58 2020
New Revision: 366522
URL: https://svnweb.freebsd.org/changeset/base/366522
Log:
80211: non-functional changes
Sort a few VHT160 and 80+80 lines, update some comments, and remove
a superfluous ','.
No functional changes intended.
MFC after: 1 week
Sponsored by: The FreeBSD Foundation
Modified:
head/lib/lib80211/lib80211_regdomain.c
head/sbin/ifconfig/ifieee80211.c
head/sys/net80211/ieee80211.c
head/sys/net80211/ieee80211_node.h
Modified: head/lib/lib80211/lib80211_regdomain.c
==============================================================================
--- head/lib/lib80211/lib80211_regdomain.c Wed Oct 7 20:31:13 2020 (r366521)
+++ head/lib/lib80211/lib80211_regdomain.c Wed Oct 7 21:56:58 2020 (r366522)
@@ -191,11 +191,11 @@ decode_flag(struct mystate *mt, const char *p, int len
FLAG(IEEE80211_CHAN_VHT20),
FLAG(IEEE80211_CHAN_VHT40),
FLAG(IEEE80211_CHAN_VHT80),
+ FLAG(IEEE80211_CHAN_VHT160),
/*
* XXX VHT80P80? This likely should be done by
* 80MHz chan logic in net80211 / ifconfig.
*/
- FLAG(IEEE80211_CHAN_VHT160),
FLAG(IEEE80211_CHAN_ST),
FLAG(IEEE80211_CHAN_TURBO),
FLAG(IEEE80211_CHAN_PASSIVE),
Modified: head/sbin/ifconfig/ifieee80211.c
==============================================================================
--- head/sbin/ifconfig/ifieee80211.c Wed Oct 7 20:31:13 2020 (r366521)
+++ head/sbin/ifconfig/ifieee80211.c Wed Oct 7 21:56:58 2020 (r366522)
@@ -2385,8 +2385,7 @@ regdomain_makechannels(
&dc->dc_chaninfo);
}
- /* VHT80 */
- /* XXX dc_vhtcap? */
+ /* VHT80 is mandatory (and so should be VHT40 above). */
if (1) {
regdomain_addchans(ci, &rd->bands_11ac, reg,
IEEE80211_CHAN_A | IEEE80211_CHAN_HT40U |
Modified: head/sys/net80211/ieee80211.c
==============================================================================
--- head/sys/net80211/ieee80211.c Wed Oct 7 20:31:13 2020 (r366521)
+++ head/sys/net80211/ieee80211.c Wed Oct 7 21:56:58 2020 (r366522)
@@ -158,7 +158,7 @@ ieee80211_chan_init(struct ieee80211com *ic)
/*
* Setup the HT40/VHT40 upper/lower bits.
- * The VHT80 math is done elsewhere.
+ * The VHT80/... math is done elsewhere.
*/
if (IEEE80211_IS_CHAN_HT40(c) && c->ic_extieee == 0)
c->ic_extieee = ieee80211_mhz2ieee(c->ic_freq +
@@ -167,8 +167,8 @@ ieee80211_chan_init(struct ieee80211com *ic)
/* Update VHT math */
/*
- * XXX VHT again, note that this assumes VHT80 channels
- * are legit already
+ * XXX VHT again, note that this assumes VHT80/... channels
+ * are legit already.
*/
set_vht_extchan(c);
@@ -712,8 +712,8 @@ ieee80211_vap_attach(struct ieee80211vap *vap, ifm_cha
ieee80211_syncflag_vht_locked(ic, IEEE80211_FVHT_VHT);
ieee80211_syncflag_vht_locked(ic, IEEE80211_FVHT_USEVHT40);
ieee80211_syncflag_vht_locked(ic, IEEE80211_FVHT_USEVHT80);
- ieee80211_syncflag_vht_locked(ic, IEEE80211_FVHT_USEVHT80P80);
ieee80211_syncflag_vht_locked(ic, IEEE80211_FVHT_USEVHT160);
+ ieee80211_syncflag_vht_locked(ic, IEEE80211_FVHT_USEVHT80P80);
IEEE80211_UNLOCK(ic);
return 1;
@@ -767,8 +767,8 @@ ieee80211_vap_detach(struct ieee80211vap *vap)
ieee80211_syncflag_vht_locked(ic, IEEE80211_FVHT_VHT);
ieee80211_syncflag_vht_locked(ic, IEEE80211_FVHT_USEVHT40);
ieee80211_syncflag_vht_locked(ic, IEEE80211_FVHT_USEVHT80);
- ieee80211_syncflag_vht_locked(ic, IEEE80211_FVHT_USEVHT80P80);
ieee80211_syncflag_vht_locked(ic, IEEE80211_FVHT_USEVHT160);
+ ieee80211_syncflag_vht_locked(ic, IEEE80211_FVHT_USEVHT80P80);
/* NB: this handles the bpfdetach done below */
ieee80211_syncflag_ext_locked(ic, IEEE80211_FEXT_BPF);
@@ -1160,7 +1160,7 @@ struct vht_chan_range vht80_chan_ranges[] = {
{ 5570, 5650 },
{ 5650, 5730 },
{ 5735, 5815 },
- { 0, 0, }
+ { 0, 0 }
};
static int
Modified: head/sys/net80211/ieee80211_node.h
==============================================================================
--- head/sys/net80211/ieee80211_node.h Wed Oct 7 20:31:13 2020 (r366521)
+++ head/sys/net80211/ieee80211_node.h Wed Oct 7 21:56:58 2020 (r366522)
@@ -70,7 +70,7 @@ struct ieee80211vap;
struct ieee80211_scanparams;
/*
- * Information element ``blob''. We use this structure
+ * Information element (IE) ``blob''. We use this structure
* to capture management frame payloads that need to be
* retained. Information elements within the payload that
* we need to consult have references recorded.
More information about the svn-src-all
mailing list