From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 02F4C3195F9; Thu, 15 Jan 2026 17:44:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768499073; cv=none; b=I/4EOnBW90G9l4zd9uszfo8DAHfnV/RNS8IWa4UebL2ruqJ7za/7lMHhm8MoH6XMZzwrQom9fOmL66gHtBHcYJd2ghDa5G8dachuqRpWGim4+HwNB3/K2lZLAlygEQ0aL1Lp5JN7O7D744rDhIFezGKZv1qGRn+RN5li7v0n5vo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768499073; c=relaxed/simple; bh=hDB+6DhL2ntWjfNbCBrQc1Olr7mN1XmNcHtPZQOkrek=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=G/eIMEq78aFbZGuhrChFO/cMDBY75m/2JBMtV48l3znFCWQCYYayoTgzr7v7YaSMT5H19wvv687Edsqoxm7As8jcZyJasCc49CRLLjntzpsDZEEbuy7wLfleeYKCrsZ3/AZHdC0//ithejmg+bYyzPfFxAdnurYK3qwrAiqBRkI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=qCltAzIc; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="qCltAzIc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7AE99C116D0; Thu, 15 Jan 2026 17:44:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1768499072; bh=hDB+6DhL2ntWjfNbCBrQc1Olr7mN1XmNcHtPZQOkrek=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=qCltAzIc0vXDiTllddh2Rqi84Wks1LtUcWOOpJ7Fcg1vQPg+PwdVY5czV5DUUKstk H5hCFShEKD+Mf5683sXiXo82GPIfq9N7tuvRtr5/5DxtkgMa7S5lUsy83ol7xsiyDJ MOEEs99qpAQOUfJ30fa7+AdJmmi7Fxr/cvhrM+4I= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ria Thomas , Jeff Johnson , Johannes Berg , Sasha Levin Subject: [PATCH 5.10 099/451] wifi: ieee80211: correct FILS status codes Date: Thu, 15 Jan 2026 17:45:00 +0100 Message-ID: <20260115164234.498718413@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260115164230.864985076@linuxfoundation.org> References: <20260115164230.864985076@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Ria Thomas [ Upstream commit 24d4da5c2565313c2ad3c43449937a9351a64407 ] 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: a3caf7440ded ("cfg80211: Add support for FILS shared key authentication offload") Signed-off-by: Ria Thomas Reviewed-by: Jeff Johnson Link: https://patch.msgid.link/20251124125637.3936154-1-ria.thomas@morsemicro.com Signed-off-by: Johannes Berg Signed-off-by: Sasha Levin --- include/linux/ieee80211.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index 770408b2fdafb..f12357c7ea364 100644 --- a/include/linux/ieee80211.h +++ b/include/linux/ieee80211.h @@ -2627,8 +2627,8 @@ enum ieee80211_statuscode { WLAN_STATUS_DENIED_WITH_SUGGESTED_BAND_AND_CHANNEL = 99, WLAN_STATUS_DENIED_DUE_TO_SPECTRUM_MANAGEMENT = 103, /* 802.11ai */ - WLAN_STATUS_FILS_AUTHENTICATION_FAILURE = 108, - WLAN_STATUS_UNKNOWN_AUTHENTICATION_SERVER = 109, + WLAN_STATUS_FILS_AUTHENTICATION_FAILURE = 112, + WLAN_STATUS_UNKNOWN_AUTHENTICATION_SERVER = 113, WLAN_STATUS_SAE_HASH_TO_ELEMENT = 126, WLAN_STATUS_SAE_PK = 127, }; -- 2.51.0