Commit de2ee84db6a0201278e35590821cd014cb71830a
Committed by
John W. Linville
1 parent
841f1d92fb
Exists in
master
and in
6 other branches
mac80211: fix scan state machine
when we run high bandwidth UDP traffic and we trigger a scan, the scan state machine seems to be looping in SUSPEND->RESUME->DECISION->SUSPEND and SET_CHANNEL seems to be never called as 'tx_empty' is never true while running UDP traffic. fix this by settting SET_CHANNEL state when we get into RESUME state. Cc: Leela Kella <leela@qca.qualcomm.com> Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
net/mac80211/scan.c
... | ... | @@ -625,7 +625,7 @@ |
625 | 625 | local->leave_oper_channel_time = jiffies; |
626 | 626 | |
627 | 627 | /* advance to the next channel to be scanned */ |
628 | - local->next_scan_state = SCAN_DECISION; | |
628 | + local->next_scan_state = SCAN_SET_CHANNEL; | |
629 | 629 | } |
630 | 630 | |
631 | 631 | void ieee80211_scan_work(struct work_struct *work) |