mac80211: only roll back station states for WDS when suspending
authorLuciano Coelho <luciano.coelho@intel.com>
Wed, 21 Jan 2015 20:19:34 +0000 (22:19 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Fri, 23 Jan 2015 09:47:40 +0000 (10:47 +0100)
commit2af81d6718f5ec92b1d787e0fe79b0d3b6f78601
tree03ddba9fd5cfe3642c1aa625a65bdc5966f777b0
parent20658702e08ecd693236b443837d28863b93e872
mac80211: only roll back station states for WDS when suspending

In normal cases (i.e. when we are fully associated), cfg80211 takes
care of removing all the stations before calling suspend in mac80211.

But in the corner case when we suspend during authentication or
association, mac80211 needs to roll back the station states.  But we
shouldn't roll back the station states in the suspend function,
because this is taken care of in other parts of the code, except for
WDS interfaces.  For AP types of interfaces, cfg80211 takes care of
disconnecting all stations before calling the driver's suspend code.
For station interfaces, this is done in the quiesce code.

For WDS interfaces we still need to do it here, so move the code into
a new switch case for WDS.

Cc: stable@kernel.org [3.15+]
Signed-off-by: Luciano Coelho <luciano.coelho@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/pm.c