On Fri, 7 Aug 2026, Gleb Smirnoff wrote:
The branch main has been updated by glebius:
URL:
https://cgit.FreeBSD.org/src/commit/?id=6a15fd92392cfda1e0b7608e1a4a08509bc796f3
commit 6a15fd92392cfda1e0b7608e1a4a08509bc796f3
Author: Gleb Smirnoff <[email protected]>
AuthorDate: 2026-08-06 05:59:20 +0000
Commit: Gleb Smirnoff <[email protected]>
CommitDate: 2026-08-07 21:12:57 +0000
linuxkpi: add WLAN_EID_HT_OPERATION to ieee80211_eid
The gernal line I try to use starts with LinuxKPI: 802.11: ...
It matches our IEEE80211_ELEMID_HTINFO, that is already in use.
Found with: clang -Werror=assign-enum
Sorry, what was the error for this?
I am confused as to how/where this shows up?
---
sys/compat/linuxkpi/common/include/linux/ieee80211.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/compat/linuxkpi/common/include/linux/ieee80211.h
b/sys/compat/linuxkpi/common/include/linux/ieee80211.h
index dede010c57de..3edcf96292f7 100644
--- a/sys/compat/linuxkpi/common/include/linux/ieee80211.h
+++ b/sys/compat/linuxkpi/common/include/linux/ieee80211.h
@@ -681,6 +681,7 @@ enum ieee80211_eid {
WLAN_EID_EXT_SUPP_RATES = 50,
WLAN_EID_EXT_NON_INHERITANCE = 56,
WLAN_EID_EXT_CHANSWITCH_ANN = 60,
+ WLAN_EID_HT_OPERATION = 61, /*
IEEE80211_ELEMID_HTINFO */
WLAN_EID_MULTIPLE_BSSID = 71, /*
IEEE80211_ELEMID_MULTIBSSID */
WLAN_EID_MULTI_BSSID_IDX = 85,
WLAN_EID_EXT_CAPABILITY = 127,
--
Bjoern A. Zeeb r15:7