Refreshed patch for newer upstream context

This commit is contained in:
Brian Behlendorf 2008-12-03 16:28:35 -08:00
parent 96072c88e2
commit d04d66d1c7
3 changed files with 8 additions and 1 deletions

1
.topdeps Normal file
View File

@ -0,0 +1 @@
master

6
.topmsg Normal file
View File

@ -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>

View File

@ -901,7 +901,7 @@ zio_taskq_dispatch(zio_t *zio, enum zio_taskq_type q)
t = ZIO_TYPE_NULL; t = ZIO_TYPE_NULL;
(void) taskq_dispatch(zio->io_spa->spa_zio_taskq[t][q], (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 static boolean_t