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:
Andriy Gapon 2018-05-04 07:28:01 +00:00
parent 748ff486b0
commit ca7019d2ac
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=333243

View File

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