2 * AioContext wait support
4 * Copyright (C) 2018 Red Hat, Inc.
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #ifndef QEMU_AIO_WAIT_H
26 #define QEMU_AIO_WAIT_H
28 #include "block/aio.h"
29 #include "qemu/main-loop.h"
34 * An object that facilitates synchronous waiting on a condition. A single
35 * global AioWait object (global_aio_wait) is used internally.
37 * The main loop can wait on an operation running in an IOThread as follows:
39 * AioContext *ctx = ...;
40 * MyWork work = { .done = false };
41 * schedule_my_work_in_iothread(ctx, &work);
42 * AIO_WAIT_WHILE(ctx, !work.done);
44 * The IOThread must call aio_wait_kick() to notify the main loop when
47 * static void do_work(...)
55 /* Number of waiting AIO_WAIT_WHILE() callers. Accessed with atomic ops. */
59 extern AioWait global_aio_wait
;
63 * @ctx: the aio context, or NULL if multiple aio contexts (for which the
64 * caller does not hold a lock) are involved in the polling condition.
65 * @cond: wait while this conditional expression is true
67 * Wait while a condition is true. Use this to implement synchronous
68 * operations that require event loop activity.
70 * The caller must be sure that something calls aio_wait_kick() when the value
71 * of @cond might have changed.
73 * The caller's thread must be the IOThread that owns @ctx or the main loop
74 * thread (with @ctx acquired exactly once). This function cannot be used to
75 * wait on conditions between two IOThreads since that could lead to deadlock,
76 * go via the main loop instead.
78 #define AIO_WAIT_WHILE(ctx, cond) ({ \
79 bool waited_ = false; \
80 AioWait *wait_ = &global_aio_wait; \
81 AioContext *ctx_ = (ctx); \
82 /* Increment wait_->num_waiters before evaluating cond. */ \
83 qatomic_inc(&wait_->num_waiters); \
84 /* Paired with smp_mb in aio_wait_kick(). */ \
86 if (ctx_ && in_aio_context_home_thread(ctx_)) { \
88 aio_poll(ctx_, true); \
92 assert(qemu_get_current_aio_context() == \
93 qemu_get_aio_context()); \
96 aio_context_release(ctx_); \
98 aio_poll(qemu_get_aio_context(), true); \
100 aio_context_acquire(ctx_); \
105 qatomic_dec(&wait_->num_waiters); \
110 * Wake up the main thread if it is waiting on AIO_WAIT_WHILE(). During
111 * synchronous operations performed in an IOThread, the main thread lets the
112 * IOThread's event loop run, waiting for the operation to complete. A
113 * aio_wait_kick() call will wake up the main thread.
115 void aio_wait_kick(void);
118 * aio_wait_bh_oneshot:
119 * @ctx: the aio context
120 * @cb: the BH callback function
121 * @opaque: user data for the BH callback function
123 * Run a BH in @ctx and wait for it to complete.
125 * Must be called from the main loop thread with @ctx acquired exactly once.
126 * Note that main loop event processing may occur.
128 void aio_wait_bh_oneshot(AioContext
*ctx
, QEMUBHFunc
*cb
, void *opaque
);
131 * in_aio_context_home_thread:
132 * @ctx: the aio context
134 * Return whether we are running in the thread that normally runs @ctx. Note
135 * that acquiring/releasing ctx does not affect the outcome, each AioContext
136 * still only has one home thread that is responsible for running it.
138 static inline bool in_aio_context_home_thread(AioContext
*ctx
)
140 if (ctx
== qemu_get_current_aio_context()) {
144 if (ctx
== qemu_get_aio_context()) {
145 return qemu_mutex_iothread_locked();
151 #endif /* QEMU_AIO_WAIT_H */