drivers: Add WMM parameters to association event data
The WMM parameters will be used later for setting default tspec values. Signed-off-by: Eliad Peller <eliadx.peller@intel.com>
This commit is contained in:
parent
d308d1a899
commit
0f14a44e6b
1 changed files with 22 additions and 0 deletions
|
@ -1366,6 +1366,23 @@ enum tdls_peer_capability {
|
||||||
TDLS_PEER_WMM = BIT(2),
|
TDLS_PEER_WMM = BIT(2),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* valid info in the wmm_params struct */
|
||||||
|
enum wmm_params_valid_info {
|
||||||
|
WMM_PARAMS_UAPSD_QUEUES_INFO = BIT(0),
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* struct wmm_params - WMM parameterss configured for this association
|
||||||
|
* @info_bitmap: Bitmap of valid wmm_params info; indicates what fields
|
||||||
|
* of the struct contain valid information.
|
||||||
|
* @uapsd_queues: Bitmap of ACs configured for uapsd (valid only if
|
||||||
|
* %WMM_PARAMS_UAPSD_QUEUES_INFO is set)
|
||||||
|
*/
|
||||||
|
struct wmm_params {
|
||||||
|
u8 info_bitmap;
|
||||||
|
u8 uapsd_queues;
|
||||||
|
};
|
||||||
|
|
||||||
#ifdef CONFIG_MACSEC
|
#ifdef CONFIG_MACSEC
|
||||||
struct macsec_init_params {
|
struct macsec_init_params {
|
||||||
Boolean always_include_sci;
|
Boolean always_include_sci;
|
||||||
|
@ -3735,6 +3752,11 @@ union wpa_event_data {
|
||||||
*/
|
*/
|
||||||
unsigned int freq;
|
unsigned int freq;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* wmm_params - WMM parameters used in this association.
|
||||||
|
*/
|
||||||
|
struct wmm_params wmm_params;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* addr - Station address (for AP mode)
|
* addr - Station address (for AP mode)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue