svn commit: r258758 - head/sys/net80211

Adrian Chadd adrian at FreeBSD.org
Fri Nov 29 22:24:58 UTC 2013


Author: adrian
Date: Fri Nov 29 22:24:57 2013
New Revision: 258758
URL: http://svnweb.freebsd.org/changeset/base/258758

Log:
  Make sure any waiters on the scan results get notified if the scan task
  decides to do nothing.
  
  If this isn't done, then a scan request whilst a scan occurs in an active
  channel set or a completed channel set will hang.
  
  Tested:
  
  * Intel 5100, STA mode

Modified:
  head/sys/net80211/ieee80211_scan.c

Modified: head/sys/net80211/ieee80211_scan.c
==============================================================================
--- head/sys/net80211/ieee80211_scan.c	Fri Nov 29 21:59:03 2013	(r258757)
+++ head/sys/net80211/ieee80211_scan.c	Fri Nov 29 22:24:57 2013	(r258758)
@@ -860,6 +860,7 @@ scan_task(void *arg, int pending)
 	if (ss->ss_next == ss->ss_last) {
 		IEEE80211_DPRINTF(vap, IEEE80211_MSG_SCAN,
 			"%s: no channels to scan\n", __func__);
+		scandone = 1;
 		goto done;
 	}
 


More information about the svn-src-all mailing list