Refreshed patch for newer upstream context
This commit is contained in:
parent
96072c88e2
commit
d04d66d1c7
|
@ -0,0 +1,6 @@
|
|||
From: Brian Behlendorf <behlendorf1@llnl.gov>
|
||||
Subject: [PATCH] fix taskq
|
||||
|
||||
Don't ever sleep at interrupt time
|
||||
|
||||
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
|
|
@ -901,7 +901,7 @@ zio_taskq_dispatch(zio_t *zio, enum zio_taskq_type q)
|
|||
t = ZIO_TYPE_NULL;
|
||||
|
||||
(void) taskq_dispatch(zio->io_spa->spa_zio_taskq[t][q],
|
||||
(task_func_t *)zio_execute, zio, TQ_SLEEP);
|
||||
(task_func_t *)zio_execute, zio, TQ_NOSLEEP);
|
||||
}
|
||||
|
||||
static boolean_t
|
||||
|
|
Loading…
Reference in New Issue