Use a regular taskqueue for dummynet rather than a "fast" taskqueue.

Reviewed by:	luigi
This commit is contained in:
John Baldwin 2011-01-07 16:47:20 +00:00
parent ed7beddc48
commit e3e852231b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=217110

View File

@ -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");