]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mac80211: call restart complete at wowlan resume time
authorJohannes Berg <johannes.berg@intel.com>
Thu, 10 Jan 2013 23:28:01 +0000 (00:28 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 16 Jan 2013 14:19:01 +0000 (15:19 +0100)
When the driver's resume function can't completely
restore the configuration in the device, it returns
1 from the callback which will be treated like a HW
restart request, but done directly.

In this case, also call the driver's restart_complete()
function so it can finish the reconfiguration there.

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

index 79bc8709e83bb018b5a6d0784f0968974f112bf9..3037f49e51c89fad2f9b5ae64679a3913912ddba 100644 (file)
@@ -2488,7 +2488,10 @@ enum ieee80211_rate_control_changed {
  *
  * @restart_complete: Called after a call to ieee80211_restart_hw(), when the
  *     reconfiguration has completed. This can help the driver implement the
- *     reconfiguration step. This callback may sleep.
+ *     reconfiguration step. Also called when reconfiguring because the
+ *     driver's resume function returned 1, as this is just like an "inline"
+ *     hardware restart. This callback may sleep.
+ *
  */
 struct ieee80211_ops {
        void (*tx)(struct ieee80211_hw *hw,
index 0ad51e14f3c8b59057e888421557e8de3f876941..7519018ff71af2844241f43697a1926f54122def 100644 (file)
@@ -1358,9 +1358,9 @@ int ieee80211_reconfig(struct ieee80211_local *local)
        struct ieee80211_chanctx *ctx;
        struct sta_info *sta;
        int res, i;
-#ifdef CONFIG_PM
        bool reconfig_due_to_wowlan = false;
 
+#ifdef CONFIG_PM
        if (local->suspended)
                local->resuming = true;
 
@@ -1656,10 +1656,11 @@ int ieee80211_reconfig(struct ieee80211_local *local)
         * If this is for hw restart things are still running.
         * We may want to change that later, however.
         */
-       if (!local->suspended) {
+       if (!local->suspended || reconfig_due_to_wowlan)
                drv_restart_complete(local);
+
+       if (!local->suspended)
                return 0;
-       }
 
 #ifdef CONFIG_PM
        /* first set suspended false, then resuming */