diff options
| author | John W. Linville <linville@tuxdriver.com> | 2014-07-22 13:49:34 -0400 |
|---|---|---|
| committer | John W. Linville <linville@tuxdriver.com> | 2014-07-22 13:49:34 -0400 |
| commit | a006827a152c3f4d09324157096c8f89cf7ddca3 (patch) | |
| tree | 3590601aa271f8def4ef6fdc701eb0004a05f925 /include/linux | |
| parent | 1d9e954e8b522ae37c7c0fdd791b5736321684a0 (diff) | |
| parent | 08cf42e843f9a7e253502011c81677f61f7e5c42 (diff) | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/ieee80211.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index 75d17e15da33..63ab3873c5ed 100644 --- a/include/linux/ieee80211.h +++ b/include/linux/ieee80211.h | |||
| @@ -1001,6 +1001,26 @@ struct ieee80211_vendor_ie { | |||
| 1001 | u8 oui_type; | 1001 | u8 oui_type; |
| 1002 | } __packed; | 1002 | } __packed; |
| 1003 | 1003 | ||
| 1004 | struct ieee80211_wmm_ac_param { | ||
| 1005 | u8 aci_aifsn; /* AIFSN, ACM, ACI */ | ||
| 1006 | u8 cw; /* ECWmin, ECWmax (CW = 2^ECW - 1) */ | ||
| 1007 | __le16 txop_limit; | ||
| 1008 | } __packed; | ||
| 1009 | |||
| 1010 | struct ieee80211_wmm_param_ie { | ||
| 1011 | u8 element_id; /* Element ID: 221 (0xdd); */ | ||
| 1012 | u8 len; /* Length: 24 */ | ||
| 1013 | /* required fields for WMM version 1 */ | ||
| 1014 | u8 oui[3]; /* 00:50:f2 */ | ||
| 1015 | u8 oui_type; /* 2 */ | ||
| 1016 | u8 oui_subtype; /* 1 */ | ||
| 1017 | u8 version; /* 1 for WMM version 1.0 */ | ||
| 1018 | u8 qos_info; /* AP/STA specific QoS info */ | ||
| 1019 | u8 reserved; /* 0 */ | ||
| 1020 | /* AC_BE, AC_BK, AC_VI, AC_VO */ | ||
| 1021 | struct ieee80211_wmm_ac_param ac[4]; | ||
| 1022 | } __packed; | ||
| 1023 | |||
| 1004 | /* Control frames */ | 1024 | /* Control frames */ |
| 1005 | struct ieee80211_rts { | 1025 | struct ieee80211_rts { |
| 1006 | __le16 frame_control; | 1026 | __le16 frame_control; |
