From: Thomas Pedersen Date: Tue, 3 May 2011 23:57:14 +0000 (+0000) Subject: mac80211: Self-protected management frames are not robust X-Git-Tag: 1.9.4~7^2 X-Git-Url: https://jxself.org/git/?p=carl9170fw.git;a=commitdiff_plain;h=6614f805fda27b63bad3e75a12432b436c0d2681 mac80211: Self-protected management frames are not robust They may contain encrypted information elements (as AMPE frames do) but they are not encrypted. Signed-off-by: Thomas Pedersen Signed-off-by: Javier Cardona Signed-off-by: Christian Lamparter --- diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index 45b4374..4a9a25f 100644 --- a/include/linux/ieee80211.h +++ b/include/linux/ieee80211.h @@ -1550,6 +1550,7 @@ static inline bool ieee80211_is_robust_mgmt_frame(struct ieee80211_hdr *hdr) category = ((u8 *) hdr) + 24; return *category != WLAN_CATEGORY_PUBLIC && *category != WLAN_CATEGORY_HT && + *category != WLAN_CATEGORY_SELF_PROTECTED && *category != WLAN_CATEGORY_VENDOR_SPECIFIC; }