2012-02-23 16:23:34 +04:00
|
|
|
/*
|
|
|
|
* QEMU block layer thread pool
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2008
|
|
|
|
* Copyright Red Hat, Inc. 2012
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
* Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QEMU_THREAD_POOL_H
|
2016-06-29 16:29:06 +03:00
|
|
|
#define QEMU_THREAD_POOL_H
|
2012-02-23 16:23:34 +04:00
|
|
|
|
2022-12-21 16:35:49 +03:00
|
|
|
#include "block/aio.h"
|
2012-02-23 16:23:34 +04:00
|
|
|
|
2022-04-25 10:57:23 +03:00
|
|
|
#define THREAD_POOL_MAX_THREADS_DEFAULT 64
|
|
|
|
|
2012-02-23 16:23:34 +04:00
|
|
|
typedef int ThreadPoolFunc(void *opaque);
|
|
|
|
|
2013-03-07 16:41:46 +04:00
|
|
|
typedef struct ThreadPool ThreadPool;
|
|
|
|
|
|
|
|
ThreadPool *thread_pool_new(struct AioContext *ctx);
|
|
|
|
void thread_pool_free(ThreadPool *pool);
|
|
|
|
|
2023-02-03 16:17:30 +03:00
|
|
|
/*
|
|
|
|
* thread_pool_submit* API: submit I/O requests in the thread's
|
|
|
|
* current AioContext.
|
|
|
|
*/
|
2023-02-03 16:17:31 +03:00
|
|
|
BlockAIOCB *thread_pool_submit_aio(ThreadPoolFunc *func, void *arg,
|
|
|
|
BlockCompletionFunc *cb, void *opaque);
|
|
|
|
int coroutine_fn thread_pool_submit_co(ThreadPoolFunc *func, void *arg);
|
|
|
|
void thread_pool_submit(ThreadPoolFunc *func, void *arg);
|
2023-02-03 16:17:30 +03:00
|
|
|
|
2022-04-25 10:57:23 +03:00
|
|
|
void thread_pool_update_params(ThreadPool *pool, struct AioContext *ctx);
|
2012-02-23 16:23:34 +04:00
|
|
|
|
|
|
|
#endif
|