]> git.proxmox.com Git - mirror_qemu.git/blame - aio-posix.c
virtio-gpu: tag as not hotpluggable
[mirror_qemu.git] / aio-posix.c
CommitLineData
a76bab49
AL
1/*
2 * QEMU aio implementation
3 *
4 * Copyright IBM, Corp. 2008
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
6b620ca3
PB
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
a76bab49
AL
14 */
15
d38ea87a 16#include "qemu/osdep.h"
a76bab49 17#include "qemu-common.h"
737e150e 18#include "block/block.h"
1de7afc9
PB
19#include "qemu/queue.h"
20#include "qemu/sockets.h"
4a1cba38
SH
21#include "qemu/cutils.h"
22#include "trace.h"
147dfab7 23#ifdef CONFIG_EPOLL_CREATE1
fbe3fc5c
FZ
24#include <sys/epoll.h>
25#endif
a76bab49 26
a76bab49
AL
27struct AioHandler
28{
cd9ba1eb 29 GPollFD pfd;
a76bab49
AL
30 IOHandler *io_read;
31 IOHandler *io_write;
4a1cba38 32 AioPollFn *io_poll;
684e508c
SH
33 IOHandler *io_poll_begin;
34 IOHandler *io_poll_end;
a76bab49
AL
35 int deleted;
36 void *opaque;
dca21ef2 37 bool is_external;
72cf2d4f 38 QLIST_ENTRY(AioHandler) node;
a76bab49
AL
39};
40
147dfab7 41#ifdef CONFIG_EPOLL_CREATE1
fbe3fc5c
FZ
42
43/* The fd number threashold to switch to epoll */
44#define EPOLL_ENABLE_THRESHOLD 64
45
46static void aio_epoll_disable(AioContext *ctx)
47{
48 ctx->epoll_available = false;
49 if (!ctx->epoll_enabled) {
50 return;
51 }
52 ctx->epoll_enabled = false;
53 close(ctx->epollfd);
54}
55
56static inline int epoll_events_from_pfd(int pfd_events)
57{
58 return (pfd_events & G_IO_IN ? EPOLLIN : 0) |
59 (pfd_events & G_IO_OUT ? EPOLLOUT : 0) |
60 (pfd_events & G_IO_HUP ? EPOLLHUP : 0) |
61 (pfd_events & G_IO_ERR ? EPOLLERR : 0);
62}
63
64static bool aio_epoll_try_enable(AioContext *ctx)
65{
66 AioHandler *node;
67 struct epoll_event event;
68
69 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
70 int r;
71 if (node->deleted || !node->pfd.events) {
72 continue;
73 }
74 event.events = epoll_events_from_pfd(node->pfd.events);
75 event.data.ptr = node;
76 r = epoll_ctl(ctx->epollfd, EPOLL_CTL_ADD, node->pfd.fd, &event);
77 if (r) {
78 return false;
79 }
80 }
81 ctx->epoll_enabled = true;
82 return true;
83}
84
85static void aio_epoll_update(AioContext *ctx, AioHandler *node, bool is_new)
86{
87 struct epoll_event event;
88 int r;
35dd66e2 89 int ctl;
fbe3fc5c
FZ
90
91 if (!ctx->epoll_enabled) {
92 return;
93 }
94 if (!node->pfd.events) {
35dd66e2 95 ctl = EPOLL_CTL_DEL;
fbe3fc5c
FZ
96 } else {
97 event.data.ptr = node;
98 event.events = epoll_events_from_pfd(node->pfd.events);
35dd66e2
PB
99 ctl = is_new ? EPOLL_CTL_ADD : EPOLL_CTL_MOD;
100 }
101
102 r = epoll_ctl(ctx->epollfd, ctl, node->pfd.fd, &event);
103 if (r) {
104 aio_epoll_disable(ctx);
fbe3fc5c
FZ
105 }
106}
107
108static int aio_epoll(AioContext *ctx, GPollFD *pfds,
109 unsigned npfd, int64_t timeout)
110{
111 AioHandler *node;
112 int i, ret = 0;
113 struct epoll_event events[128];
114
115 assert(npfd == 1);
116 assert(pfds[0].fd == ctx->epollfd);
117 if (timeout > 0) {
118 ret = qemu_poll_ns(pfds, npfd, timeout);
119 }
120 if (timeout <= 0 || ret > 0) {
121 ret = epoll_wait(ctx->epollfd, events,
122 sizeof(events) / sizeof(events[0]),
123 timeout);
124 if (ret <= 0) {
125 goto out;
126 }
127 for (i = 0; i < ret; i++) {
128 int ev = events[i].events;
129 node = events[i].data.ptr;
130 node->pfd.revents = (ev & EPOLLIN ? G_IO_IN : 0) |
131 (ev & EPOLLOUT ? G_IO_OUT : 0) |
132 (ev & EPOLLHUP ? G_IO_HUP : 0) |
133 (ev & EPOLLERR ? G_IO_ERR : 0);
134 }
135 }
136out:
137 return ret;
138}
139
140static bool aio_epoll_enabled(AioContext *ctx)
141{
142 /* Fall back to ppoll when external clients are disabled. */
143 return !aio_external_disabled(ctx) && ctx->epoll_enabled;
144}
145
146static bool aio_epoll_check_poll(AioContext *ctx, GPollFD *pfds,
147 unsigned npfd, int64_t timeout)
148{
149 if (!ctx->epoll_available) {
150 return false;
151 }
152 if (aio_epoll_enabled(ctx)) {
153 return true;
154 }
155 if (npfd >= EPOLL_ENABLE_THRESHOLD) {
156 if (aio_epoll_try_enable(ctx)) {
157 return true;
158 } else {
159 aio_epoll_disable(ctx);
160 }
161 }
162 return false;
163}
164
165#else
166
167static void aio_epoll_update(AioContext *ctx, AioHandler *node, bool is_new)
168{
169}
170
171static int aio_epoll(AioContext *ctx, GPollFD *pfds,
172 unsigned npfd, int64_t timeout)
173{
174 assert(false);
175}
176
177static bool aio_epoll_enabled(AioContext *ctx)
178{
179 return false;
180}
181
182static bool aio_epoll_check_poll(AioContext *ctx, GPollFD *pfds,
183 unsigned npfd, int64_t timeout)
184{
185 return false;
186}
187
188#endif
189
a915f4bc 190static AioHandler *find_aio_handler(AioContext *ctx, int fd)
a76bab49
AL
191{
192 AioHandler *node;
193
a915f4bc 194 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
cd9ba1eb 195 if (node->pfd.fd == fd)
79d5ca56
AG
196 if (!node->deleted)
197 return node;
a76bab49
AL
198 }
199
200 return NULL;
201}
202
a915f4bc
PB
203void aio_set_fd_handler(AioContext *ctx,
204 int fd,
dca21ef2 205 bool is_external,
a915f4bc
PB
206 IOHandler *io_read,
207 IOHandler *io_write,
f6a51c84 208 AioPollFn *io_poll,
a915f4bc 209 void *opaque)
a76bab49
AL
210{
211 AioHandler *node;
fbe3fc5c 212 bool is_new = false;
0ed39f3d 213 bool deleted = false;
a76bab49 214
a915f4bc 215 node = find_aio_handler(ctx, fd);
a76bab49
AL
216
217 /* Are we deleting the fd handler? */
4a1cba38 218 if (!io_read && !io_write && !io_poll) {
36173ec5
PB
219 if (node == NULL) {
220 return;
221 }
222
223 g_source_remove_poll(&ctx->source, &node->pfd);
224
225 /* If the lock is held, just mark the node as deleted */
226 if (ctx->walking_handlers) {
227 node->deleted = 1;
228 node->pfd.revents = 0;
229 } else {
230 /* Otherwise, delete it for real. We can't just mark it as
231 * deleted because deleted nodes are only cleaned up after
232 * releasing the walking_handlers lock.
233 */
234 QLIST_REMOVE(node, node);
235 deleted = true;
a76bab49 236 }
4a1cba38
SH
237
238 if (!node->io_poll) {
239 ctx->poll_disable_cnt--;
240 }
a76bab49
AL
241 } else {
242 if (node == NULL) {
243 /* Alloc and insert if it's not already there */
3ba235a0 244 node = g_new0(AioHandler, 1);
cd9ba1eb 245 node->pfd.fd = fd;
a915f4bc 246 QLIST_INSERT_HEAD(&ctx->aio_handlers, node, node);
e3713e00
PB
247
248 g_source_add_poll(&ctx->source, &node->pfd);
fbe3fc5c 249 is_new = true;
4a1cba38
SH
250
251 ctx->poll_disable_cnt += !io_poll;
252 } else {
253 ctx->poll_disable_cnt += !io_poll - !node->io_poll;
a76bab49 254 }
4a1cba38 255
a76bab49
AL
256 /* Update handler with latest information */
257 node->io_read = io_read;
258 node->io_write = io_write;
4a1cba38 259 node->io_poll = io_poll;
a76bab49 260 node->opaque = opaque;
dca21ef2 261 node->is_external = is_external;
cd9ba1eb 262
b5a01a70
SH
263 node->pfd.events = (io_read ? G_IO_IN | G_IO_HUP | G_IO_ERR : 0);
264 node->pfd.events |= (io_write ? G_IO_OUT | G_IO_ERR : 0);
a76bab49 265 }
7ed2b24c 266
fbe3fc5c 267 aio_epoll_update(ctx, node, is_new);
7ed2b24c 268 aio_notify(ctx);
4a1cba38 269
0ed39f3d
FZ
270 if (deleted) {
271 g_free(node);
272 }
9958c351
PB
273}
274
684e508c
SH
275void aio_set_fd_poll(AioContext *ctx, int fd,
276 IOHandler *io_poll_begin,
277 IOHandler *io_poll_end)
278{
279 AioHandler *node = find_aio_handler(ctx, fd);
280
281 if (!node) {
282 return;
283 }
284
285 node->io_poll_begin = io_poll_begin;
286 node->io_poll_end = io_poll_end;
287}
288
a915f4bc
PB
289void aio_set_event_notifier(AioContext *ctx,
290 EventNotifier *notifier,
dca21ef2 291 bool is_external,
f6a51c84
SH
292 EventNotifierHandler *io_read,
293 AioPollFn *io_poll)
a76bab49 294{
f6a51c84
SH
295 aio_set_fd_handler(ctx, event_notifier_get_fd(notifier), is_external,
296 (IOHandler *)io_read, NULL, io_poll, notifier);
a76bab49
AL
297}
298
684e508c
SH
299void aio_set_event_notifier_poll(AioContext *ctx,
300 EventNotifier *notifier,
301 EventNotifierHandler *io_poll_begin,
302 EventNotifierHandler *io_poll_end)
303{
304 aio_set_fd_poll(ctx, event_notifier_get_fd(notifier),
305 (IOHandler *)io_poll_begin,
306 (IOHandler *)io_poll_end);
307}
308
309static void poll_set_started(AioContext *ctx, bool started)
310{
311 AioHandler *node;
312
313 if (started == ctx->poll_started) {
314 return;
315 }
316
317 ctx->poll_started = started;
318
319 ctx->walking_handlers++;
320 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
321 IOHandler *fn;
322
323 if (node->deleted) {
324 continue;
325 }
326
327 if (started) {
328 fn = node->io_poll_begin;
329 } else {
330 fn = node->io_poll_end;
331 }
332
333 if (fn) {
334 fn(node->opaque);
335 }
336 }
337 ctx->walking_handlers--;
338}
339
340
a3462c65
PB
341bool aio_prepare(AioContext *ctx)
342{
684e508c
SH
343 /* Poll mode cannot be used with glib's event loop, disable it. */
344 poll_set_started(ctx, false);
345
a3462c65
PB
346 return false;
347}
348
cd9ba1eb
PB
349bool aio_pending(AioContext *ctx)
350{
351 AioHandler *node;
352
353 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
354 int revents;
355
cd9ba1eb 356 revents = node->pfd.revents & node->pfd.events;
37989ced
FZ
357 if (revents & (G_IO_IN | G_IO_HUP | G_IO_ERR) && node->io_read &&
358 aio_node_check(ctx, node->is_external)) {
cd9ba1eb
PB
359 return true;
360 }
37989ced
FZ
361 if (revents & (G_IO_OUT | G_IO_ERR) && node->io_write &&
362 aio_node_check(ctx, node->is_external)) {
cd9ba1eb
PB
363 return true;
364 }
365 }
366
367 return false;
368}
369
721671ad
SH
370/*
371 * Note that dispatch_fds == false has the side-effect of post-poning the
372 * freeing of deleted handlers.
373 */
374bool aio_dispatch(AioContext *ctx, bool dispatch_fds)
a76bab49 375{
721671ad 376 AioHandler *node = NULL;
d0c8d2c0 377 bool progress = false;
7c0628b2 378
e4c7e2d1
PB
379 /*
380 * If there are callbacks left that have been queued, we need to call them.
381 * Do not call select in this case, because it is possible that the caller
382 * does not need a complete flush (as is the case for aio_poll loops).
383 */
384 if (aio_bh_poll(ctx)) {
385 progress = true;
386 }
387
cd9ba1eb 388 /*
87f68d31 389 * We have to walk very carefully in case aio_set_fd_handler is
cd9ba1eb
PB
390 * called while we're walking.
391 */
721671ad
SH
392 if (dispatch_fds) {
393 node = QLIST_FIRST(&ctx->aio_handlers);
394 }
cd9ba1eb
PB
395 while (node) {
396 AioHandler *tmp;
397 int revents;
398
399 ctx->walking_handlers++;
400
401 revents = node->pfd.revents & node->pfd.events;
402 node->pfd.revents = 0;
403
d0c8d2c0
SH
404 if (!node->deleted &&
405 (revents & (G_IO_IN | G_IO_HUP | G_IO_ERR)) &&
37989ced 406 aio_node_check(ctx, node->is_external) &&
d0c8d2c0 407 node->io_read) {
cd9ba1eb 408 node->io_read(node->opaque);
164a101f
SH
409
410 /* aio_notify() does not count as progress */
411 if (node->opaque != &ctx->notifier) {
412 progress = true;
413 }
cd9ba1eb 414 }
d0c8d2c0
SH
415 if (!node->deleted &&
416 (revents & (G_IO_OUT | G_IO_ERR)) &&
37989ced 417 aio_node_check(ctx, node->is_external) &&
d0c8d2c0 418 node->io_write) {
cd9ba1eb
PB
419 node->io_write(node->opaque);
420 progress = true;
421 }
422
423 tmp = node;
424 node = QLIST_NEXT(node, node);
425
426 ctx->walking_handlers--;
427
428 if (!ctx->walking_handlers && tmp->deleted) {
429 QLIST_REMOVE(tmp, node);
430 g_free(tmp);
431 }
432 }
438e1f47
AB
433
434 /* Run our timers */
435 progress |= timerlistgroup_run_timers(&ctx->tlg);
436
d0c8d2c0
SH
437 return progress;
438}
439
e98ab097
PB
440/* These thread-local variables are used only in a small part of aio_poll
441 * around the call to the poll() system call. In particular they are not
442 * used while aio_poll is performing callbacks, which makes it much easier
443 * to think about reentrancy!
444 *
445 * Stack-allocated arrays would be perfect but they have size limitations;
446 * heap allocation is expensive enough that we want to reuse arrays across
447 * calls to aio_poll(). And because poll() has to be called without holding
448 * any lock, the arrays cannot be stored in AioContext. Thread-local data
449 * has none of the disadvantages of these three options.
450 */
451static __thread GPollFD *pollfds;
452static __thread AioHandler **nodes;
453static __thread unsigned npfd, nalloc;
454static __thread Notifier pollfds_cleanup_notifier;
455
456static void pollfds_cleanup(Notifier *n, void *unused)
457{
458 g_assert(npfd == 0);
459 g_free(pollfds);
460 g_free(nodes);
461 nalloc = 0;
462}
463
464static void add_pollfd(AioHandler *node)
465{
466 if (npfd == nalloc) {
467 if (nalloc == 0) {
468 pollfds_cleanup_notifier.notify = pollfds_cleanup;
469 qemu_thread_atexit_add(&pollfds_cleanup_notifier);
470 nalloc = 8;
471 } else {
472 g_assert(nalloc <= INT_MAX);
473 nalloc *= 2;
474 }
475 pollfds = g_renew(GPollFD, pollfds, nalloc);
476 nodes = g_renew(AioHandler *, nodes, nalloc);
477 }
478 nodes[npfd] = node;
479 pollfds[npfd] = (GPollFD) {
480 .fd = node->pfd.fd,
481 .events = node->pfd.events,
482 };
483 npfd++;
484}
485
684e508c
SH
486static bool run_poll_handlers_once(AioContext *ctx)
487{
488 bool progress = false;
489 AioHandler *node;
490
491 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
492 if (!node->deleted && node->io_poll &&
493 node->io_poll(node->opaque)) {
494 progress = true;
495 }
496
497 /* Caller handles freeing deleted nodes. Don't do it here. */
498 }
499
500 return progress;
501}
502
4a1cba38
SH
503/* run_poll_handlers:
504 * @ctx: the AioContext
505 * @max_ns: maximum time to poll for, in nanoseconds
506 *
507 * Polls for a given time.
508 *
509 * Note that ctx->notify_me must be non-zero so this function can detect
510 * aio_notify().
511 *
512 * Note that the caller must have incremented ctx->walking_handlers.
513 *
514 * Returns: true if progress was made, false otherwise
515 */
516static bool run_poll_handlers(AioContext *ctx, int64_t max_ns)
517{
684e508c 518 bool progress;
4a1cba38
SH
519 int64_t end_time;
520
521 assert(ctx->notify_me);
522 assert(ctx->walking_handlers > 0);
523 assert(ctx->poll_disable_cnt == 0);
524
525 trace_run_poll_handlers_begin(ctx, max_ns);
526
527 end_time = qemu_clock_get_ns(QEMU_CLOCK_REALTIME) + max_ns;
528
529 do {
684e508c 530 progress = run_poll_handlers_once(ctx);
4a1cba38
SH
531 } while (!progress && qemu_clock_get_ns(QEMU_CLOCK_REALTIME) < end_time);
532
533 trace_run_poll_handlers_end(ctx, progress);
534
535 return progress;
536}
537
538/* try_poll_mode:
539 * @ctx: the AioContext
684e508c 540 * @blocking: busy polling is only attempted when blocking is true
4a1cba38 541 *
684e508c 542 * ctx->notify_me must be non-zero so this function can detect aio_notify().
4a1cba38
SH
543 *
544 * Note that the caller must have incremented ctx->walking_handlers.
545 *
546 * Returns: true if progress was made, false otherwise
547 */
548static bool try_poll_mode(AioContext *ctx, bool blocking)
549{
550 if (blocking && ctx->poll_max_ns && ctx->poll_disable_cnt == 0) {
551 /* See qemu_soonest_timeout() uint64_t hack */
552 int64_t max_ns = MIN((uint64_t)aio_compute_timeout(ctx),
82a41186 553 (uint64_t)ctx->poll_ns);
4a1cba38
SH
554
555 if (max_ns) {
684e508c
SH
556 poll_set_started(ctx, true);
557
4a1cba38
SH
558 if (run_poll_handlers(ctx, max_ns)) {
559 return true;
560 }
561 }
562 }
563
684e508c
SH
564 poll_set_started(ctx, false);
565
566 /* Even if we don't run busy polling, try polling once in case it can make
567 * progress and the caller will be able to avoid ppoll(2)/epoll_wait(2).
568 */
569 return run_poll_handlers_once(ctx);
4a1cba38
SH
570}
571
d0c8d2c0
SH
572bool aio_poll(AioContext *ctx, bool blocking)
573{
d0c8d2c0 574 AioHandler *node;
4a1cba38
SH
575 int i;
576 int ret = 0;
164a101f 577 bool progress;
e98ab097 578 int64_t timeout;
82a41186 579 int64_t start = 0;
d0c8d2c0 580
49110174 581 aio_context_acquire(ctx);
d0c8d2c0
SH
582 progress = false;
583
0ceb849b
PB
584 /* aio_notify can avoid the expensive event_notifier_set if
585 * everything (file descriptors, bottom halves, timers) will
e4c7e2d1
PB
586 * be re-evaluated before the next blocking poll(). This is
587 * already true when aio_poll is called with blocking == false;
eabc9779
PB
588 * if blocking == true, it is only true after poll() returns,
589 * so disable the optimization now.
0ceb849b 590 */
eabc9779
PB
591 if (blocking) {
592 atomic_add(&ctx->notify_me, 2);
593 }
0ceb849b 594
a915f4bc 595 ctx->walking_handlers++;
a76bab49 596
82a41186
SH
597 if (ctx->poll_max_ns) {
598 start = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
599 }
600
4a1cba38
SH
601 if (try_poll_mode(ctx, blocking)) {
602 progress = true;
603 } else {
604 assert(npfd == 0);
a76bab49 605
4a1cba38 606 /* fill pollfds */
6b942468 607
4a1cba38
SH
608 if (!aio_epoll_enabled(ctx)) {
609 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
610 if (!node->deleted && node->pfd.events
611 && aio_node_check(ctx, node->is_external)) {
612 add_pollfd(node);
613 }
6b942468 614 }
9eb0bfca 615 }
a76bab49 616
4a1cba38 617 timeout = blocking ? aio_compute_timeout(ctx) : 0;
a76bab49 618
4a1cba38
SH
619 /* wait until next event */
620 if (timeout) {
621 aio_context_release(ctx);
622 }
623 if (aio_epoll_check_poll(ctx, pollfds, npfd, timeout)) {
624 AioHandler epoll_handler;
625
626 epoll_handler.pfd.fd = ctx->epollfd;
627 epoll_handler.pfd.events = G_IO_IN | G_IO_OUT | G_IO_HUP | G_IO_ERR;
628 npfd = 0;
629 add_pollfd(&epoll_handler);
630 ret = aio_epoll(ctx, pollfds, npfd, timeout);
631 } else {
632 ret = qemu_poll_ns(pollfds, npfd, timeout);
633 }
634 if (timeout) {
635 aio_context_acquire(ctx);
636 }
fbe3fc5c 637 }
4a1cba38 638
eabc9779
PB
639 if (blocking) {
640 atomic_sub(&ctx->notify_me, 2);
641 }
9eb0bfca 642
82a41186
SH
643 /* Adjust polling time */
644 if (ctx->poll_max_ns) {
645 int64_t block_ns = qemu_clock_get_ns(QEMU_CLOCK_REALTIME) - start;
646
647 if (block_ns <= ctx->poll_ns) {
648 /* This is the sweet spot, no adjustment needed */
649 } else if (block_ns > ctx->poll_max_ns) {
650 /* We'd have to poll for too long, poll less */
651 int64_t old = ctx->poll_ns;
652
653 if (ctx->poll_shrink) {
654 ctx->poll_ns /= ctx->poll_shrink;
655 } else {
656 ctx->poll_ns = 0;
657 }
658
659 trace_poll_shrink(ctx, old, ctx->poll_ns);
660 } else if (ctx->poll_ns < ctx->poll_max_ns &&
661 block_ns < ctx->poll_max_ns) {
662 /* There is room to grow, poll longer */
663 int64_t old = ctx->poll_ns;
664 int64_t grow = ctx->poll_grow;
665
666 if (grow == 0) {
667 grow = 2;
668 }
669
670 if (ctx->poll_ns) {
671 ctx->poll_ns *= grow;
672 } else {
673 ctx->poll_ns = 4000; /* start polling at 4 microseconds */
674 }
675
676 if (ctx->poll_ns > ctx->poll_max_ns) {
677 ctx->poll_ns = ctx->poll_max_ns;
678 }
679
680 trace_poll_grow(ctx, old, ctx->poll_ns);
681 }
682 }
683
05e514b1 684 aio_notify_accept(ctx);
21a03d17 685
9eb0bfca
PB
686 /* if we have any readable fds, dispatch event */
687 if (ret > 0) {
e98ab097
PB
688 for (i = 0; i < npfd; i++) {
689 nodes[i]->pfd.revents = pollfds[i].revents;
a76bab49 690 }
438e1f47
AB
691 }
692
e98ab097
PB
693 npfd = 0;
694 ctx->walking_handlers--;
695
438e1f47 696 /* Run dispatch even if there were no readable fds to run timers */
721671ad 697 if (aio_dispatch(ctx, ret > 0)) {
438e1f47 698 progress = true;
9eb0bfca 699 }
bcdc1857 700
49110174
PB
701 aio_context_release(ctx);
702
164a101f 703 return progress;
a76bab49 704}
37fcee5d 705
7e003465 706void aio_context_setup(AioContext *ctx)
37fcee5d 707{
4a1cba38
SH
708 /* TODO remove this in final patch submission */
709 if (getenv("QEMU_AIO_POLL_MAX_NS")) {
710 fprintf(stderr, "The QEMU_AIO_POLL_MAX_NS environment variable has "
711 "been replaced with -object iothread,poll-max-ns=NUM\n");
712 exit(1);
713 }
714
147dfab7 715#ifdef CONFIG_EPOLL_CREATE1
fbe3fc5c
FZ
716 assert(!ctx->epollfd);
717 ctx->epollfd = epoll_create1(EPOLL_CLOEXEC);
718 if (ctx->epollfd == -1) {
7e003465 719 fprintf(stderr, "Failed to create epoll instance: %s", strerror(errno));
fbe3fc5c
FZ
720 ctx->epoll_available = false;
721 } else {
722 ctx->epoll_available = true;
723 }
724#endif
37fcee5d 725}
4a1cba38 726
82a41186
SH
727void aio_context_set_poll_params(AioContext *ctx, int64_t max_ns,
728 int64_t grow, int64_t shrink, Error **errp)
4a1cba38 729{
82a41186
SH
730 /* No thread synchronization here, it doesn't matter if an incorrect value
731 * is used once.
4a1cba38
SH
732 */
733 ctx->poll_max_ns = max_ns;
82a41186
SH
734 ctx->poll_ns = 0;
735 ctx->poll_grow = grow;
736 ctx->poll_shrink = shrink;
4a1cba38
SH
737
738 aio_notify(ctx);
739}