CVSROOT: /cvs Module name: src Changes by: [email protected] 2017/10/30 08:01:42
Modified files:
sys/kern : kern_task.c
Log message:
Let witness(4) differentiate between taskq mutexes to avoid
reporting an error in a scenario like the following:
1. mtx_enter(&tqa->tq_mtx);
2. IRQ
3. mtx_enter(&tqb->tq_mtx);
Found by Hrvoje Popovski, OK mpi@
