mac80211: fix bufferable MMPDU RX handling
authorJohannes Berg <johannes.berg@intel.com>
Fri, 24 Jan 2014 13:41:44 +0000 (14:41 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Tue, 4 Feb 2014 20:58:15 +0000 (21:58 +0100)
commitb4ba544c8c1349afd44e10aebec03c90e9b71d98
tree0c918d83b412f4155f3ea882626b0422315d32c5
parent953467d32150e2ae15aa3d5396ada175d265a412
mac80211: fix bufferable MMPDU RX handling

Action, disassoc and deauth frames are bufferable, and as such don't
have the PM bit in the frame control field reserved which means we
need to react to the bit when receiving in such a frame.

Fix this by introducing a new helper ieee80211_is_bufferable_mmpdu()
and using it for the RX path that currently ignores the PM bit in
any non-data frames for doze->wake transitions, but listens to it in
all frames for wake->doze transitions, both of which are wrong.

Also use the new helper in the TX path to clean up the code.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
include/linux/ieee80211.h
net/mac80211/rx.c
net/mac80211/tx.c