Skip to content

Commit 24d4da5

Browse files
morse-riathomasjmberg-intel
authored andcommitted
wifi: ieee80211: correct FILS status codes
The FILS status codes are set to 108/109, but the IEEE 802.11-2020 spec defines them as 112/113. Update the enum so it matches the specification and keeps the kernel consistent with standard values. Fixes: a3caf74 ("cfg80211: Add support for FILS shared key authentication offload") Signed-off-by: Ria Thomas <ria.thomas@morsemicro.com> Reviewed-by: Jeff Johnson <jeff.johnson@oss.qualcomm.com> Link: https://patch.msgid.link/20251124125637.3936154-1-ria.thomas@morsemicro.com Signed-off-by: Johannes Berg <johannes.berg@intel.com>
1 parent cf1d7dc commit 24d4da5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/linux/ieee80211.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1493,8 +1493,8 @@ enum ieee80211_statuscode {
14931493
WLAN_STATUS_DENIED_WITH_SUGGESTED_BAND_AND_CHANNEL = 99,
14941494
WLAN_STATUS_DENIED_DUE_TO_SPECTRUM_MANAGEMENT = 103,
14951495
/* 802.11ai */
1496-
WLAN_STATUS_FILS_AUTHENTICATION_FAILURE = 108,
1497-
WLAN_STATUS_UNKNOWN_AUTHENTICATION_SERVER = 109,
1496+
WLAN_STATUS_FILS_AUTHENTICATION_FAILURE = 112,
1497+
WLAN_STATUS_UNKNOWN_AUTHENTICATION_SERVER = 113,
14981498
WLAN_STATUS_SAE_HASH_TO_ELEMENT = 126,
14991499
WLAN_STATUS_SAE_PK = 127,
15001500
WLAN_STATUS_DENIED_TID_TO_LINK_MAPPING = 133,

0 commit comments

Comments
 (0)