diff options
-rw-r--r-- | block/aio_task.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/block/aio_task.c b/block/aio_task.c index 88989fa..9bd17ea 100644 --- a/block/aio_task.c +++ b/block/aio_task.c @@ -98,6 +98,8 @@ AioTaskPool *coroutine_fn aio_task_pool_new(int max_busy_tasks) { AioTaskPool *pool = g_new0(AioTaskPool, 1); + assert(max_busy_tasks > 0); + pool->main_co = qemu_coroutine_self(); pool->max_busy_tasks = max_busy_tasks; |