xref: /openbmc/qemu/include/block/aio.h (revision d37d0e365afb6825a90d8356fc6adcc1f58f40f3)
1737e150eSPaolo Bonzini /*
2737e150eSPaolo Bonzini  * QEMU aio implementation
3737e150eSPaolo Bonzini  *
4737e150eSPaolo Bonzini  * Copyright IBM, Corp. 2008
5737e150eSPaolo Bonzini  *
6737e150eSPaolo Bonzini  * Authors:
7737e150eSPaolo Bonzini  *  Anthony Liguori   <aliguori@us.ibm.com>
8737e150eSPaolo Bonzini  *
9737e150eSPaolo Bonzini  * This work is licensed under the terms of the GNU GPL, version 2.  See
10737e150eSPaolo Bonzini  * the COPYING file in the top-level directory.
11737e150eSPaolo Bonzini  *
12737e150eSPaolo Bonzini  */
13737e150eSPaolo Bonzini 
14737e150eSPaolo Bonzini #ifndef QEMU_AIO_H
15737e150eSPaolo Bonzini #define QEMU_AIO_H
16737e150eSPaolo Bonzini 
1773fd282eSStefan Hajnoczi #ifdef CONFIG_LINUX_IO_URING
1873fd282eSStefan Hajnoczi #include <liburing.h>
1973fd282eSStefan Hajnoczi #endif
201de7afc9SPaolo Bonzini #include "qemu/queue.h"
211de7afc9SPaolo Bonzini #include "qemu/event_notifier.h"
22dcc772e2SLiu Ping Fan #include "qemu/thread.h"
23dae21b98SAlex Bligh #include "qemu/timer.h"
24737e150eSPaolo Bonzini 
257c84b1b8SMarkus Armbruster typedef struct BlockAIOCB BlockAIOCB;
26097310b5SMarkus Armbruster typedef void BlockCompletionFunc(void *opaque, int ret);
27737e150eSPaolo Bonzini 
28737e150eSPaolo Bonzini typedef struct AIOCBInfo {
297c84b1b8SMarkus Armbruster     void (*cancel_async)(BlockAIOCB *acb);
307c84b1b8SMarkus Armbruster     AioContext *(*get_aio_context)(BlockAIOCB *acb);
31737e150eSPaolo Bonzini     size_t aiocb_size;
32737e150eSPaolo Bonzini } AIOCBInfo;
33737e150eSPaolo Bonzini 
347c84b1b8SMarkus Armbruster struct BlockAIOCB {
35737e150eSPaolo Bonzini     const AIOCBInfo *aiocb_info;
36737e150eSPaolo Bonzini     BlockDriverState *bs;
37097310b5SMarkus Armbruster     BlockCompletionFunc *cb;
38737e150eSPaolo Bonzini     void *opaque;
39f197fe2bSFam Zheng     int refcnt;
40737e150eSPaolo Bonzini };
41737e150eSPaolo Bonzini 
42737e150eSPaolo Bonzini void *qemu_aio_get(const AIOCBInfo *aiocb_info, BlockDriverState *bs,
43097310b5SMarkus Armbruster                    BlockCompletionFunc *cb, void *opaque);
448007429aSFam Zheng void qemu_aio_unref(void *p);
45f197fe2bSFam Zheng void qemu_aio_ref(void *p);
46737e150eSPaolo Bonzini 
47737e150eSPaolo Bonzini typedef struct AioHandler AioHandler;
484749079cSStefan Hajnoczi typedef QLIST_HEAD(, AioHandler) AioHandlerList;
49737e150eSPaolo Bonzini typedef void QEMUBHFunc(void *opaque);
50f6a51c84SStefan Hajnoczi typedef bool AioPollFn(void *opaque);
51737e150eSPaolo Bonzini typedef void IOHandler(void *opaque);
52737e150eSPaolo Bonzini 
530c330a73SPaolo Bonzini struct Coroutine;
540187f5c9SPaolo Bonzini struct ThreadPool;
550187f5c9SPaolo Bonzini struct LinuxAioState;
566663a0a3SAarushi Mehta struct LuringState;
570187f5c9SPaolo Bonzini 
58aa38e19fSStefan Hajnoczi /* Is polling disabled? */
59aa38e19fSStefan Hajnoczi bool aio_poll_disabled(AioContext *ctx);
60aa38e19fSStefan Hajnoczi 
611f050a46SStefan Hajnoczi /* Callbacks for file descriptor monitoring implementations */
621f050a46SStefan Hajnoczi typedef struct {
631f050a46SStefan Hajnoczi     /*
641f050a46SStefan Hajnoczi      * update:
651f050a46SStefan Hajnoczi      * @ctx: the AioContext
66b321051cSStefan Hajnoczi      * @old_node: the existing handler or NULL if this file descriptor is being
67b321051cSStefan Hajnoczi      *            monitored for the first time
68b321051cSStefan Hajnoczi      * @new_node: the new handler or NULL if this file descriptor is being
69b321051cSStefan Hajnoczi      *            removed
701f050a46SStefan Hajnoczi      *
71b321051cSStefan Hajnoczi      * Add/remove/modify a monitored file descriptor.
721f050a46SStefan Hajnoczi      *
731f050a46SStefan Hajnoczi      * Called with ctx->list_lock acquired.
741f050a46SStefan Hajnoczi      */
75b321051cSStefan Hajnoczi     void (*update)(AioContext *ctx, AioHandler *old_node, AioHandler *new_node);
761f050a46SStefan Hajnoczi 
771f050a46SStefan Hajnoczi     /*
781f050a46SStefan Hajnoczi      * wait:
791f050a46SStefan Hajnoczi      * @ctx: the AioContext
801f050a46SStefan Hajnoczi      * @ready_list: list for handlers that become ready
811f050a46SStefan Hajnoczi      * @timeout: maximum duration to wait, in nanoseconds
821f050a46SStefan Hajnoczi      *
831f050a46SStefan Hajnoczi      * Wait for file descriptors to become ready and place them on ready_list.
841f050a46SStefan Hajnoczi      *
851f050a46SStefan Hajnoczi      * Called with ctx->list_lock incremented but not locked.
861f050a46SStefan Hajnoczi      *
871f050a46SStefan Hajnoczi      * Returns: number of ready file descriptors.
881f050a46SStefan Hajnoczi      */
891f050a46SStefan Hajnoczi     int (*wait)(AioContext *ctx, AioHandlerList *ready_list, int64_t timeout);
90aa38e19fSStefan Hajnoczi 
91aa38e19fSStefan Hajnoczi     /*
92aa38e19fSStefan Hajnoczi      * need_wait:
93aa38e19fSStefan Hajnoczi      * @ctx: the AioContext
94aa38e19fSStefan Hajnoczi      *
95aa38e19fSStefan Hajnoczi      * Tell aio_poll() when to stop userspace polling early because ->wait()
96aa38e19fSStefan Hajnoczi      * has fds ready.
97aa38e19fSStefan Hajnoczi      *
98aa38e19fSStefan Hajnoczi      * File descriptor monitoring implementations that cannot poll fd readiness
99aa38e19fSStefan Hajnoczi      * from userspace should use aio_poll_disabled() here.  This ensures that
100aa38e19fSStefan Hajnoczi      * file descriptors are not starved by handlers that frequently make
101aa38e19fSStefan Hajnoczi      * progress via userspace polling.
102aa38e19fSStefan Hajnoczi      *
103aa38e19fSStefan Hajnoczi      * Returns: true if ->wait() should be called, false otherwise.
104aa38e19fSStefan Hajnoczi      */
105aa38e19fSStefan Hajnoczi     bool (*need_wait)(AioContext *ctx);
1061f050a46SStefan Hajnoczi } FDMonOps;
1071f050a46SStefan Hajnoczi 
1088c6b0356SStefan Hajnoczi /*
1098c6b0356SStefan Hajnoczi  * Each aio_bh_poll() call carves off a slice of the BH list, so that newly
1108c6b0356SStefan Hajnoczi  * scheduled BHs are not processed until the next aio_bh_poll() call.  All
1118c6b0356SStefan Hajnoczi  * active aio_bh_poll() calls chain their slices together in a list, so that
1128c6b0356SStefan Hajnoczi  * nested aio_bh_poll() calls process all scheduled bottom halves.
1138c6b0356SStefan Hajnoczi  */
1148c6b0356SStefan Hajnoczi typedef QSLIST_HEAD(, QEMUBH) BHList;
1158c6b0356SStefan Hajnoczi typedef struct BHListSlice BHListSlice;
1168c6b0356SStefan Hajnoczi struct BHListSlice {
1178c6b0356SStefan Hajnoczi     BHList bh_list;
1188c6b0356SStefan Hajnoczi     QSIMPLEQ_ENTRY(BHListSlice) next;
1198c6b0356SStefan Hajnoczi };
1208c6b0356SStefan Hajnoczi 
12173fd282eSStefan Hajnoczi typedef QSLIST_HEAD(, AioHandler) AioHandlerSList;
12273fd282eSStefan Hajnoczi 
1236a1751b7SAlex Bligh struct AioContext {
124737e150eSPaolo Bonzini     GSource source;
125737e150eSPaolo Bonzini 
1267c690fd1SPaolo Bonzini     /* Used by AioContext users to protect from multi-threaded access.  */
1273fe71223SPaolo Bonzini     QemuRecMutex lock;
12898563fc3SStefan Hajnoczi 
1297c690fd1SPaolo Bonzini     /* The list of registered AIO handlers.  Protected by ctx->list_lock. */
1304749079cSStefan Hajnoczi     AioHandlerList aio_handlers;
1314749079cSStefan Hajnoczi 
1324749079cSStefan Hajnoczi     /* The list of AIO handlers to be deleted.  Protected by ctx->list_lock. */
1334749079cSStefan Hajnoczi     AioHandlerList deleted_aio_handlers;
134737e150eSPaolo Bonzini 
135eabc9779SPaolo Bonzini     /* Used to avoid unnecessary event_notifier_set calls in aio_notify;
136eabc9779SPaolo Bonzini      * accessed with atomic primitives.  If this field is 0, everything
137eabc9779SPaolo Bonzini      * (file descriptors, bottom halves, timers) will be re-evaluated
138eabc9779SPaolo Bonzini      * before the next blocking poll(), thus the event_notifier_set call
139eabc9779SPaolo Bonzini      * can be skipped.  If it is non-zero, you may need to wake up a
140eabc9779SPaolo Bonzini      * concurrent aio_poll or the glib main event loop, making
141eabc9779SPaolo Bonzini      * event_notifier_set necessary.
142eabc9779SPaolo Bonzini      *
143eabc9779SPaolo Bonzini      * Bit 0 is reserved for GSource usage of the AioContext, and is 1
14454a16a63SCao jin      * between a call to aio_ctx_prepare and the next call to aio_ctx_check.
145eabc9779SPaolo Bonzini      * Bits 1-31 simply count the number of active calls to aio_poll
146eabc9779SPaolo Bonzini      * that are in the prepare or poll phase.
147eabc9779SPaolo Bonzini      *
148eabc9779SPaolo Bonzini      * The GSource and aio_poll must use a different mechanism because
149eabc9779SPaolo Bonzini      * there is no certainty that a call to GSource's prepare callback
150eabc9779SPaolo Bonzini      * (via g_main_context_prepare) is indeed followed by check and
151eabc9779SPaolo Bonzini      * dispatch.  It's not clear whether this would be a bug, but let's
152eabc9779SPaolo Bonzini      * play safe and allow it---it will just cause extra calls to
153eabc9779SPaolo Bonzini      * event_notifier_set until the next call to dispatch.
154eabc9779SPaolo Bonzini      *
155eabc9779SPaolo Bonzini      * Instead, the aio_poll calls include both the prepare and the
156eabc9779SPaolo Bonzini      * dispatch phase, hence a simple counter is enough for them.
1570ceb849bSPaolo Bonzini      */
158eabc9779SPaolo Bonzini     uint32_t notify_me;
1590ceb849bSPaolo Bonzini 
1607c690fd1SPaolo Bonzini     /* A lock to protect between QEMUBH and AioHandler adders and deleter,
1617c690fd1SPaolo Bonzini      * and to ensure that no callbacks are removed while we're walking and
1627c690fd1SPaolo Bonzini      * dispatching them.
163d7c99a12SPaolo Bonzini      */
164d7c99a12SPaolo Bonzini     QemuLockCnt list_lock;
1650ceb849bSPaolo Bonzini 
1668c6b0356SStefan Hajnoczi     /* Bottom Halves pending aio_bh_poll() processing */
1678c6b0356SStefan Hajnoczi     BHList bh_list;
1688c6b0356SStefan Hajnoczi 
1698c6b0356SStefan Hajnoczi     /* Chained BH list slices for each nested aio_bh_poll() call */
1708c6b0356SStefan Hajnoczi     QSIMPLEQ_HEAD(, BHListSlice) bh_slice_list;
171737e150eSPaolo Bonzini 
17205e514b1SPaolo Bonzini     /* Used by aio_notify.
17305e514b1SPaolo Bonzini      *
17405e514b1SPaolo Bonzini      * "notified" is used to avoid expensive event_notifier_test_and_clear
17505e514b1SPaolo Bonzini      * calls.  When it is clear, the EventNotifier is clear, or one thread
17605e514b1SPaolo Bonzini      * is going to clear "notified" before processing more events.  False
17705e514b1SPaolo Bonzini      * positives are possible, i.e. "notified" could be set even though the
17805e514b1SPaolo Bonzini      * EventNotifier is clear.
17905e514b1SPaolo Bonzini      *
18005e514b1SPaolo Bonzini      * Note that event_notifier_set *cannot* be optimized the same way.  For
18105e514b1SPaolo Bonzini      * more information on the problem that would result, see "#ifdef BUG2"
18205e514b1SPaolo Bonzini      * in the docs/aio_notify_accept.promela formal model.
18305e514b1SPaolo Bonzini      */
18405e514b1SPaolo Bonzini     bool notified;
185737e150eSPaolo Bonzini     EventNotifier notifier;
1866b5f8762SStefan Hajnoczi 
1870c330a73SPaolo Bonzini     QSLIST_HEAD(, Coroutine) scheduled_coroutines;
1880c330a73SPaolo Bonzini     QEMUBH *co_schedule_bh;
1890c330a73SPaolo Bonzini 
1907c690fd1SPaolo Bonzini     /* Thread pool for performing work and receiving completion callbacks.
1917c690fd1SPaolo Bonzini      * Has its own locking.
1927c690fd1SPaolo Bonzini      */
1939b34277dSStefan Hajnoczi     struct ThreadPool *thread_pool;
194dae21b98SAlex Bligh 
1950187f5c9SPaolo Bonzini #ifdef CONFIG_LINUX_AIO
1966663a0a3SAarushi Mehta     /*
1976663a0a3SAarushi Mehta      * State for native Linux AIO.  Uses aio_context_acquire/release for
1980187f5c9SPaolo Bonzini      * locking.
1990187f5c9SPaolo Bonzini      */
2000187f5c9SPaolo Bonzini     struct LinuxAioState *linux_aio;
2010187f5c9SPaolo Bonzini #endif
2026663a0a3SAarushi Mehta #ifdef CONFIG_LINUX_IO_URING
2036663a0a3SAarushi Mehta     /*
2046663a0a3SAarushi Mehta      * State for Linux io_uring.  Uses aio_context_acquire/release for
2056663a0a3SAarushi Mehta      * locking.
2066663a0a3SAarushi Mehta      */
2076663a0a3SAarushi Mehta     struct LuringState *linux_io_uring;
20873fd282eSStefan Hajnoczi 
20973fd282eSStefan Hajnoczi     /* State for file descriptor monitoring using Linux io_uring */
21073fd282eSStefan Hajnoczi     struct io_uring fdmon_io_uring;
21173fd282eSStefan Hajnoczi     AioHandlerSList submit_list;
2126663a0a3SAarushi Mehta #endif
2130187f5c9SPaolo Bonzini 
2147c690fd1SPaolo Bonzini     /* TimerLists for calling timers - one per clock type.  Has its own
2157c690fd1SPaolo Bonzini      * locking.
2167c690fd1SPaolo Bonzini      */
217dae21b98SAlex Bligh     QEMUTimerListGroup tlg;
218c1e1e5faSFam Zheng 
219c1e1e5faSFam Zheng     int external_disable_cnt;
220fbe3fc5cSFam Zheng 
2214a1cba38SStefan Hajnoczi     /* Number of AioHandlers without .io_poll() */
2224a1cba38SStefan Hajnoczi     int poll_disable_cnt;
2234a1cba38SStefan Hajnoczi 
22482a41186SStefan Hajnoczi     /* Polling mode parameters */
22582a41186SStefan Hajnoczi     int64_t poll_ns;        /* current polling time in nanoseconds */
22682a41186SStefan Hajnoczi     int64_t poll_max_ns;    /* maximum polling time in nanoseconds */
22782a41186SStefan Hajnoczi     int64_t poll_grow;      /* polling time growth factor */
22882a41186SStefan Hajnoczi     int64_t poll_shrink;    /* polling time shrink factor */
2294a1cba38SStefan Hajnoczi 
230*d37d0e36SStefan Hajnoczi     /*
231*d37d0e36SStefan Hajnoczi      * List of handlers participating in userspace polling.  Protected by
232*d37d0e36SStefan Hajnoczi      * ctx->list_lock.  Iterated and modified mostly by the event loop thread
233*d37d0e36SStefan Hajnoczi      * from aio_poll() with ctx->list_lock incremented.  aio_set_fd_handler()
234*d37d0e36SStefan Hajnoczi      * only touches the list to delete nodes if ctx->list_lock's count is zero.
235*d37d0e36SStefan Hajnoczi      */
236*d37d0e36SStefan Hajnoczi     AioHandlerList poll_aio_handlers;
237*d37d0e36SStefan Hajnoczi 
238684e508cSStefan Hajnoczi     /* Are we in polling mode or monitoring file descriptors? */
239684e508cSStefan Hajnoczi     bool poll_started;
240684e508cSStefan Hajnoczi 
241fbe3fc5cSFam Zheng     /* epoll(7) state used when built with CONFIG_EPOLL */
242fbe3fc5cSFam Zheng     int epollfd;
2431f050a46SStefan Hajnoczi 
2441f050a46SStefan Hajnoczi     const FDMonOps *fdmon_ops;
2456a1751b7SAlex Bligh };
246737e150eSPaolo Bonzini 
247737e150eSPaolo Bonzini /**
248737e150eSPaolo Bonzini  * aio_context_new: Allocate a new AioContext.
249737e150eSPaolo Bonzini  *
250737e150eSPaolo Bonzini  * AioContext provide a mini event-loop that can be waited on synchronously.
251737e150eSPaolo Bonzini  * They also provide bottom halves, a service to execute a piece of code
252737e150eSPaolo Bonzini  * as soon as possible.
253737e150eSPaolo Bonzini  */
2542f78e491SChrysostomos Nanakos AioContext *aio_context_new(Error **errp);
255737e150eSPaolo Bonzini 
256737e150eSPaolo Bonzini /**
257737e150eSPaolo Bonzini  * aio_context_ref:
258737e150eSPaolo Bonzini  * @ctx: The AioContext to operate on.
259737e150eSPaolo Bonzini  *
260737e150eSPaolo Bonzini  * Add a reference to an AioContext.
261737e150eSPaolo Bonzini  */
262737e150eSPaolo Bonzini void aio_context_ref(AioContext *ctx);
263737e150eSPaolo Bonzini 
264737e150eSPaolo Bonzini /**
265737e150eSPaolo Bonzini  * aio_context_unref:
266737e150eSPaolo Bonzini  * @ctx: The AioContext to operate on.
267737e150eSPaolo Bonzini  *
268737e150eSPaolo Bonzini  * Drop a reference to an AioContext.
269737e150eSPaolo Bonzini  */
270737e150eSPaolo Bonzini void aio_context_unref(AioContext *ctx);
271737e150eSPaolo Bonzini 
27298563fc3SStefan Hajnoczi /* Take ownership of the AioContext.  If the AioContext will be shared between
27349110174SPaolo Bonzini  * threads, and a thread does not want to be interrupted, it will have to
27449110174SPaolo Bonzini  * take ownership around calls to aio_poll().  Otherwise, aio_poll()
27549110174SPaolo Bonzini  * automatically takes care of calling aio_context_acquire and
27649110174SPaolo Bonzini  * aio_context_release.
27798563fc3SStefan Hajnoczi  *
2787c690fd1SPaolo Bonzini  * Note that this is separate from bdrv_drained_begin/bdrv_drained_end.  A
2797c690fd1SPaolo Bonzini  * thread still has to call those to avoid being interrupted by the guest.
2807c690fd1SPaolo Bonzini  *
2817c690fd1SPaolo Bonzini  * Bottom halves, timers and callbacks can be created or removed without
2827c690fd1SPaolo Bonzini  * acquiring the AioContext.
28398563fc3SStefan Hajnoczi  */
28498563fc3SStefan Hajnoczi void aio_context_acquire(AioContext *ctx);
28598563fc3SStefan Hajnoczi 
28698563fc3SStefan Hajnoczi /* Relinquish ownership of the AioContext. */
28798563fc3SStefan Hajnoczi void aio_context_release(AioContext *ctx);
28898563fc3SStefan Hajnoczi 
289737e150eSPaolo Bonzini /**
2905b8bb359SPaolo Bonzini  * aio_bh_schedule_oneshot: Allocate a new bottom half structure that will run
2915b8bb359SPaolo Bonzini  * only once and as soon as possible.
2925b8bb359SPaolo Bonzini  */
2935b8bb359SPaolo Bonzini void aio_bh_schedule_oneshot(AioContext *ctx, QEMUBHFunc *cb, void *opaque);
2945b8bb359SPaolo Bonzini 
2955b8bb359SPaolo Bonzini /**
296737e150eSPaolo Bonzini  * aio_bh_new: Allocate a new bottom half structure.
297737e150eSPaolo Bonzini  *
298737e150eSPaolo Bonzini  * Bottom halves are lightweight callbacks whose invocation is guaranteed
299737e150eSPaolo Bonzini  * to be wait-free, thread-safe and signal-safe.  The #QEMUBH structure
300737e150eSPaolo Bonzini  * is opaque and must be allocated prior to its use.
301737e150eSPaolo Bonzini  */
302737e150eSPaolo Bonzini QEMUBH *aio_bh_new(AioContext *ctx, QEMUBHFunc *cb, void *opaque);
303737e150eSPaolo Bonzini 
304737e150eSPaolo Bonzini /**
305737e150eSPaolo Bonzini  * aio_notify: Force processing of pending events.
306737e150eSPaolo Bonzini  *
307737e150eSPaolo Bonzini  * Similar to signaling a condition variable, aio_notify forces
308722f8d90SYaowei Bai  * aio_poll to exit, so that the next call will re-examine pending events.
309722f8d90SYaowei Bai  * The caller of aio_notify will usually call aio_poll again very soon,
310737e150eSPaolo Bonzini  * or go through another iteration of the GLib main loop.  Hence, aio_notify
311737e150eSPaolo Bonzini  * also has the side effect of recalculating the sets of file descriptors
312737e150eSPaolo Bonzini  * that the main loop waits for.
313737e150eSPaolo Bonzini  *
314737e150eSPaolo Bonzini  * Calling aio_notify is rarely necessary, because for example scheduling
315737e150eSPaolo Bonzini  * a bottom half calls it already.
316737e150eSPaolo Bonzini  */
317737e150eSPaolo Bonzini void aio_notify(AioContext *ctx);
318737e150eSPaolo Bonzini 
319737e150eSPaolo Bonzini /**
32005e514b1SPaolo Bonzini  * aio_notify_accept: Acknowledge receiving an aio_notify.
32105e514b1SPaolo Bonzini  *
32205e514b1SPaolo Bonzini  * aio_notify() uses an EventNotifier in order to wake up a sleeping
32305e514b1SPaolo Bonzini  * aio_poll() or g_main_context_iteration().  Calls to aio_notify() are
32405e514b1SPaolo Bonzini  * usually rare, but the AioContext has to clear the EventNotifier on
32505e514b1SPaolo Bonzini  * every aio_poll() or g_main_context_iteration() in order to avoid
32605e514b1SPaolo Bonzini  * busy waiting.  This event_notifier_test_and_clear() cannot be done
32705e514b1SPaolo Bonzini  * using the usual aio_context_set_event_notifier(), because it must
32805e514b1SPaolo Bonzini  * be done before processing all events (file descriptors, bottom halves,
32905e514b1SPaolo Bonzini  * timers).
33005e514b1SPaolo Bonzini  *
33105e514b1SPaolo Bonzini  * aio_notify_accept() is an optimized event_notifier_test_and_clear()
33205e514b1SPaolo Bonzini  * that is specific to an AioContext's notifier; it is used internally
33305e514b1SPaolo Bonzini  * to clear the EventNotifier only if aio_notify() had been called.
33405e514b1SPaolo Bonzini  */
33505e514b1SPaolo Bonzini void aio_notify_accept(AioContext *ctx);
33605e514b1SPaolo Bonzini 
33705e514b1SPaolo Bonzini /**
338df281b80SPavel Dovgalyuk  * aio_bh_call: Executes callback function of the specified BH.
339df281b80SPavel Dovgalyuk  */
340df281b80SPavel Dovgalyuk void aio_bh_call(QEMUBH *bh);
341df281b80SPavel Dovgalyuk 
342df281b80SPavel Dovgalyuk /**
343737e150eSPaolo Bonzini  * aio_bh_poll: Poll bottom halves for an AioContext.
344737e150eSPaolo Bonzini  *
345737e150eSPaolo Bonzini  * These are internal functions used by the QEMU main loop.
346dcc772e2SLiu Ping Fan  * And notice that multiple occurrences of aio_bh_poll cannot
347dcc772e2SLiu Ping Fan  * be called concurrently
348737e150eSPaolo Bonzini  */
349737e150eSPaolo Bonzini int aio_bh_poll(AioContext *ctx);
350737e150eSPaolo Bonzini 
351737e150eSPaolo Bonzini /**
352737e150eSPaolo Bonzini  * qemu_bh_schedule: Schedule a bottom half.
353737e150eSPaolo Bonzini  *
354737e150eSPaolo Bonzini  * Scheduling a bottom half interrupts the main loop and causes the
355737e150eSPaolo Bonzini  * execution of the callback that was passed to qemu_bh_new.
356737e150eSPaolo Bonzini  *
357737e150eSPaolo Bonzini  * Bottom halves that are scheduled from a bottom half handler are instantly
358737e150eSPaolo Bonzini  * invoked.  This can create an infinite loop if a bottom half handler
359737e150eSPaolo Bonzini  * schedules itself.
360737e150eSPaolo Bonzini  *
361737e150eSPaolo Bonzini  * @bh: The bottom half to be scheduled.
362737e150eSPaolo Bonzini  */
363737e150eSPaolo Bonzini void qemu_bh_schedule(QEMUBH *bh);
364737e150eSPaolo Bonzini 
365737e150eSPaolo Bonzini /**
366737e150eSPaolo Bonzini  * qemu_bh_cancel: Cancel execution of a bottom half.
367737e150eSPaolo Bonzini  *
368737e150eSPaolo Bonzini  * Canceling execution of a bottom half undoes the effect of calls to
369737e150eSPaolo Bonzini  * qemu_bh_schedule without freeing its resources yet.  While cancellation
370737e150eSPaolo Bonzini  * itself is also wait-free and thread-safe, it can of course race with the
371737e150eSPaolo Bonzini  * loop that executes bottom halves unless you are holding the iothread
372737e150eSPaolo Bonzini  * mutex.  This makes it mostly useless if you are not holding the mutex.
373737e150eSPaolo Bonzini  *
374737e150eSPaolo Bonzini  * @bh: The bottom half to be canceled.
375737e150eSPaolo Bonzini  */
376737e150eSPaolo Bonzini void qemu_bh_cancel(QEMUBH *bh);
377737e150eSPaolo Bonzini 
378737e150eSPaolo Bonzini /**
379737e150eSPaolo Bonzini  *qemu_bh_delete: Cancel execution of a bottom half and free its resources.
380737e150eSPaolo Bonzini  *
381737e150eSPaolo Bonzini  * Deleting a bottom half frees the memory that was allocated for it by
382737e150eSPaolo Bonzini  * qemu_bh_new.  It also implies canceling the bottom half if it was
383737e150eSPaolo Bonzini  * scheduled.
384dcc772e2SLiu Ping Fan  * This func is async. The bottom half will do the delete action at the finial
385dcc772e2SLiu Ping Fan  * end.
386737e150eSPaolo Bonzini  *
387737e150eSPaolo Bonzini  * @bh: The bottom half to be deleted.
388737e150eSPaolo Bonzini  */
389737e150eSPaolo Bonzini void qemu_bh_delete(QEMUBH *bh);
390737e150eSPaolo Bonzini 
391737e150eSPaolo Bonzini /* Return whether there are any pending callbacks from the GSource
392a3462c65SPaolo Bonzini  * attached to the AioContext, before g_poll is invoked.
393a3462c65SPaolo Bonzini  *
394a3462c65SPaolo Bonzini  * This is used internally in the implementation of the GSource.
395a3462c65SPaolo Bonzini  */
396a3462c65SPaolo Bonzini bool aio_prepare(AioContext *ctx);
397a3462c65SPaolo Bonzini 
398a3462c65SPaolo Bonzini /* Return whether there are any pending callbacks from the GSource
399a3462c65SPaolo Bonzini  * attached to the AioContext, after g_poll is invoked.
400737e150eSPaolo Bonzini  *
401737e150eSPaolo Bonzini  * This is used internally in the implementation of the GSource.
402737e150eSPaolo Bonzini  */
403737e150eSPaolo Bonzini bool aio_pending(AioContext *ctx);
404737e150eSPaolo Bonzini 
405e4c7e2d1SPaolo Bonzini /* Dispatch any pending callbacks from the GSource attached to the AioContext.
406e4c7e2d1SPaolo Bonzini  *
407e4c7e2d1SPaolo Bonzini  * This is used internally in the implementation of the GSource.
408e4c7e2d1SPaolo Bonzini  */
409a153bf52SPaolo Bonzini void aio_dispatch(AioContext *ctx);
410e4c7e2d1SPaolo Bonzini 
411737e150eSPaolo Bonzini /* Progress in completing AIO work to occur.  This can issue new pending
412737e150eSPaolo Bonzini  * aio as a result of executing I/O completion or bh callbacks.
413737e150eSPaolo Bonzini  *
414acfb23adSPaolo Bonzini  * Return whether any progress was made by executing AIO or bottom half
415acfb23adSPaolo Bonzini  * handlers.  If @blocking == true, this should always be true except
416acfb23adSPaolo Bonzini  * if someone called aio_notify.
417737e150eSPaolo Bonzini  *
418737e150eSPaolo Bonzini  * If there are no pending bottom halves, but there are pending AIO
419737e150eSPaolo Bonzini  * operations, it may not be possible to make any progress without
420737e150eSPaolo Bonzini  * blocking.  If @blocking is true, this function will wait until one
421737e150eSPaolo Bonzini  * or more AIO events have completed, to ensure something has moved
422737e150eSPaolo Bonzini  * before returning.
423737e150eSPaolo Bonzini  */
424737e150eSPaolo Bonzini bool aio_poll(AioContext *ctx, bool blocking);
425737e150eSPaolo Bonzini 
426737e150eSPaolo Bonzini /* Register a file descriptor and associated callbacks.  Behaves very similarly
4276484e422SFam Zheng  * to qemu_set_fd_handler.  Unlike qemu_set_fd_handler, these callbacks will
42887f68d31SPaolo Bonzini  * be invoked when using aio_poll().
429737e150eSPaolo Bonzini  *
430737e150eSPaolo Bonzini  * Code that invokes AIO completion functions should rely on this function
431737e150eSPaolo Bonzini  * instead of qemu_set_fd_handler[2].
432737e150eSPaolo Bonzini  */
433737e150eSPaolo Bonzini void aio_set_fd_handler(AioContext *ctx,
434737e150eSPaolo Bonzini                         int fd,
435dca21ef2SFam Zheng                         bool is_external,
436737e150eSPaolo Bonzini                         IOHandler *io_read,
437737e150eSPaolo Bonzini                         IOHandler *io_write,
438f6a51c84SStefan Hajnoczi                         AioPollFn *io_poll,
439737e150eSPaolo Bonzini                         void *opaque);
440737e150eSPaolo Bonzini 
441684e508cSStefan Hajnoczi /* Set polling begin/end callbacks for a file descriptor that has already been
442684e508cSStefan Hajnoczi  * registered with aio_set_fd_handler.  Do nothing if the file descriptor is
443684e508cSStefan Hajnoczi  * not registered.
444684e508cSStefan Hajnoczi  */
445684e508cSStefan Hajnoczi void aio_set_fd_poll(AioContext *ctx, int fd,
446684e508cSStefan Hajnoczi                      IOHandler *io_poll_begin,
447684e508cSStefan Hajnoczi                      IOHandler *io_poll_end);
448684e508cSStefan Hajnoczi 
449737e150eSPaolo Bonzini /* Register an event notifier and associated callbacks.  Behaves very similarly
450737e150eSPaolo Bonzini  * to event_notifier_set_handler.  Unlike event_notifier_set_handler, these callbacks
45187f68d31SPaolo Bonzini  * will be invoked when using aio_poll().
452737e150eSPaolo Bonzini  *
453737e150eSPaolo Bonzini  * Code that invokes AIO completion functions should rely on this function
454737e150eSPaolo Bonzini  * instead of event_notifier_set_handler.
455737e150eSPaolo Bonzini  */
456737e150eSPaolo Bonzini void aio_set_event_notifier(AioContext *ctx,
457737e150eSPaolo Bonzini                             EventNotifier *notifier,
458dca21ef2SFam Zheng                             bool is_external,
459f6a51c84SStefan Hajnoczi                             EventNotifierHandler *io_read,
460f6a51c84SStefan Hajnoczi                             AioPollFn *io_poll);
461737e150eSPaolo Bonzini 
462684e508cSStefan Hajnoczi /* Set polling begin/end callbacks for an event notifier that has already been
463684e508cSStefan Hajnoczi  * registered with aio_set_event_notifier.  Do nothing if the event notifier is
464684e508cSStefan Hajnoczi  * not registered.
465684e508cSStefan Hajnoczi  */
466684e508cSStefan Hajnoczi void aio_set_event_notifier_poll(AioContext *ctx,
467684e508cSStefan Hajnoczi                                  EventNotifier *notifier,
468684e508cSStefan Hajnoczi                                  EventNotifierHandler *io_poll_begin,
469684e508cSStefan Hajnoczi                                  EventNotifierHandler *io_poll_end);
470684e508cSStefan Hajnoczi 
471737e150eSPaolo Bonzini /* Return a GSource that lets the main loop poll the file descriptors attached
472737e150eSPaolo Bonzini  * to this AioContext.
473737e150eSPaolo Bonzini  */
474737e150eSPaolo Bonzini GSource *aio_get_g_source(AioContext *ctx);
475737e150eSPaolo Bonzini 
4769b34277dSStefan Hajnoczi /* Return the ThreadPool bound to this AioContext */
4779b34277dSStefan Hajnoczi struct ThreadPool *aio_get_thread_pool(AioContext *ctx);
4789b34277dSStefan Hajnoczi 
479ed6e2161SNishanth Aravamudan /* Setup the LinuxAioState bound to this AioContext */
480ed6e2161SNishanth Aravamudan struct LinuxAioState *aio_setup_linux_aio(AioContext *ctx, Error **errp);
481ed6e2161SNishanth Aravamudan 
4820187f5c9SPaolo Bonzini /* Return the LinuxAioState bound to this AioContext */
4830187f5c9SPaolo Bonzini struct LinuxAioState *aio_get_linux_aio(AioContext *ctx);
4840187f5c9SPaolo Bonzini 
4856663a0a3SAarushi Mehta /* Setup the LuringState bound to this AioContext */
4866663a0a3SAarushi Mehta struct LuringState *aio_setup_linux_io_uring(AioContext *ctx, Error **errp);
4876663a0a3SAarushi Mehta 
4886663a0a3SAarushi Mehta /* Return the LuringState bound to this AioContext */
4896663a0a3SAarushi Mehta struct LuringState *aio_get_linux_io_uring(AioContext *ctx);
4904e29e831SAlex Bligh /**
49189a603a0SArtem Pisarenko  * aio_timer_new_with_attrs:
49289a603a0SArtem Pisarenko  * @ctx: the aio context
49389a603a0SArtem Pisarenko  * @type: the clock type
49489a603a0SArtem Pisarenko  * @scale: the scale
49589a603a0SArtem Pisarenko  * @attributes: 0, or one to multiple OR'ed QEMU_TIMER_ATTR_<id> values
49689a603a0SArtem Pisarenko  *              to assign
49789a603a0SArtem Pisarenko  * @cb: the callback to call on timer expiry
49889a603a0SArtem Pisarenko  * @opaque: the opaque pointer to pass to the callback
49989a603a0SArtem Pisarenko  *
50089a603a0SArtem Pisarenko  * Allocate a new timer (with attributes) attached to the context @ctx.
50189a603a0SArtem Pisarenko  * The function is responsible for memory allocation.
50289a603a0SArtem Pisarenko  *
50389a603a0SArtem Pisarenko  * The preferred interface is aio_timer_init or aio_timer_init_with_attrs.
50489a603a0SArtem Pisarenko  * Use that unless you really need dynamic memory allocation.
50589a603a0SArtem Pisarenko  *
50689a603a0SArtem Pisarenko  * Returns: a pointer to the new timer
50789a603a0SArtem Pisarenko  */
50889a603a0SArtem Pisarenko static inline QEMUTimer *aio_timer_new_with_attrs(AioContext *ctx,
50989a603a0SArtem Pisarenko                                                   QEMUClockType type,
51089a603a0SArtem Pisarenko                                                   int scale, int attributes,
51189a603a0SArtem Pisarenko                                                   QEMUTimerCB *cb, void *opaque)
51289a603a0SArtem Pisarenko {
51389a603a0SArtem Pisarenko     return timer_new_full(&ctx->tlg, type, scale, attributes, cb, opaque);
51489a603a0SArtem Pisarenko }
51589a603a0SArtem Pisarenko 
51689a603a0SArtem Pisarenko /**
5174e29e831SAlex Bligh  * aio_timer_new:
5184e29e831SAlex Bligh  * @ctx: the aio context
5194e29e831SAlex Bligh  * @type: the clock type
5204e29e831SAlex Bligh  * @scale: the scale
5214e29e831SAlex Bligh  * @cb: the callback to call on timer expiry
5224e29e831SAlex Bligh  * @opaque: the opaque pointer to pass to the callback
5234e29e831SAlex Bligh  *
5244e29e831SAlex Bligh  * Allocate a new timer attached to the context @ctx.
52589a603a0SArtem Pisarenko  * See aio_timer_new_with_attrs for details.
5264e29e831SAlex Bligh  *
5274e29e831SAlex Bligh  * Returns: a pointer to the new timer
5284e29e831SAlex Bligh  */
5294e29e831SAlex Bligh static inline QEMUTimer *aio_timer_new(AioContext *ctx, QEMUClockType type,
5304e29e831SAlex Bligh                                        int scale,
5314e29e831SAlex Bligh                                        QEMUTimerCB *cb, void *opaque)
5324e29e831SAlex Bligh {
53389a603a0SArtem Pisarenko     return timer_new_full(&ctx->tlg, type, scale, 0, cb, opaque);
53489a603a0SArtem Pisarenko }
53589a603a0SArtem Pisarenko 
53689a603a0SArtem Pisarenko /**
53789a603a0SArtem Pisarenko  * aio_timer_init_with_attrs:
53889a603a0SArtem Pisarenko  * @ctx: the aio context
53989a603a0SArtem Pisarenko  * @ts: the timer
54089a603a0SArtem Pisarenko  * @type: the clock type
54189a603a0SArtem Pisarenko  * @scale: the scale
54289a603a0SArtem Pisarenko  * @attributes: 0, or one to multiple OR'ed QEMU_TIMER_ATTR_<id> values
54389a603a0SArtem Pisarenko  *              to assign
54489a603a0SArtem Pisarenko  * @cb: the callback to call on timer expiry
54589a603a0SArtem Pisarenko  * @opaque: the opaque pointer to pass to the callback
54689a603a0SArtem Pisarenko  *
54789a603a0SArtem Pisarenko  * Initialise a new timer (with attributes) attached to the context @ctx.
54889a603a0SArtem Pisarenko  * The caller is responsible for memory allocation.
54989a603a0SArtem Pisarenko  */
55089a603a0SArtem Pisarenko static inline void aio_timer_init_with_attrs(AioContext *ctx,
55189a603a0SArtem Pisarenko                                              QEMUTimer *ts, QEMUClockType type,
55289a603a0SArtem Pisarenko                                              int scale, int attributes,
55389a603a0SArtem Pisarenko                                              QEMUTimerCB *cb, void *opaque)
55489a603a0SArtem Pisarenko {
55589a603a0SArtem Pisarenko     timer_init_full(ts, &ctx->tlg, type, scale, attributes, cb, opaque);
5564e29e831SAlex Bligh }
5574e29e831SAlex Bligh 
5584e29e831SAlex Bligh /**
5594e29e831SAlex Bligh  * aio_timer_init:
5604e29e831SAlex Bligh  * @ctx: the aio context
5614e29e831SAlex Bligh  * @ts: the timer
5624e29e831SAlex Bligh  * @type: the clock type
5634e29e831SAlex Bligh  * @scale: the scale
5644e29e831SAlex Bligh  * @cb: the callback to call on timer expiry
5654e29e831SAlex Bligh  * @opaque: the opaque pointer to pass to the callback
5664e29e831SAlex Bligh  *
5674e29e831SAlex Bligh  * Initialise a new timer attached to the context @ctx.
56889a603a0SArtem Pisarenko  * See aio_timer_init_with_attrs for details.
5694e29e831SAlex Bligh  */
5704e29e831SAlex Bligh static inline void aio_timer_init(AioContext *ctx,
5714e29e831SAlex Bligh                                   QEMUTimer *ts, QEMUClockType type,
5724e29e831SAlex Bligh                                   int scale,
5734e29e831SAlex Bligh                                   QEMUTimerCB *cb, void *opaque)
5744e29e831SAlex Bligh {
57589a603a0SArtem Pisarenko     timer_init_full(ts, &ctx->tlg, type, scale, 0, cb, opaque);
5764e29e831SAlex Bligh }
5774e29e831SAlex Bligh 
578845ca10dSPaolo Bonzini /**
579845ca10dSPaolo Bonzini  * aio_compute_timeout:
580845ca10dSPaolo Bonzini  * @ctx: the aio context
581845ca10dSPaolo Bonzini  *
582845ca10dSPaolo Bonzini  * Compute the timeout that a blocking aio_poll should use.
583845ca10dSPaolo Bonzini  */
584845ca10dSPaolo Bonzini int64_t aio_compute_timeout(AioContext *ctx);
585845ca10dSPaolo Bonzini 
586c1e1e5faSFam Zheng /**
587c1e1e5faSFam Zheng  * aio_disable_external:
588c1e1e5faSFam Zheng  * @ctx: the aio context
589c1e1e5faSFam Zheng  *
590c1e1e5faSFam Zheng  * Disable the further processing of external clients.
591c1e1e5faSFam Zheng  */
592c1e1e5faSFam Zheng static inline void aio_disable_external(AioContext *ctx)
593c1e1e5faSFam Zheng {
594c1e1e5faSFam Zheng     atomic_inc(&ctx->external_disable_cnt);
595c1e1e5faSFam Zheng }
596c1e1e5faSFam Zheng 
597c1e1e5faSFam Zheng /**
598c1e1e5faSFam Zheng  * aio_enable_external:
599c1e1e5faSFam Zheng  * @ctx: the aio context
600c1e1e5faSFam Zheng  *
601c1e1e5faSFam Zheng  * Enable the processing of external clients.
602c1e1e5faSFam Zheng  */
603c1e1e5faSFam Zheng static inline void aio_enable_external(AioContext *ctx)
604c1e1e5faSFam Zheng {
605321d1dbaSStefan Hajnoczi     int old;
606321d1dbaSStefan Hajnoczi 
607321d1dbaSStefan Hajnoczi     old = atomic_fetch_dec(&ctx->external_disable_cnt);
608321d1dbaSStefan Hajnoczi     assert(old > 0);
609321d1dbaSStefan Hajnoczi     if (old == 1) {
610321d1dbaSStefan Hajnoczi         /* Kick event loop so it re-arms file descriptors */
611321d1dbaSStefan Hajnoczi         aio_notify(ctx);
612321d1dbaSStefan Hajnoczi     }
613c1e1e5faSFam Zheng }
614c1e1e5faSFam Zheng 
615c1e1e5faSFam Zheng /**
6165ceb9e39SFam Zheng  * aio_external_disabled:
6175ceb9e39SFam Zheng  * @ctx: the aio context
6185ceb9e39SFam Zheng  *
6195ceb9e39SFam Zheng  * Return true if the external clients are disabled.
6205ceb9e39SFam Zheng  */
6215ceb9e39SFam Zheng static inline bool aio_external_disabled(AioContext *ctx)
6225ceb9e39SFam Zheng {
6235ceb9e39SFam Zheng     return atomic_read(&ctx->external_disable_cnt);
6245ceb9e39SFam Zheng }
6255ceb9e39SFam Zheng 
6265ceb9e39SFam Zheng /**
627c1e1e5faSFam Zheng  * aio_node_check:
628c1e1e5faSFam Zheng  * @ctx: the aio context
629c1e1e5faSFam Zheng  * @is_external: Whether or not the checked node is an external event source.
630c1e1e5faSFam Zheng  *
631c1e1e5faSFam Zheng  * Check if the node's is_external flag is okay to be polled by the ctx at this
632c1e1e5faSFam Zheng  * moment. True means green light.
633c1e1e5faSFam Zheng  */
634c1e1e5faSFam Zheng static inline bool aio_node_check(AioContext *ctx, bool is_external)
635c1e1e5faSFam Zheng {
636c1e1e5faSFam Zheng     return !is_external || !atomic_read(&ctx->external_disable_cnt);
637c1e1e5faSFam Zheng }
638c1e1e5faSFam Zheng 
63937fcee5dSFam Zheng /**
6400c330a73SPaolo Bonzini  * aio_co_schedule:
6410c330a73SPaolo Bonzini  * @ctx: the aio context
6420c330a73SPaolo Bonzini  * @co: the coroutine
6430c330a73SPaolo Bonzini  *
6440c330a73SPaolo Bonzini  * Start a coroutine on a remote AioContext.
6450c330a73SPaolo Bonzini  *
6460c330a73SPaolo Bonzini  * The coroutine must not be entered by anyone else while aio_co_schedule()
6470c330a73SPaolo Bonzini  * is active.  In addition the coroutine must have yielded unless ctx
6480c330a73SPaolo Bonzini  * is the context in which the coroutine is running (i.e. the value of
6490c330a73SPaolo Bonzini  * qemu_get_current_aio_context() from the coroutine itself).
6500c330a73SPaolo Bonzini  */
6510c330a73SPaolo Bonzini void aio_co_schedule(AioContext *ctx, struct Coroutine *co);
6520c330a73SPaolo Bonzini 
6530c330a73SPaolo Bonzini /**
6540c330a73SPaolo Bonzini  * aio_co_wake:
6550c330a73SPaolo Bonzini  * @co: the coroutine
6560c330a73SPaolo Bonzini  *
6570c330a73SPaolo Bonzini  * Restart a coroutine on the AioContext where it was running last, thus
6580c330a73SPaolo Bonzini  * preventing coroutines from jumping from one context to another when they
6590c330a73SPaolo Bonzini  * go to sleep.
6600c330a73SPaolo Bonzini  *
6610c330a73SPaolo Bonzini  * aio_co_wake may be executed either in coroutine or non-coroutine
6620c330a73SPaolo Bonzini  * context.  The coroutine must not be entered by anyone else while
6630c330a73SPaolo Bonzini  * aio_co_wake() is active.
6640c330a73SPaolo Bonzini  */
6650c330a73SPaolo Bonzini void aio_co_wake(struct Coroutine *co);
6660c330a73SPaolo Bonzini 
6670c330a73SPaolo Bonzini /**
6688865852eSFam Zheng  * aio_co_enter:
6698865852eSFam Zheng  * @ctx: the context to run the coroutine
6708865852eSFam Zheng  * @co: the coroutine to run
6718865852eSFam Zheng  *
6728865852eSFam Zheng  * Enter a coroutine in the specified AioContext.
6738865852eSFam Zheng  */
6748865852eSFam Zheng void aio_co_enter(AioContext *ctx, struct Coroutine *co);
6758865852eSFam Zheng 
6768865852eSFam Zheng /**
677e4370165SPaolo Bonzini  * Return the AioContext whose event loop runs in the current thread.
678e4370165SPaolo Bonzini  *
679e4370165SPaolo Bonzini  * If called from an IOThread this will be the IOThread's AioContext.  If
680e4370165SPaolo Bonzini  * called from another thread it will be the main loop AioContext.
681e4370165SPaolo Bonzini  */
682e4370165SPaolo Bonzini AioContext *qemu_get_current_aio_context(void);
683e4370165SPaolo Bonzini 
684e4370165SPaolo Bonzini /**
685d2b63ba8SStefan Hajnoczi  * in_aio_context_home_thread:
686e4370165SPaolo Bonzini  * @ctx: the aio context
687e4370165SPaolo Bonzini  *
688d2b63ba8SStefan Hajnoczi  * Return whether we are running in the thread that normally runs @ctx.  Note
689d2b63ba8SStefan Hajnoczi  * that acquiring/releasing ctx does not affect the outcome, each AioContext
690d2b63ba8SStefan Hajnoczi  * still only has one home thread that is responsible for running it.
691e4370165SPaolo Bonzini  */
692d2b63ba8SStefan Hajnoczi static inline bool in_aio_context_home_thread(AioContext *ctx)
693e4370165SPaolo Bonzini {
694e4370165SPaolo Bonzini     return ctx == qemu_get_current_aio_context();
695e4370165SPaolo Bonzini }
696e4370165SPaolo Bonzini 
697e4370165SPaolo Bonzini /**
69837fcee5dSFam Zheng  * aio_context_setup:
69937fcee5dSFam Zheng  * @ctx: the aio context
70037fcee5dSFam Zheng  *
70137fcee5dSFam Zheng  * Initialize the aio context.
70237fcee5dSFam Zheng  */
7037e003465SCao jin void aio_context_setup(AioContext *ctx);
70437fcee5dSFam Zheng 
7054a1cba38SStefan Hajnoczi /**
706cd0a6d2bSJie Wang  * aio_context_destroy:
707cd0a6d2bSJie Wang  * @ctx: the aio context
708cd0a6d2bSJie Wang  *
709cd0a6d2bSJie Wang  * Destroy the aio context.
710cd0a6d2bSJie Wang  */
711cd0a6d2bSJie Wang void aio_context_destroy(AioContext *ctx);
712cd0a6d2bSJie Wang 
713cd0a6d2bSJie Wang /**
7144a1cba38SStefan Hajnoczi  * aio_context_set_poll_params:
7154a1cba38SStefan Hajnoczi  * @ctx: the aio context
7164a1cba38SStefan Hajnoczi  * @max_ns: how long to busy poll for, in nanoseconds
71782a41186SStefan Hajnoczi  * @grow: polling time growth factor
71882a41186SStefan Hajnoczi  * @shrink: polling time shrink factor
7194a1cba38SStefan Hajnoczi  *
7204a1cba38SStefan Hajnoczi  * Poll mode can be disabled by setting poll_max_ns to 0.
7214a1cba38SStefan Hajnoczi  */
7224a1cba38SStefan Hajnoczi void aio_context_set_poll_params(AioContext *ctx, int64_t max_ns,
72382a41186SStefan Hajnoczi                                  int64_t grow, int64_t shrink,
7244a1cba38SStefan Hajnoczi                                  Error **errp);
7254a1cba38SStefan Hajnoczi 
726737e150eSPaolo Bonzini #endif
727