2 * event notifier support
4 * Copyright Red Hat, Inc. 2010
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "qemu-common.h"
15 #include "qemu/cutils.h"
16 #include "qemu/event_notifier.h"
17 #include "sysemu/char.h"
18 #include "qemu/main-loop.h"
21 #include <sys/eventfd.h>
26 * Initialize @e with existing file descriptor @fd.
27 * @fd must be a genuine eventfd object, emulation with pipe won't do.
29 void event_notifier_init_fd(EventNotifier *e, int fd)
36 int event_notifier_init(EventNotifier *e, int active)
42 ret = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
48 e->rfd = e->wfd = ret;
50 if (errno != ENOSYS) {
53 if (qemu_pipe(fds) < 0) {
56 ret = fcntl_setfl(fds[0], O_NONBLOCK);
61 ret = fcntl_setfl(fds[1], O_NONBLOCK);
70 event_notifier_set(e);
80 void event_notifier_cleanup(EventNotifier *e)
82 if (e->rfd != e->wfd) {
88 int event_notifier_get_fd(const EventNotifier *e)
93 int event_notifier_set_handler(EventNotifier *e,
95 EventNotifierHandler *handler)
97 aio_set_fd_handler(iohandler_get_aio_context(), e->rfd, is_external,
98 (IOHandler *)handler, NULL, e);
102 int event_notifier_set(EventNotifier *e)
104 static const uint64_t value = 1;
108 ret = write(e->wfd, &value, sizeof(value));
109 } while (ret < 0 && errno == EINTR);
111 /* EAGAIN is fine, a read must be pending. */
112 if (ret < 0 && errno != EAGAIN) {
118 int event_notifier_test_and_clear(EventNotifier *e)
124 /* Drain the notify pipe. For eventfd, only 8 bytes will be read. */
127 len = read(e->rfd, buffer, sizeof(buffer));
129 } while ((len == -1 && errno == EINTR) || len == sizeof(buffer));