From eb529b0b548f82c4b5f301fbf53ceabf1b784887 Mon Sep 17 00:00:00 2001 From: Veerendranath Jakkam Date: Thu, 12 Sep 2024 00:51:19 +0530 Subject: [PATCH] Add QCA vendor status for TWT termination due to multiple MLO links activated Add a new status value QCA_WLAN_VENDOR_TWT_STATUS_MULTIPLE_LINKS_ACTIVE_TERMINATE to indicate the TWT session termination due to more than one MLO link being in active state. Signed-off-by: Veerendranath Jakkam --- src/common/qca-vendor.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index ddf196627..0b7aab78a 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -11103,6 +11103,9 @@ enum qca_wlan_vendor_attr_twt_setup { * required bit in its capabilities. * @QCA_WLAN_VENDOR_TWT_STATUS_TWT_NOT_REQUIRED: The peer has cleared * the TWT required bit(1->0) in its capabilities. + * @QCA_WLAN_VENDOR_TWT_STATUS_MULTIPLE_LINKS_ACTIVE_TERMINATE: FW terminated + * the TWT session due to more than one MLO link becoming active. Used on the + * TWT_TERMINATE notification from the driver/firmware. */ enum qca_wlan_vendor_twt_status { QCA_WLAN_VENDOR_TWT_STATUS_OK = 0, @@ -11130,6 +11133,7 @@ enum qca_wlan_vendor_twt_status { QCA_WLAN_VENDOR_TWT_STATUS_POWER_SAVE_EXIT_TERMINATE = 22, QCA_WLAN_VENDOR_TWT_STATUS_TWT_REQUIRED = 23, QCA_WLAN_VENDOR_TWT_STATUS_TWT_NOT_REQUIRED = 24, + QCA_WLAN_VENDOR_TWT_STATUS_MULTIPLE_LINKS_ACTIVE_TERMINATE = 25, }; /** -- 2.47.3