John,

Softmac scanning fails because the stop flag is not cleared before scanning is started. The attached one-line patch fixes this.

Signed-Off-By: Larry Finger <[EMAIL PROTECTED]>

diff --git a/net/ieee80211/softmac/ieee80211softmac_scan.c 
b/net/ieee80211/softmac/ieee80211softmac_scan.c
index d90d31f..1cdd9f1 100644
--- a/net/ieee80211/softmac/ieee80211softmac_scan.c
+++ b/net/ieee80211/softmac/ieee80211softmac_scan.c
@@ -178,6 +178,7 @@ int ieee80211softmac_start_scan_implemen
        dprintk(PFX "Scanning %d channels\n", sm->scaninfo->number_channels);
        sm->scaninfo->current_channel_idx = 0;
        sm->scaninfo->started = 1;
+       sm->scaninfo->stop = 0;
        INIT_COMPLETION(sm->scaninfo->finished);
        schedule_work(&sm->scaninfo->softmac_scan);
        spin_unlock_irqrestore(&sm->lock, flags);

Reply via email to