Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F116019263
D50095.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
764 B
Referenced Files
None
Subscribers
None
D50095.diff
View Options
diff --git a/sys/net80211/ieee80211_ht.c b/sys/net80211/ieee80211_ht.c
--- a/sys/net80211/ieee80211_ht.c
+++ b/sys/net80211/ieee80211_ht.c
@@ -2592,6 +2592,11 @@
return 0;
}
+/*
+ * Handle the HT channel width action frame.
+ *
+ * 802.11-2020 9.6.11.2 (Notify Channel Width frame format).
+ */
static int
ht_recv_action_ht_txchwidth(struct ieee80211_node *ni,
const struct ieee80211_frame *wh __unused,
@@ -2603,6 +2608,11 @@
if ((ni->ni_htcap & IEEE80211_HTCAP_CHWIDTH40) == 0)
return (0);
+ /*
+ * The supported values are either 0 (any supported width)
+ * or 1 (HT20). 80, 160, etc MHz widths are not represented
+ * here.
+ */
chw = (frm[2] == IEEE80211_A_HT_TXCHWIDTH_2040) ?
IEEE80211_STA_RX_BW_40 : IEEE80211_STA_RX_BW_20;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, May 2, 4:54 PM (10 h, 20 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
17897998
Default Alt Text
D50095.diff (764 B)
Attached To
Mode
D50095: net80211: document where to find the HT TX width action frame.
Attached
Detach File
Event Timeline
Log In to Comment