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 176a1751b7SAlex Bligh #include "qemu/typedefs.h" 18737e150eSPaolo Bonzini #include "qemu-common.h" 191de7afc9SPaolo Bonzini #include "qemu/queue.h" 201de7afc9SPaolo Bonzini #include "qemu/event_notifier.h" 21dcc772e2SLiu Ping Fan #include "qemu/thread.h" 2298563fc3SStefan Hajnoczi #include "qemu/rfifolock.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; 48737e150eSPaolo Bonzini typedef void QEMUBHFunc(void *opaque); 49737e150eSPaolo Bonzini typedef void IOHandler(void *opaque); 50737e150eSPaolo Bonzini 516a1751b7SAlex Bligh struct AioContext { 52737e150eSPaolo Bonzini GSource source; 53737e150eSPaolo Bonzini 5498563fc3SStefan Hajnoczi /* Protects all fields from multi-threaded access */ 5598563fc3SStefan Hajnoczi RFifoLock lock; 5698563fc3SStefan Hajnoczi 57737e150eSPaolo Bonzini /* The list of registered AIO handlers */ 58737e150eSPaolo Bonzini QLIST_HEAD(, AioHandler) aio_handlers; 59737e150eSPaolo Bonzini 60737e150eSPaolo Bonzini /* This is a simple lock used to protect the aio_handlers list. 61737e150eSPaolo Bonzini * Specifically, it's used to ensure that no callbacks are removed while 62737e150eSPaolo Bonzini * we're walking and dispatching callbacks. 63737e150eSPaolo Bonzini */ 64737e150eSPaolo Bonzini int walking_handlers; 65737e150eSPaolo Bonzini 66eabc9779SPaolo Bonzini /* Used to avoid unnecessary event_notifier_set calls in aio_notify; 67eabc9779SPaolo Bonzini * accessed with atomic primitives. If this field is 0, everything 68eabc9779SPaolo Bonzini * (file descriptors, bottom halves, timers) will be re-evaluated 69eabc9779SPaolo Bonzini * before the next blocking poll(), thus the event_notifier_set call 70eabc9779SPaolo Bonzini * can be skipped. If it is non-zero, you may need to wake up a 71eabc9779SPaolo Bonzini * concurrent aio_poll or the glib main event loop, making 72eabc9779SPaolo Bonzini * event_notifier_set necessary. 73eabc9779SPaolo Bonzini * 74eabc9779SPaolo Bonzini * Bit 0 is reserved for GSource usage of the AioContext, and is 1 75eabc9779SPaolo Bonzini * between a call to aio_ctx_check and the next call to aio_ctx_dispatch. 76eabc9779SPaolo Bonzini * Bits 1-31 simply count the number of active calls to aio_poll 77eabc9779SPaolo Bonzini * that are in the prepare or poll phase. 78eabc9779SPaolo Bonzini * 79eabc9779SPaolo Bonzini * The GSource and aio_poll must use a different mechanism because 80eabc9779SPaolo Bonzini * there is no certainty that a call to GSource's prepare callback 81eabc9779SPaolo Bonzini * (via g_main_context_prepare) is indeed followed by check and 82eabc9779SPaolo Bonzini * dispatch. It's not clear whether this would be a bug, but let's 83eabc9779SPaolo Bonzini * play safe and allow it---it will just cause extra calls to 84eabc9779SPaolo Bonzini * event_notifier_set until the next call to dispatch. 85eabc9779SPaolo Bonzini * 86eabc9779SPaolo Bonzini * Instead, the aio_poll calls include both the prepare and the 87eabc9779SPaolo Bonzini * dispatch phase, hence a simple counter is enough for them. 880ceb849bSPaolo Bonzini */ 89eabc9779SPaolo Bonzini uint32_t notify_me; 900ceb849bSPaolo Bonzini 91dcc772e2SLiu Ping Fan /* lock to protect between bh's adders and deleter */ 92dcc772e2SLiu Ping Fan QemuMutex bh_lock; 930ceb849bSPaolo Bonzini 94737e150eSPaolo Bonzini /* Anchor of the list of Bottom Halves belonging to the context */ 95737e150eSPaolo Bonzini struct QEMUBH *first_bh; 96737e150eSPaolo Bonzini 97737e150eSPaolo Bonzini /* A simple lock used to protect the first_bh list, and ensure that 98737e150eSPaolo Bonzini * no callbacks are removed while we're walking and dispatching callbacks. 99737e150eSPaolo Bonzini */ 100737e150eSPaolo Bonzini int walking_bh; 101737e150eSPaolo Bonzini 102*05e514b1SPaolo Bonzini /* Used by aio_notify. 103*05e514b1SPaolo Bonzini * 104*05e514b1SPaolo Bonzini * "notified" is used to avoid expensive event_notifier_test_and_clear 105*05e514b1SPaolo Bonzini * calls. When it is clear, the EventNotifier is clear, or one thread 106*05e514b1SPaolo Bonzini * is going to clear "notified" before processing more events. False 107*05e514b1SPaolo Bonzini * positives are possible, i.e. "notified" could be set even though the 108*05e514b1SPaolo Bonzini * EventNotifier is clear. 109*05e514b1SPaolo Bonzini * 110*05e514b1SPaolo Bonzini * Note that event_notifier_set *cannot* be optimized the same way. For 111*05e514b1SPaolo Bonzini * more information on the problem that would result, see "#ifdef BUG2" 112*05e514b1SPaolo Bonzini * in the docs/aio_notify_accept.promela formal model. 113*05e514b1SPaolo Bonzini */ 114*05e514b1SPaolo Bonzini bool notified; 115737e150eSPaolo Bonzini EventNotifier notifier; 1166b5f8762SStefan Hajnoczi 1179b34277dSStefan Hajnoczi /* Thread pool for performing work and receiving completion callbacks */ 1189b34277dSStefan Hajnoczi struct ThreadPool *thread_pool; 119dae21b98SAlex Bligh 120dae21b98SAlex Bligh /* TimerLists for calling timers - one per clock type */ 121dae21b98SAlex Bligh QEMUTimerListGroup tlg; 1226a1751b7SAlex Bligh }; 123737e150eSPaolo Bonzini 124737e150eSPaolo Bonzini /** 125737e150eSPaolo Bonzini * aio_context_new: Allocate a new AioContext. 126737e150eSPaolo Bonzini * 127737e150eSPaolo Bonzini * AioContext provide a mini event-loop that can be waited on synchronously. 128737e150eSPaolo Bonzini * They also provide bottom halves, a service to execute a piece of code 129737e150eSPaolo Bonzini * as soon as possible. 130737e150eSPaolo Bonzini */ 1312f78e491SChrysostomos Nanakos AioContext *aio_context_new(Error **errp); 132737e150eSPaolo Bonzini 133737e150eSPaolo Bonzini /** 134737e150eSPaolo Bonzini * aio_context_ref: 135737e150eSPaolo Bonzini * @ctx: The AioContext to operate on. 136737e150eSPaolo Bonzini * 137737e150eSPaolo Bonzini * Add a reference to an AioContext. 138737e150eSPaolo Bonzini */ 139737e150eSPaolo Bonzini void aio_context_ref(AioContext *ctx); 140737e150eSPaolo Bonzini 141737e150eSPaolo Bonzini /** 142737e150eSPaolo Bonzini * aio_context_unref: 143737e150eSPaolo Bonzini * @ctx: The AioContext to operate on. 144737e150eSPaolo Bonzini * 145737e150eSPaolo Bonzini * Drop a reference to an AioContext. 146737e150eSPaolo Bonzini */ 147737e150eSPaolo Bonzini void aio_context_unref(AioContext *ctx); 148737e150eSPaolo Bonzini 14998563fc3SStefan Hajnoczi /* Take ownership of the AioContext. If the AioContext will be shared between 15049110174SPaolo Bonzini * threads, and a thread does not want to be interrupted, it will have to 15149110174SPaolo Bonzini * take ownership around calls to aio_poll(). Otherwise, aio_poll() 15249110174SPaolo Bonzini * automatically takes care of calling aio_context_acquire and 15349110174SPaolo Bonzini * aio_context_release. 15498563fc3SStefan Hajnoczi * 15549110174SPaolo Bonzini * Access to timers and BHs from a thread that has not acquired AioContext 15649110174SPaolo Bonzini * is possible. Access to callbacks for now must be done while the AioContext 15749110174SPaolo Bonzini * is owned by the thread (FIXME). 15898563fc3SStefan Hajnoczi */ 15998563fc3SStefan Hajnoczi void aio_context_acquire(AioContext *ctx); 16098563fc3SStefan Hajnoczi 16198563fc3SStefan Hajnoczi /* Relinquish ownership of the AioContext. */ 16298563fc3SStefan Hajnoczi void aio_context_release(AioContext *ctx); 16398563fc3SStefan Hajnoczi 164737e150eSPaolo Bonzini /** 165737e150eSPaolo Bonzini * aio_bh_new: Allocate a new bottom half structure. 166737e150eSPaolo Bonzini * 167737e150eSPaolo Bonzini * Bottom halves are lightweight callbacks whose invocation is guaranteed 168737e150eSPaolo Bonzini * to be wait-free, thread-safe and signal-safe. The #QEMUBH structure 169737e150eSPaolo Bonzini * is opaque and must be allocated prior to its use. 170737e150eSPaolo Bonzini */ 171737e150eSPaolo Bonzini QEMUBH *aio_bh_new(AioContext *ctx, QEMUBHFunc *cb, void *opaque); 172737e150eSPaolo Bonzini 173737e150eSPaolo Bonzini /** 174737e150eSPaolo Bonzini * aio_notify: Force processing of pending events. 175737e150eSPaolo Bonzini * 176737e150eSPaolo Bonzini * Similar to signaling a condition variable, aio_notify forces 177737e150eSPaolo Bonzini * aio_wait to exit, so that the next call will re-examine pending events. 178737e150eSPaolo Bonzini * The caller of aio_notify will usually call aio_wait again very soon, 179737e150eSPaolo Bonzini * or go through another iteration of the GLib main loop. Hence, aio_notify 180737e150eSPaolo Bonzini * also has the side effect of recalculating the sets of file descriptors 181737e150eSPaolo Bonzini * that the main loop waits for. 182737e150eSPaolo Bonzini * 183737e150eSPaolo Bonzini * Calling aio_notify is rarely necessary, because for example scheduling 184737e150eSPaolo Bonzini * a bottom half calls it already. 185737e150eSPaolo Bonzini */ 186737e150eSPaolo Bonzini void aio_notify(AioContext *ctx); 187737e150eSPaolo Bonzini 188737e150eSPaolo Bonzini /** 189*05e514b1SPaolo Bonzini * aio_notify_accept: Acknowledge receiving an aio_notify. 190*05e514b1SPaolo Bonzini * 191*05e514b1SPaolo Bonzini * aio_notify() uses an EventNotifier in order to wake up a sleeping 192*05e514b1SPaolo Bonzini * aio_poll() or g_main_context_iteration(). Calls to aio_notify() are 193*05e514b1SPaolo Bonzini * usually rare, but the AioContext has to clear the EventNotifier on 194*05e514b1SPaolo Bonzini * every aio_poll() or g_main_context_iteration() in order to avoid 195*05e514b1SPaolo Bonzini * busy waiting. This event_notifier_test_and_clear() cannot be done 196*05e514b1SPaolo Bonzini * using the usual aio_context_set_event_notifier(), because it must 197*05e514b1SPaolo Bonzini * be done before processing all events (file descriptors, bottom halves, 198*05e514b1SPaolo Bonzini * timers). 199*05e514b1SPaolo Bonzini * 200*05e514b1SPaolo Bonzini * aio_notify_accept() is an optimized event_notifier_test_and_clear() 201*05e514b1SPaolo Bonzini * that is specific to an AioContext's notifier; it is used internally 202*05e514b1SPaolo Bonzini * to clear the EventNotifier only if aio_notify() had been called. 203*05e514b1SPaolo Bonzini */ 204*05e514b1SPaolo Bonzini void aio_notify_accept(AioContext *ctx); 205*05e514b1SPaolo Bonzini 206*05e514b1SPaolo Bonzini /** 207737e150eSPaolo Bonzini * aio_bh_poll: Poll bottom halves for an AioContext. 208737e150eSPaolo Bonzini * 209737e150eSPaolo Bonzini * These are internal functions used by the QEMU main loop. 210dcc772e2SLiu Ping Fan * And notice that multiple occurrences of aio_bh_poll cannot 211dcc772e2SLiu Ping Fan * be called concurrently 212737e150eSPaolo Bonzini */ 213737e150eSPaolo Bonzini int aio_bh_poll(AioContext *ctx); 214737e150eSPaolo Bonzini 215737e150eSPaolo Bonzini /** 216737e150eSPaolo Bonzini * qemu_bh_schedule: Schedule a bottom half. 217737e150eSPaolo Bonzini * 218737e150eSPaolo Bonzini * Scheduling a bottom half interrupts the main loop and causes the 219737e150eSPaolo Bonzini * execution of the callback that was passed to qemu_bh_new. 220737e150eSPaolo Bonzini * 221737e150eSPaolo Bonzini * Bottom halves that are scheduled from a bottom half handler are instantly 222737e150eSPaolo Bonzini * invoked. This can create an infinite loop if a bottom half handler 223737e150eSPaolo Bonzini * schedules itself. 224737e150eSPaolo Bonzini * 225737e150eSPaolo Bonzini * @bh: The bottom half to be scheduled. 226737e150eSPaolo Bonzini */ 227737e150eSPaolo Bonzini void qemu_bh_schedule(QEMUBH *bh); 228737e150eSPaolo Bonzini 229737e150eSPaolo Bonzini /** 230737e150eSPaolo Bonzini * qemu_bh_cancel: Cancel execution of a bottom half. 231737e150eSPaolo Bonzini * 232737e150eSPaolo Bonzini * Canceling execution of a bottom half undoes the effect of calls to 233737e150eSPaolo Bonzini * qemu_bh_schedule without freeing its resources yet. While cancellation 234737e150eSPaolo Bonzini * itself is also wait-free and thread-safe, it can of course race with the 235737e150eSPaolo Bonzini * loop that executes bottom halves unless you are holding the iothread 236737e150eSPaolo Bonzini * mutex. This makes it mostly useless if you are not holding the mutex. 237737e150eSPaolo Bonzini * 238737e150eSPaolo Bonzini * @bh: The bottom half to be canceled. 239737e150eSPaolo Bonzini */ 240737e150eSPaolo Bonzini void qemu_bh_cancel(QEMUBH *bh); 241737e150eSPaolo Bonzini 242737e150eSPaolo Bonzini /** 243737e150eSPaolo Bonzini *qemu_bh_delete: Cancel execution of a bottom half and free its resources. 244737e150eSPaolo Bonzini * 245737e150eSPaolo Bonzini * Deleting a bottom half frees the memory that was allocated for it by 246737e150eSPaolo Bonzini * qemu_bh_new. It also implies canceling the bottom half if it was 247737e150eSPaolo Bonzini * scheduled. 248dcc772e2SLiu Ping Fan * This func is async. The bottom half will do the delete action at the finial 249dcc772e2SLiu Ping Fan * end. 250737e150eSPaolo Bonzini * 251737e150eSPaolo Bonzini * @bh: The bottom half to be deleted. 252737e150eSPaolo Bonzini */ 253737e150eSPaolo Bonzini void qemu_bh_delete(QEMUBH *bh); 254737e150eSPaolo Bonzini 255737e150eSPaolo Bonzini /* Return whether there are any pending callbacks from the GSource 256a3462c65SPaolo Bonzini * attached to the AioContext, before g_poll is invoked. 257a3462c65SPaolo Bonzini * 258a3462c65SPaolo Bonzini * This is used internally in the implementation of the GSource. 259a3462c65SPaolo Bonzini */ 260a3462c65SPaolo Bonzini bool aio_prepare(AioContext *ctx); 261a3462c65SPaolo Bonzini 262a3462c65SPaolo Bonzini /* Return whether there are any pending callbacks from the GSource 263a3462c65SPaolo Bonzini * attached to the AioContext, after g_poll is invoked. 264737e150eSPaolo Bonzini * 265737e150eSPaolo Bonzini * This is used internally in the implementation of the GSource. 266737e150eSPaolo Bonzini */ 267737e150eSPaolo Bonzini bool aio_pending(AioContext *ctx); 268737e150eSPaolo Bonzini 269e4c7e2d1SPaolo Bonzini /* Dispatch any pending callbacks from the GSource attached to the AioContext. 270e4c7e2d1SPaolo Bonzini * 271e4c7e2d1SPaolo Bonzini * This is used internally in the implementation of the GSource. 272e4c7e2d1SPaolo Bonzini */ 273e4c7e2d1SPaolo Bonzini bool aio_dispatch(AioContext *ctx); 274e4c7e2d1SPaolo Bonzini 275737e150eSPaolo Bonzini /* Progress in completing AIO work to occur. This can issue new pending 276737e150eSPaolo Bonzini * aio as a result of executing I/O completion or bh callbacks. 277737e150eSPaolo Bonzini * 278acfb23adSPaolo Bonzini * Return whether any progress was made by executing AIO or bottom half 279acfb23adSPaolo Bonzini * handlers. If @blocking == true, this should always be true except 280acfb23adSPaolo Bonzini * if someone called aio_notify. 281737e150eSPaolo Bonzini * 282737e150eSPaolo Bonzini * If there are no pending bottom halves, but there are pending AIO 283737e150eSPaolo Bonzini * operations, it may not be possible to make any progress without 284737e150eSPaolo Bonzini * blocking. If @blocking is true, this function will wait until one 285737e150eSPaolo Bonzini * or more AIO events have completed, to ensure something has moved 286737e150eSPaolo Bonzini * before returning. 287737e150eSPaolo Bonzini */ 288737e150eSPaolo Bonzini bool aio_poll(AioContext *ctx, bool blocking); 289737e150eSPaolo Bonzini 290737e150eSPaolo Bonzini /* Register a file descriptor and associated callbacks. Behaves very similarly 2916484e422SFam Zheng * to qemu_set_fd_handler. Unlike qemu_set_fd_handler, these callbacks will 29287f68d31SPaolo Bonzini * be invoked when using aio_poll(). 293737e150eSPaolo Bonzini * 294737e150eSPaolo Bonzini * Code that invokes AIO completion functions should rely on this function 295737e150eSPaolo Bonzini * instead of qemu_set_fd_handler[2]. 296737e150eSPaolo Bonzini */ 297737e150eSPaolo Bonzini void aio_set_fd_handler(AioContext *ctx, 298737e150eSPaolo Bonzini int fd, 299737e150eSPaolo Bonzini IOHandler *io_read, 300737e150eSPaolo Bonzini IOHandler *io_write, 301737e150eSPaolo Bonzini void *opaque); 302737e150eSPaolo Bonzini 303737e150eSPaolo Bonzini /* Register an event notifier and associated callbacks. Behaves very similarly 304737e150eSPaolo Bonzini * to event_notifier_set_handler. Unlike event_notifier_set_handler, these callbacks 30587f68d31SPaolo Bonzini * will be invoked when using aio_poll(). 306737e150eSPaolo Bonzini * 307737e150eSPaolo Bonzini * Code that invokes AIO completion functions should rely on this function 308737e150eSPaolo Bonzini * instead of event_notifier_set_handler. 309737e150eSPaolo Bonzini */ 310737e150eSPaolo Bonzini void aio_set_event_notifier(AioContext *ctx, 311737e150eSPaolo Bonzini EventNotifier *notifier, 312f2e5dca4SStefan Hajnoczi EventNotifierHandler *io_read); 313737e150eSPaolo Bonzini 314737e150eSPaolo Bonzini /* Return a GSource that lets the main loop poll the file descriptors attached 315737e150eSPaolo Bonzini * to this AioContext. 316737e150eSPaolo Bonzini */ 317737e150eSPaolo Bonzini GSource *aio_get_g_source(AioContext *ctx); 318737e150eSPaolo Bonzini 3199b34277dSStefan Hajnoczi /* Return the ThreadPool bound to this AioContext */ 3209b34277dSStefan Hajnoczi struct ThreadPool *aio_get_thread_pool(AioContext *ctx); 3219b34277dSStefan Hajnoczi 3224e29e831SAlex Bligh /** 3234e29e831SAlex Bligh * aio_timer_new: 3244e29e831SAlex Bligh * @ctx: the aio context 3254e29e831SAlex Bligh * @type: the clock type 3264e29e831SAlex Bligh * @scale: the scale 3274e29e831SAlex Bligh * @cb: the callback to call on timer expiry 3284e29e831SAlex Bligh * @opaque: the opaque pointer to pass to the callback 3294e29e831SAlex Bligh * 3304e29e831SAlex Bligh * Allocate a new timer attached to the context @ctx. 3314e29e831SAlex Bligh * The function is responsible for memory allocation. 3324e29e831SAlex Bligh * 3334e29e831SAlex Bligh * The preferred interface is aio_timer_init. Use that 3344e29e831SAlex Bligh * unless you really need dynamic memory allocation. 3354e29e831SAlex Bligh * 3364e29e831SAlex Bligh * Returns: a pointer to the new timer 3374e29e831SAlex Bligh */ 3384e29e831SAlex Bligh static inline QEMUTimer *aio_timer_new(AioContext *ctx, QEMUClockType type, 3394e29e831SAlex Bligh int scale, 3404e29e831SAlex Bligh QEMUTimerCB *cb, void *opaque) 3414e29e831SAlex Bligh { 3424e29e831SAlex Bligh return timer_new_tl(ctx->tlg.tl[type], scale, cb, opaque); 3434e29e831SAlex Bligh } 3444e29e831SAlex Bligh 3454e29e831SAlex Bligh /** 3464e29e831SAlex Bligh * aio_timer_init: 3474e29e831SAlex Bligh * @ctx: the aio context 3484e29e831SAlex Bligh * @ts: the timer 3494e29e831SAlex Bligh * @type: the clock type 3504e29e831SAlex Bligh * @scale: the scale 3514e29e831SAlex Bligh * @cb: the callback to call on timer expiry 3524e29e831SAlex Bligh * @opaque: the opaque pointer to pass to the callback 3534e29e831SAlex Bligh * 3544e29e831SAlex Bligh * Initialise a new timer attached to the context @ctx. 3554e29e831SAlex Bligh * The caller is responsible for memory allocation. 3564e29e831SAlex Bligh */ 3574e29e831SAlex Bligh static inline void aio_timer_init(AioContext *ctx, 3584e29e831SAlex Bligh QEMUTimer *ts, QEMUClockType type, 3594e29e831SAlex Bligh int scale, 3604e29e831SAlex Bligh QEMUTimerCB *cb, void *opaque) 3614e29e831SAlex Bligh { 362f186aa97SPaolo Bonzini timer_init_tl(ts, ctx->tlg.tl[type], scale, cb, opaque); 3634e29e831SAlex Bligh } 3644e29e831SAlex Bligh 365845ca10dSPaolo Bonzini /** 366845ca10dSPaolo Bonzini * aio_compute_timeout: 367845ca10dSPaolo Bonzini * @ctx: the aio context 368845ca10dSPaolo Bonzini * 369845ca10dSPaolo Bonzini * Compute the timeout that a blocking aio_poll should use. 370845ca10dSPaolo Bonzini */ 371845ca10dSPaolo Bonzini int64_t aio_compute_timeout(AioContext *ctx); 372845ca10dSPaolo Bonzini 373737e150eSPaolo Bonzini #endif 374