From dec5ab645cdba60691405930dad12e77a05f02d7 Mon Sep 17 00:00:00 2001 From: Adil Saeed Musthafa Date: Wed, 13 Sep 2023 15:56:03 -0700 Subject: [PATCH] Add _IS_ML flag attribute to the ADD_STA_NODE QCA vendor command Add an attribute QCA_WLAN_VENDOR_ATTR_ADD_STA_NODE_IS_ML to the ADD_STA_NODE command. If this attribute is set, it implies that the node being added is an MLD node. Signed-off-by: Adil Saeed Musthafa --- src/common/qca-vendor.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index 1b5286f93..0a3dda0f1 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -11989,6 +11989,12 @@ enum qca_wlan_vendor_attr_add_sta_node_params { */ QCA_WLAN_VENDOR_ATTR_ADD_STA_NODE_AUTH_ALGO = 2, + /* + * This flag attribute is set if the node being added is an + * MLD STA node. + */ + QCA_WLAN_VENDOR_ATTR_ADD_STA_NODE_IS_ML = 3, + /* keep last */ QCA_WLAN_VENDOR_ATTR_ADD_STA_NODE_PARAM_AFTER_LAST, QCA_WLAN_VENDOR_ATTR_ADD_STA_NODE_PARAM_MAX = -- 2.47.2