2 * Linux native AIO support.
4 * Copyright (C) 2009 IBM, Corp.
5 * Copyright (C) 2009 Red Hat, Inc.
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
10 #include "qemu-common.h"
12 #include "block_int.h"
13 #include "block/raw-posix-aio.h"
15 #include <sys/eventfd.h>
19 * Queue size (per-device).
21 * XXX: eventually we need to communicate this to the guest and/or make it
22 * tunable by the guest. If we get more outstanding requests at a time
23 * than this we will get EAGAIN from io_submit which is communicated to
24 * the guest as an I/O error.
26 #define MAX_EVENTS 128
29 BlockDriverAIOCB common
;
30 struct qemu_laio_state
*ctx
;
34 QLIST_ENTRY(qemu_laiocb
) node
;
37 struct qemu_laio_state
{
43 static inline ssize_t
io_event_ret(struct io_event
*ev
)
45 return (ssize_t
)(((uint64_t)ev
->res2
<< 32) | ev
->res
);
49 * Completes an AIO request (calls the callback and frees the ACB).
51 static void qemu_laio_process_completion(struct qemu_laio_state
*s
,
52 struct qemu_laiocb
*laiocb
)
59 if (ret
!= -ECANCELED
) {
60 if (ret
== laiocb
->nbytes
)
65 laiocb
->common
.cb(laiocb
->common
.opaque
, ret
);
68 qemu_aio_release(laiocb
);
71 static void qemu_laio_completion_cb(void *opaque
)
73 struct qemu_laio_state
*s
= opaque
;
76 struct io_event events
[MAX_EVENTS
];
79 struct timespec ts
= { 0 };
83 ret
= read(s
->efd
, &val
, sizeof(val
));
84 } while (ret
== -1 && errno
== EINTR
);
86 if (ret
== -1 && errno
== EAGAIN
)
93 nevents
= io_getevents(s
->ctx
, val
, MAX_EVENTS
, events
, &ts
);
94 } while (nevents
== -EINTR
);
96 for (i
= 0; i
< nevents
; i
++) {
97 struct iocb
*iocb
= events
[i
].obj
;
98 struct qemu_laiocb
*laiocb
=
99 container_of(iocb
, struct qemu_laiocb
, iocb
);
101 laiocb
->ret
= io_event_ret(&events
[i
]);
102 qemu_laio_process_completion(s
, laiocb
);
107 static int qemu_laio_flush_cb(void *opaque
)
109 struct qemu_laio_state
*s
= opaque
;
111 return (s
->count
> 0) ? 1 : 0;
114 static void laio_cancel(BlockDriverAIOCB
*blockacb
)
116 struct qemu_laiocb
*laiocb
= (struct qemu_laiocb
*)blockacb
;
117 struct io_event event
;
120 if (laiocb
->ret
!= -EINPROGRESS
)
124 * Note that as of Linux 2.6.31 neither the block device code nor any
125 * filesystem implements cancellation of AIO request.
126 * Thus the polling loop below is the normal code path.
128 ret
= io_cancel(laiocb
->ctx
->ctx
, &laiocb
->iocb
, &event
);
130 laiocb
->ret
= -ECANCELED
;
135 * We have to wait for the iocb to finish.
137 * The only way to get the iocb status update is by polling the io context.
138 * We might be able to do this slightly more optimal by removing the
141 while (laiocb
->ret
== -EINPROGRESS
)
142 qemu_laio_completion_cb(laiocb
->ctx
);
145 static AIOPool laio_pool
= {
146 .aiocb_size
= sizeof(struct qemu_laiocb
),
147 .cancel
= laio_cancel
,
150 BlockDriverAIOCB
*laio_submit(BlockDriverState
*bs
, void *aio_ctx
, int fd
,
151 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
152 BlockDriverCompletionFunc
*cb
, void *opaque
, int type
)
154 struct qemu_laio_state
*s
= aio_ctx
;
155 struct qemu_laiocb
*laiocb
;
157 off_t offset
= sector_num
* 512;
159 laiocb
= qemu_aio_get(&laio_pool
, bs
, cb
, opaque
);
162 laiocb
->nbytes
= nb_sectors
* 512;
164 laiocb
->ret
= -EINPROGRESS
;
166 iocbs
= &laiocb
->iocb
;
170 io_prep_pwritev(iocbs
, fd
, qiov
->iov
, qiov
->niov
, offset
);
173 io_prep_preadv(iocbs
, fd
, qiov
->iov
, qiov
->niov
, offset
);
175 /* Currently Linux kernel does not support other operations */
177 fprintf(stderr
, "%s: invalid AIO request type 0x%x.\n",
181 io_set_eventfd(&laiocb
->iocb
, s
->efd
);
184 if (io_submit(s
->ctx
, 1, &iocbs
) < 0)
186 return &laiocb
->common
;
189 qemu_aio_release(laiocb
);
195 void *laio_init(void)
197 struct qemu_laio_state
*s
;
199 s
= g_malloc0(sizeof(*s
));
200 s
->efd
= eventfd(0, 0);
203 fcntl(s
->efd
, F_SETFL
, O_NONBLOCK
);
205 if (io_setup(MAX_EVENTS
, &s
->ctx
) != 0)
208 qemu_aio_set_fd_handler(s
->efd
, qemu_laio_completion_cb
, NULL
,
209 qemu_laio_flush_cb
, NULL
, s
);