Replace overlooked smp_started checks and variable use in a print

with the now used tqg_smp_started.

Submitted by:	bde
This commit is contained in:
Sean Bruno 2017-01-25 15:54:44 +00:00
parent 0b27526201
commit 06bb7c507a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=312760

View File

@ -740,7 +740,7 @@ taskqgroup_attach_cpu(struct taskqgroup *qgroup, struct grouptask *gtask,
CPU_ZERO(&mask);
CPU_SET(cpu, &mask);
if (irq != -1 && (smp_started || mp_ncpus == 1))
if (irq != -1 && tqg_smp_started)
intr_setaffinity(irq, &mask);
return (0);
}
@ -849,8 +849,8 @@ _taskqgroup_adjust(struct taskqgroup *qgroup, int cnt, int stride)
if (cnt < 1 || cnt * stride > mp_ncpus || !tqg_smp_started) {
printf("%s: failed cnt: %d stride: %d "
"mp_ncpus: %d smp_started: %d\n",
__func__, cnt, stride, mp_ncpus, smp_started);
"mp_ncpus: %d tqg_smp_started: %d\n",
__func__, cnt, stride, mp_ncpus, tqg_smp_started);
return (EINVAL);
}
if (qgroup->tqg_adjusting) {