opensolaris system_taskq does not need to run at maximum priority
In fact, this taskqueue should use "boring" threads, nothing special about them. MFC after: 2 weeks
This commit is contained in:
@@ -48,7 +48,8 @@ system_taskq_init(void *arg)
|
||||
|
||||
taskq_zone = uma_zcreate("taskq_zone", sizeof(taskq_ent_t),
|
||||
NULL, NULL, NULL, NULL, 0, 0);
|
||||
system_taskq = taskq_create("system_taskq", mp_ncpus, 0, 0, 0, 0);
|
||||
system_taskq = taskq_create("system_taskq", mp_ncpus, minclsyspri,
|
||||
0, 0, 0);
|
||||
}
|
||||
SYSINIT(system_taskq_init, SI_SUB_CONFIGURE, SI_ORDER_ANY, system_taskq_init, NULL);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user