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");
 
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to