Module Name:    src
Committed By:   hannken
Date:           Sat Jan 12 10:42:40 UTC 2019

Modified Files:
        src/external/cddl/osnet/sys/kern: taskq.c

Log Message:
Disable valid assertion "!(flags & TQ_NOQUEUE)" as "zfs send" triggers it.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/external/cddl/osnet/sys/kern/taskq.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/cddl/osnet/sys/kern/taskq.c
diff -u src/external/cddl/osnet/sys/kern/taskq.c:1.7 src/external/cddl/osnet/sys/kern/taskq.c:1.8
--- src/external/cddl/osnet/sys/kern/taskq.c:1.7	Mon May 28 21:05:09 2018
+++ src/external/cddl/osnet/sys/kern/taskq.c	Sat Jan 12 10:42:40 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: taskq.c,v 1.7 2018/05/28 21:05:09 chs Exp $	*/
+/*	$NetBSD: taskq.c,v 1.8 2019/01/12 10:42:40 hannken Exp $	*/
 
 /*
  * CDDL HEADER START
@@ -1001,7 +1001,9 @@ taskq_dispatch(taskq_t *tq, task_func_t 
 		/*
 		 * TQ_NOQUEUE flag can't be used with non-dynamic task queues.
 		 */
+#ifdef notyet
 		ASSERT(!(flags & TQ_NOQUEUE));
+#endif
 		/*
 		 * Enqueue the task to the underlying queue.
 		 */

Reply via email to