projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e19bc4
)
wireless: update robust action frame list
author
Johannes Berg
<johannes.berg@intel.com>
Wed, 7 Oct 2015 13:48:25 +0000
(15:48 +0200)
committer
Johannes Berg
<johannes.berg@intel.com>
Tue, 13 Oct 2015 08:34:33 +0000
(10:34 +0200)
Unprotected DMG and VHT action frames are not protected, reflect
that in the list.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
include/linux/ieee80211.h
patch
|
blob
|
history
diff --git
a/include/linux/ieee80211.h
b/include/linux/ieee80211.h
index dcfb2f43d31617bf29619228b38e0c23c584ca7b..0109f3847e9a87ed30753c18aec2ab44605b43db 100644
(file)
--- a/
include/linux/ieee80211.h
+++ b/
include/linux/ieee80211.h
@@
-2397,6
+2397,8
@@
static inline bool _ieee80211_is_robust_mgmt_frame(struct ieee80211_hdr *hdr)
return *category != WLAN_CATEGORY_PUBLIC &&
*category != WLAN_CATEGORY_HT &&
*category != WLAN_CATEGORY_SELF_PROTECTED &&
+ *category != WLAN_CATEGORY_UNPROT_DMG &&
+ *category != WLAN_CATEGORY_VHT &&
*category != WLAN_CATEGORY_VENDOR_SPECIFIC;
}