raw-posix: Switch to bdrv_co_* interfaces
[qemu.git] / block / raw-aio.h
blob03bbfba565ec24f2faf9c384faa14f1e43f85d3e
1 /*
2 * Declarations for AIO in the raw protocol
4 * Copyright IBM, Corp. 2008
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
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.
15 #ifndef QEMU_RAW_AIO_H
16 #define QEMU_RAW_AIO_H
18 #include "qemu/coroutine.h"
19 #include "qemu/iov.h"
21 /* AIO request types */
22 #define QEMU_AIO_READ 0x0001
23 #define QEMU_AIO_WRITE 0x0002
24 #define QEMU_AIO_IOCTL 0x0004
25 #define QEMU_AIO_FLUSH 0x0008
26 #define QEMU_AIO_DISCARD 0x0010
27 #define QEMU_AIO_WRITE_ZEROES 0x0020
28 #define QEMU_AIO_TYPE_MASK \
29 (QEMU_AIO_READ|QEMU_AIO_WRITE|QEMU_AIO_IOCTL|QEMU_AIO_FLUSH| \
30 QEMU_AIO_DISCARD|QEMU_AIO_WRITE_ZEROES)
32 /* AIO flags */
33 #define QEMU_AIO_MISALIGNED 0x1000
34 #define QEMU_AIO_BLKDEV 0x2000
37 /* linux-aio.c - Linux native implementation */
38 #ifdef CONFIG_LINUX_AIO
39 typedef struct LinuxAioState LinuxAioState;
40 LinuxAioState *laio_init(void);
41 void laio_cleanup(LinuxAioState *s);
42 int coroutine_fn laio_co_submit(BlockDriverState *bs, LinuxAioState *s, int fd,
43 int64_t sector_num, QEMUIOVector *qiov,
44 int nb_sectors, int type);
45 BlockAIOCB *laio_submit(BlockDriverState *bs, LinuxAioState *s, int fd,
46 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
47 BlockCompletionFunc *cb, void *opaque, int type);
48 void laio_detach_aio_context(LinuxAioState *s, AioContext *old_context);
49 void laio_attach_aio_context(LinuxAioState *s, AioContext *new_context);
50 void laio_io_plug(BlockDriverState *bs, LinuxAioState *s);
51 void laio_io_unplug(BlockDriverState *bs, LinuxAioState *s);
52 #endif
54 #ifdef _WIN32
55 typedef struct QEMUWin32AIOState QEMUWin32AIOState;
56 QEMUWin32AIOState *win32_aio_init(void);
57 void win32_aio_cleanup(QEMUWin32AIOState *aio);
58 int win32_aio_attach(QEMUWin32AIOState *aio, HANDLE hfile);
59 BlockAIOCB *win32_aio_submit(BlockDriverState *bs,
60 QEMUWin32AIOState *aio, HANDLE hfile,
61 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
62 BlockCompletionFunc *cb, void *opaque, int type);
63 void win32_aio_detach_aio_context(QEMUWin32AIOState *aio,
64 AioContext *old_context);
65 void win32_aio_attach_aio_context(QEMUWin32AIOState *aio,
66 AioContext *new_context);
67 #endif
69 #endif /* QEMU_RAW_AIO_H */