]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
mac80211: compete scan to cfg80211 if deferred scan fail to start
authorStanislaw Gruszka <sgruszka@redhat.com>
Wed, 6 Oct 2010 09:22:12 +0000 (11:22 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Wed, 6 Oct 2010 20:30:42 +0000 (16:30 -0400)
We nulify local->scan_req on failure in __ieee80211_start_scan, so
__ieee80211_scan_completed will not call cfg80211_scan_done. Fix that.

Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
net/mac80211/scan.c

index 9aab921f7ca8d16593c4493cade052307c093b60..80e017df5f31679f5af283701ed2aa30be9ac1fe 100644 (file)
@@ -665,6 +665,8 @@ void ieee80211_scan_work(struct work_struct *work)
 
                rc = __ieee80211_start_scan(sdata, req);
                if (rc) {
+                       /* need to complete scan in cfg80211 */
+                       local->scan_req = req;
                        aborted = true;
                        goto out_complete;
                } else