Rename QCA_NL80211_VENDOR_SUBCMD_CONCURRENT_MULTI_STA_POLICY
Rename QCA_NL80211_VENDOR_SUBCMD_CONCURRENT_MULTI_STA_POLICY to QCA_NL80211_VENDOR_SUBCMD_CONCURRENT_POLICY to allow extension for other interface type(s). A subsequent commit will extend the renamed definitions in a manner that is inconsistent with the current naming. This is a precursor for AP/P2P concurrency policy configuration support via updated vendor command QCA_NL80211_VENDOR_SUBCMD_CONCURRENT_POLICY. Signed-off-by: Purushottam Kushwaha <quic_pkushwah@quicinc.com>
This commit is contained in:
parent
085a3fc76e
commit
a5754f531e
1 changed files with 30 additions and 13 deletions
|
@ -711,10 +711,10 @@ enum qca_radiotap_vendor_ids {
|
||||||
* This event contains Tx VDEV group information, other VDEVs
|
* This event contains Tx VDEV group information, other VDEVs
|
||||||
* interface index, and status information.
|
* interface index, and status information.
|
||||||
*
|
*
|
||||||
* @QCA_NL80211_VENDOR_SUBCMD_CONCURRENT_MULTI_STA_POLICY: Vendor command to
|
* @QCA_NL80211_VENDOR_SUBCMD_CONCURRENT_POLICY: Vendor command to
|
||||||
* configure the concurrent session policies when multiple STA interfaces
|
* configure the concurrent session policies when multiple interfaces
|
||||||
* are (getting) active. The attributes used by this command are defined
|
* are (getting) active. The attributes used by this command are defined
|
||||||
* in enum qca_wlan_vendor_attr_concurrent_sta_policy.
|
* in enum qca_wlan_vendor_attr_concurrent_policy.
|
||||||
*
|
*
|
||||||
* @QCA_NL80211_VENDOR_SUBCMD_USABLE_CHANNELS: Userspace can use this command
|
* @QCA_NL80211_VENDOR_SUBCMD_USABLE_CHANNELS: Userspace can use this command
|
||||||
* to query usable channels for different interface types such as STA,
|
* to query usable channels for different interface types such as STA,
|
||||||
|
@ -987,7 +987,7 @@ enum qca_nl80211_vendor_subcmds {
|
||||||
QCA_NL80211_VENDOR_SUBCMD_UPDATE_SSID = 194,
|
QCA_NL80211_VENDOR_SUBCMD_UPDATE_SSID = 194,
|
||||||
QCA_NL80211_VENDOR_SUBCMD_WIFI_FW_STATS = 195,
|
QCA_NL80211_VENDOR_SUBCMD_WIFI_FW_STATS = 195,
|
||||||
QCA_NL80211_VENDOR_SUBCMD_MBSSID_TX_VDEV_STATUS = 196,
|
QCA_NL80211_VENDOR_SUBCMD_MBSSID_TX_VDEV_STATUS = 196,
|
||||||
QCA_NL80211_VENDOR_SUBCMD_CONCURRENT_MULTI_STA_POLICY = 197,
|
QCA_NL80211_VENDOR_SUBCMD_CONCURRENT_POLICY = 197,
|
||||||
QCA_NL80211_VENDOR_SUBCMD_USABLE_CHANNELS = 198,
|
QCA_NL80211_VENDOR_SUBCMD_USABLE_CHANNELS = 198,
|
||||||
QCA_NL80211_VENDOR_SUBCMD_GET_RADAR_HISTORY = 199,
|
QCA_NL80211_VENDOR_SUBCMD_GET_RADAR_HISTORY = 199,
|
||||||
QCA_NL80211_VENDOR_SUBCMD_MDNS_OFFLOAD = 200,
|
QCA_NL80211_VENDOR_SUBCMD_MDNS_OFFLOAD = 200,
|
||||||
|
@ -1001,6 +1001,12 @@ enum qca_nl80211_vendor_subcmds {
|
||||||
QCA_NL80211_VENDOR_SUBCMD_DRIVER_READY = 214,
|
QCA_NL80211_VENDOR_SUBCMD_DRIVER_READY = 214,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Compatibility defines for previously used subcmd names.
|
||||||
|
* These values should not be used in any new implementation.
|
||||||
|
*/
|
||||||
|
#define QCA_NL80211_VENDOR_SUBCMD_CONCURRENT_MULTI_STA_POLICY \
|
||||||
|
QCA_NL80211_VENDOR_SUBCMD_CONCURRENT_POLICY
|
||||||
|
|
||||||
enum qca_wlan_vendor_attr {
|
enum qca_wlan_vendor_attr {
|
||||||
QCA_WLAN_VENDOR_ATTR_INVALID = 0,
|
QCA_WLAN_VENDOR_ATTR_INVALID = 0,
|
||||||
/* used by QCA_NL80211_VENDOR_SUBCMD_DFS_CAPABILITY */
|
/* used by QCA_NL80211_VENDOR_SUBCMD_DFS_CAPABILITY */
|
||||||
|
@ -11610,24 +11616,35 @@ enum qca_wlan_concurrent_sta_policy_config {
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* enum qca_wlan_vendor_attr_concurrent_sta_policy - Defines attributes
|
* enum qca_wlan_vendor_attr_concurrent_policy - Defines attributes
|
||||||
* used by QCA_NL80211_VENDOR_SUBCMD_CONCURRENT_MULTI_STA_POLICY vendor command.
|
* used by QCA_NL80211_VENDOR_SUBCMD_CONCURRENT_POLICY vendor command.
|
||||||
*
|
*
|
||||||
* @QCA_WLAN_VENDOR_ATTR_CONCURRENT_STA_POLICY_CONFIG:
|
* @QCA_WLAN_VENDOR_ATTR_CONCURRENT_POLICY_STA_CONFIG:
|
||||||
* u8 attribute. Configures the concurrent STA policy configuration.
|
* u8 attribute. Configures the concurrent STA policy configuration.
|
||||||
* Possible values are defined in enum qca_wlan_concurrent_sta_policy_config.
|
* Possible values are defined in enum qca_wlan_concurrent_sta_policy_config.
|
||||||
*/
|
*/
|
||||||
enum qca_wlan_vendor_attr_concurrent_sta_policy {
|
enum qca_wlan_vendor_attr_concurrent_policy {
|
||||||
QCA_WLAN_VENDOR_ATTR_CONCURRENT_STA_POLICY_INVALID = 0,
|
QCA_WLAN_VENDOR_ATTR_CONCURRENT_POLICY_INVALID = 0,
|
||||||
QCA_WLAN_VENDOR_ATTR_CONCURRENT_STA_POLICY_CONFIG = 1,
|
QCA_WLAN_VENDOR_ATTR_CONCURRENT_POLICY_STA_CONFIG = 1,
|
||||||
|
|
||||||
/* keep last */
|
/* keep last */
|
||||||
QCA_WLAN_VENDOR_ATTR_CONCURRENT_STA_POLICY_AFTER_LAST,
|
QCA_WLAN_VENDOR_ATTR_CONCURRENT_POLICY_AFTER_LAST,
|
||||||
QCA_WLAN_VENDOR_ATTR_CONCURRENT_STA_POLICY_MAX =
|
QCA_WLAN_VENDOR_ATTR_CONCURRENT_POLICY_MAX =
|
||||||
QCA_WLAN_VENDOR_ATTR_CONCURRENT_STA_POLICY_AFTER_LAST - 1,
|
QCA_WLAN_VENDOR_ATTR_CONCURRENT_POLICY_AFTER_LAST - 1,
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Compatibility defines for previously used enum
|
||||||
|
* qca_wlan_vendor_attr_concurrent_policy names. These values should not be used
|
||||||
|
* in any new implementation.
|
||||||
|
*/
|
||||||
|
#define QCA_WLAN_VENDOR_ATTR_CONCURRENT_STA_POLICY_CONFIG \
|
||||||
|
QCA_WLAN_VENDOR_ATTR_CONCURRENT_POLICY_STA_CONFIG
|
||||||
|
#define QCA_WLAN_VENDOR_ATTR_CONCURRENT_STA_POLICY_MAX \
|
||||||
|
QCA_WLAN_VENDOR_ATTR_CONCURRENT_POLICY_MAX
|
||||||
|
#define qca_wlan_vendor_attr_concurrent_sta_policy \
|
||||||
|
qca_wlan_vendor_attr_concurrent_policy
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* enum qca_sta_connect_fail_reason_codes - Defines values carried
|
* enum qca_sta_connect_fail_reason_codes - Defines values carried
|
||||||
* by QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_CONNECT_FAIL_REASON_CODE vendor
|
* by QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_CONNECT_FAIL_REASON_CODE vendor
|
||||||
|
|
Loading…
Reference in a new issue