Home
last modified time | relevance | path

Searched refs:max_busy_tasks (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/block/
H A Daio_task.c32 int max_busy_tasks; member
42 assert(pool->busy_tasks < pool->max_busy_tasks); in aio_task_co()
70 assert(pool->busy_tasks < pool->max_busy_tasks); in aio_task_pool_wait_one()
75 if (pool->busy_tasks < pool->max_busy_tasks) { in aio_task_pool_wait_slot()
97 AioTaskPool *coroutine_fn aio_task_pool_new(int max_busy_tasks) in aio_task_pool_new() argument
101 assert(max_busy_tasks > 0); in aio_task_pool_new()
104 pool->max_busy_tasks = max_busy_tasks; in aio_task_pool_new()
/openbmc/qemu/include/block/
H A Daio_task.h37 AioTaskPool *coroutine_fn aio_task_pool_new(int max_busy_tasks);