Remove assertion from TASK_INIT() macro, since some users of

sys/taskqueue.h may not have includes that define MPASS. It
was useful during testing of r357771, but can be omitted now.
An invalid value of priority will yield only in potential
priority inversion, not a crash.

This fixes compilation of ports/x11/nvidia-driver.
This commit is contained in:
Gleb Smirnoff 2020-02-11 20:59:41 +00:00
parent ec5fd09524
commit 47602aa4e9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=357779

View File

@ -121,7 +121,6 @@ void taskqueue_thread_enqueue(void *context);
* Initialise a task structure.
*/
#define TASK_INIT_FLAGS(task, priority, func, context, flags) do { \
MPASS((priority) >= 0 && (priority) <= 255); \
(task)->ta_pending = 0; \
(task)->ta_priority = (priority); \
(task)->ta_flags = (flags); \