svn commit: r230447 - head/sys/net80211

Adrian Chadd adrian at FreeBSD.org
Sun Jan 22 05:30:30 UTC 2012


Author: adrian
Date: Sun Jan 22 05:30:29 2012
New Revision: 230447
URL: http://svn.freebsd.org/changeset/base/230447

Log:
  Mark the taskqueue as the _net80211_ taskqueue.
  
  This makes it much easier to determine whether an event occurs in the
  net80211 taskqueue (which was called "ath0 taskq") or the ath driver
  taskqueue (which is also called "ath0 taskq".)

Modified:
  head/sys/net80211/ieee80211.c

Modified: head/sys/net80211/ieee80211.c
==============================================================================
--- head/sys/net80211/ieee80211.c	Sun Jan 22 05:16:31 2012	(r230446)
+++ head/sys/net80211/ieee80211.c	Sun Jan 22 05:30:29 2012	(r230447)
@@ -276,7 +276,7 @@ ieee80211_ifattach(struct ieee80211com *
 	/* Create a taskqueue for all state changes */
 	ic->ic_tq = taskqueue_create("ic_taskq", M_WAITOK | M_ZERO,
 	    taskqueue_thread_enqueue, &ic->ic_tq);
-	taskqueue_start_threads(&ic->ic_tq, 1, PI_NET, "%s taskq",
+	taskqueue_start_threads(&ic->ic_tq, 1, PI_NET, "%s net80211 taskq",
 	    ifp->if_xname);
 	/*
 	 * Fill in 802.11 available channel set, mark all


More information about the svn-src-all mailing list