]> Git Repo - qemu.git/blame - include/block/raw-aio.h
Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging
[qemu.git] / include / block / raw-aio.h
CommitLineData
9ef91a67 1/*
9f8540ec 2 * Declarations for AIO in the raw protocol
9ef91a67
CH
3 *
4 * Copyright IBM, Corp. 2008
5 *
6 * Authors:
7 * Anthony Liguori <[email protected]>
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.
9ef91a67 14 */
ec150c7e 15
9f8540ec
PB
16#ifndef QEMU_RAW_AIO_H
17#define QEMU_RAW_AIO_H
9ef91a67 18
ec150c7e 19#include "block/aio.h"
2174f12b 20#include "qemu/coroutine.h"
daf015ef
MA
21#include "qemu/iov.h"
22
9ef91a67
CH
23/* AIO request types */
24#define QEMU_AIO_READ 0x0001
25#define QEMU_AIO_WRITE 0x0002
26#define QEMU_AIO_IOCTL 0x0004
b2e12bc6 27#define QEMU_AIO_FLUSH 0x0008
8238010b 28#define QEMU_AIO_DISCARD 0x0010
97a2ae34 29#define QEMU_AIO_WRITE_ZEROES 0x0020
1efad060 30#define QEMU_AIO_COPY_RANGE 0x0040
93f4e2ff 31#define QEMU_AIO_TRUNCATE 0x0080
9ef91a67 32#define QEMU_AIO_TYPE_MASK \
1efad060
FZ
33 (QEMU_AIO_READ | \
34 QEMU_AIO_WRITE | \
35 QEMU_AIO_IOCTL | \
36 QEMU_AIO_FLUSH | \
37 QEMU_AIO_DISCARD | \
38 QEMU_AIO_WRITE_ZEROES | \
93f4e2ff
KW
39 QEMU_AIO_COPY_RANGE | \
40 QEMU_AIO_TRUNCATE)
9ef91a67
CH
41
42/* AIO flags */
43#define QEMU_AIO_MISALIGNED 0x1000
8238010b 44#define QEMU_AIO_BLKDEV 0x2000
738301e1 45#define QEMU_AIO_NO_FALLBACK 0x4000
9ef91a67
CH
46
47
5c6c3a6c 48/* linux-aio.c - Linux native implementation */
9f8540ec 49#ifdef CONFIG_LINUX_AIO
dd7f7ed1 50typedef struct LinuxAioState LinuxAioState;
ed6e2161 51LinuxAioState *laio_init(Error **errp);
dd7f7ed1 52void laio_cleanup(LinuxAioState *s);
2174f12b 53int coroutine_fn laio_co_submit(BlockDriverState *bs, LinuxAioState *s, int fd,
9d52aa3c 54 uint64_t offset, QEMUIOVector *qiov, int type);
dd7f7ed1
PB
55void laio_detach_aio_context(LinuxAioState *s, AioContext *old_context);
56void laio_attach_aio_context(LinuxAioState *s, AioContext *new_context);
57void laio_io_plug(BlockDriverState *bs, LinuxAioState *s);
58void laio_io_unplug(BlockDriverState *bs, LinuxAioState *s);
9f8540ec 59#endif
6663a0a3
AM
60/* io_uring.c - Linux io_uring implementation */
61#ifdef CONFIG_LINUX_IO_URING
62typedef struct LuringState LuringState;
63LuringState *luring_init(Error **errp);
64void luring_cleanup(LuringState *s);
65int coroutine_fn luring_co_submit(BlockDriverState *bs, LuringState *s, int fd,
66 uint64_t offset, QEMUIOVector *qiov, int type);
67void luring_detach_aio_context(LuringState *s, AioContext *old_context);
68void luring_attach_aio_context(LuringState *s, AioContext *new_context);
69void luring_io_plug(BlockDriverState *bs, LuringState *s);
70void luring_io_unplug(BlockDriverState *bs, LuringState *s);
71#endif
5c6c3a6c 72
a2736526
PB
73#ifdef _WIN32
74typedef struct QEMUWin32AIOState QEMUWin32AIOState;
75QEMUWin32AIOState *win32_aio_init(void);
99cc5989 76void win32_aio_cleanup(QEMUWin32AIOState *aio);
a2736526 77int win32_aio_attach(QEMUWin32AIOState *aio, HANDLE hfile);
7c84b1b8 78BlockAIOCB *win32_aio_submit(BlockDriverState *bs,
a2736526 79 QEMUWin32AIOState *aio, HANDLE hfile,
de7056a3 80 uint64_t offset, uint64_t bytes, QEMUIOVector *qiov,
097310b5 81 BlockCompletionFunc *cb, void *opaque, int type);
85ebd381
SH
82void win32_aio_detach_aio_context(QEMUWin32AIOState *aio,
83 AioContext *old_context);
84void win32_aio_attach_aio_context(QEMUWin32AIOState *aio,
85 AioContext *new_context);
a2736526
PB
86#endif
87
9f8540ec 88#endif /* QEMU_RAW_AIO_H */
This page took 0.524697 seconds and 4 git commands to generate.