projects
/
carl9170fw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e2ba6e6
)
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
Christian Lamparter
<chunkeey@googlemail.com>
Wed, 27 Apr 2016 13:37:27 +0000
(15:37 +0200)
Unprotected DMG and VHT action frames are not protected, reflect
that in the list.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
include/linux/ieee80211.h
patch
|
blob
|
history
diff --git
a/include/linux/ieee80211.h
b/include/linux/ieee80211.h
index 2840a1716abb3ddf43270413dcfda9905979955a..49287d06b4b3fb0d3024cb6cbf9cd145e5611417 100644
(file)
--- a/
include/linux/ieee80211.h
+++ b/
include/linux/ieee80211.h
@@
-2413,6
+2413,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;
}