Author :
dlg
Date :
2025-02-21 06:20:12
Hash :9a71ea36 Message :replace "if (!task_del) taskq_barrier" with "taskq_del_barrier".
as per src/sys/kern/kern_task.c r1.36, it's possible for a task to
be re-added while it's currently running. in this situation the "if
(!task_del)" skips the barrier but doesn't do anything about the
currently running code, which taskq_del_barrier properly handles.
----------------------------------------------------------------------