From: Johannes Berg Date: Wed, 7 Oct 2015 13:48:25 +0000 (+0200) Subject: wireless: update robust action frame list X-Git-Tag: v4.4-rc1~141^2~85^2~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a4288289f585d42a19145f266e214acb165fe9b3;p=platform%2Fkernel%2Flinux-exynos.git wireless: update robust action frame list Unprotected DMG and VHT action frames are not protected, reflect that in the list. Signed-off-by: Johannes Berg --- diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index dcfb2f4..0109f38 100644 --- 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; }