taskq_create() calls thread_create() with wrong arguments

Correct the arguments passed to `thread_create()`.

Signed-off-by: Isaac Huang <he.huang@intel.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #4593
This commit is contained in:
Denys Rtveliashvili 2016-05-05 17:24:12 +01:00 committed by Brian Behlendorf
parent e0ab3ab553
commit 498056ab1e

View File

@ -308,7 +308,7 @@ taskq_create(const char *name, int nthreads, pri_t pri,
for (t = 0; t < nthreads; t++)
VERIFY((tq->tq_threadlist[t] = thread_create(NULL, 0,
taskq_thread, tq, TS_RUN, NULL, 0, pri)) != NULL);
taskq_thread, tq, 0, &p0, TS_RUN, pri)) != NULL);
return (tq);
}