From 877502a6a757a141bdaf4f2c29d4872f35d3eb98 Mon Sep 17 00:00:00 2001 From: Sunil Dutt Date: Thu, 28 Feb 2019 15:09:29 +0530 Subject: [PATCH] Vendor attribute to indicate a set_blacklist of BSSID only as a hint The current/default behavior of set blacklist BSSID QCA vendor command is a mandate to the driver - do not consider this BSSID for connect/roam till reset. There are use cases where this need not be a mandate and thus could provide the flexibility for the driver to consider this BSSID if there are no better ones. Such use cases can use this new flag attribute to only hint the blacklist of a BSSID to the driver. Signed-off-by: Jouni Malinen --- src/common/qca-vendor.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index b7c3e9cf5..4277ed82e 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -3218,6 +3218,8 @@ enum qca_wlan_vendor_attr_roaming_config_params { QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PARAMS = 18, QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PARAMS_NUM_BSSID = 19, QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PARAMS_BSSID = 20, + /* Flag attribute indicates this BSSID blacklist as a hint */ + QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PARAMS_HINT = 21, /* keep last */ QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_AFTER_LAST,