svn commit: r217110 - head/sys/netinet/ipfw

John Baldwin jhb at FreeBSD.org
Fri Jan 7 16:47:21 UTC 2011


Author: jhb
Date: Fri Jan  7 16:47:20 2011
New Revision: 217110
URL: http://svn.freebsd.org/changeset/base/217110

Log:
  Use a regular taskqueue for dummynet rather than a "fast" taskqueue.
  
  Reviewed by:	luigi

Modified:
  head/sys/netinet/ipfw/ip_dummynet.c

Modified: head/sys/netinet/ipfw/ip_dummynet.c
==============================================================================
--- head/sys/netinet/ipfw/ip_dummynet.c	Fri Jan  7 16:46:20 2011	(r217109)
+++ head/sys/netinet/ipfw/ip_dummynet.c	Fri Jan  7 16:47:20 2011	(r217110)
@@ -2157,7 +2157,7 @@ ip_dn_init(void)
 	DN_LOCK_INIT();
 
 	TASK_INIT(&dn_task, 0, dummynet_task, curvnet);
-	dn_tq = taskqueue_create_fast("dummynet", M_NOWAIT,
+	dn_tq = taskqueue_create("dummynet", M_NOWAIT,
 	    taskqueue_thread_enqueue, &dn_tq);
 	taskqueue_start_threads(&dn_tq, 1, PI_NET, "dummynet");
 


More information about the svn-src-all mailing list