mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-18 10:35:55 +00:00
Use a regular taskqueue for dummynet rather than a "fast" taskqueue.
Reviewed by: luigi
This commit is contained in:
parent
ed7beddc48
commit
e3e852231b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=217110
@ -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");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user