xref: /openbmc/qemu/include/block/raw-aio.h (revision 90fd9746689e865525ddb18cfec925f56159c740)
1 /*
2  * Declarations for AIO in the raw protocol
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  *
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.
14  */
15 
16 #ifndef QEMU_RAW_AIO_H
17 #define QEMU_RAW_AIO_H
18 
19 #include "block/aio.h"
20 #include "qemu/iov.h"
21 
22 /* AIO request types */
23 #define QEMU_AIO_READ         0x0001
24 #define QEMU_AIO_WRITE        0x0002
25 #define QEMU_AIO_IOCTL        0x0004
26 #define QEMU_AIO_FLUSH        0x0008
27 #define QEMU_AIO_DISCARD      0x0010
28 #define QEMU_AIO_WRITE_ZEROES 0x0020
29 #define QEMU_AIO_COPY_RANGE   0x0040
30 #define QEMU_AIO_TRUNCATE     0x0080
31 #define QEMU_AIO_ZONE_REPORT  0x0100
32 #define QEMU_AIO_ZONE_MGMT    0x0200
33 #define QEMU_AIO_TYPE_MASK \
34         (QEMU_AIO_READ | \
35          QEMU_AIO_WRITE | \
36          QEMU_AIO_IOCTL | \
37          QEMU_AIO_FLUSH | \
38          QEMU_AIO_DISCARD | \
39          QEMU_AIO_WRITE_ZEROES | \
40          QEMU_AIO_COPY_RANGE | \
41          QEMU_AIO_TRUNCATE | \
42          QEMU_AIO_ZONE_REPORT | \
43          QEMU_AIO_ZONE_MGMT)
44 
45 /* AIO flags */
46 #define QEMU_AIO_MISALIGNED   0x1000
47 #define QEMU_AIO_BLKDEV       0x2000
48 #define QEMU_AIO_NO_FALLBACK  0x4000
49 
50 
51 /* linux-aio.c - Linux native implementation */
52 #ifdef CONFIG_LINUX_AIO
53 typedef struct LinuxAioState LinuxAioState;
54 LinuxAioState *laio_init(Error **errp);
55 void laio_cleanup(LinuxAioState *s);
56 
57 /* laio_co_submit: submit I/O requests in the thread's current AioContext. */
58 int coroutine_fn laio_co_submit(int fd, uint64_t offset, QEMUIOVector *qiov,
59                                 int type, uint64_t dev_max_batch);
60 
61 void laio_detach_aio_context(LinuxAioState *s, AioContext *old_context);
62 void laio_attach_aio_context(LinuxAioState *s, AioContext *new_context);
63 
64 /*
65  * laio_io_plug/unplug work in the thread's current AioContext, therefore the
66  * caller must ensure that they are paired in the same IOThread.
67  */
68 void laio_io_plug(void);
69 void laio_io_unplug(uint64_t dev_max_batch);
70 #endif
71 /* io_uring.c - Linux io_uring implementation */
72 #ifdef CONFIG_LINUX_IO_URING
73 typedef struct LuringState LuringState;
74 LuringState *luring_init(Error **errp);
75 void luring_cleanup(LuringState *s);
76 
77 /* luring_co_submit: submit I/O requests in the thread's current AioContext. */
78 int coroutine_fn luring_co_submit(BlockDriverState *bs, int fd, uint64_t offset,
79                                   QEMUIOVector *qiov, int type);
80 void luring_detach_aio_context(LuringState *s, AioContext *old_context);
81 void luring_attach_aio_context(LuringState *s, AioContext *new_context);
82 
83 /*
84  * luring_io_plug/unplug work in the thread's current AioContext, therefore the
85  * caller must ensure that they are paired in the same IOThread.
86  */
87 void luring_io_plug(void);
88 void luring_io_unplug(void);
89 #endif
90 
91 #ifdef _WIN32
92 typedef struct QEMUWin32AIOState QEMUWin32AIOState;
93 QEMUWin32AIOState *win32_aio_init(void);
94 void win32_aio_cleanup(QEMUWin32AIOState *aio);
95 int win32_aio_attach(QEMUWin32AIOState *aio, HANDLE hfile);
96 BlockAIOCB *win32_aio_submit(BlockDriverState *bs,
97         QEMUWin32AIOState *aio, HANDLE hfile,
98         uint64_t offset, uint64_t bytes, QEMUIOVector *qiov,
99         BlockCompletionFunc *cb, void *opaque, int type);
100 void win32_aio_detach_aio_context(QEMUWin32AIOState *aio,
101                                   AioContext *old_context);
102 void win32_aio_attach_aio_context(QEMUWin32AIOState *aio,
103                                   AioContext *new_context);
104 #endif
105 
106 #endif /* QEMU_RAW_AIO_H */
107