]>
Commit | Line | Data |
---|---|---|
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 | */ |
9f8540ec PB |
15 | #ifndef QEMU_RAW_AIO_H |
16 | #define QEMU_RAW_AIO_H | |
9ef91a67 CH |
17 | |
18 | /* AIO request types */ | |
19 | #define QEMU_AIO_READ 0x0001 | |
20 | #define QEMU_AIO_WRITE 0x0002 | |
21 | #define QEMU_AIO_IOCTL 0x0004 | |
b2e12bc6 | 22 | #define QEMU_AIO_FLUSH 0x0008 |
8238010b | 23 | #define QEMU_AIO_DISCARD 0x0010 |
97a2ae34 | 24 | #define QEMU_AIO_WRITE_ZEROES 0x0020 |
9ef91a67 | 25 | #define QEMU_AIO_TYPE_MASK \ |
8238010b | 26 | (QEMU_AIO_READ|QEMU_AIO_WRITE|QEMU_AIO_IOCTL|QEMU_AIO_FLUSH| \ |
97a2ae34 | 27 | QEMU_AIO_DISCARD|QEMU_AIO_WRITE_ZEROES) |
9ef91a67 CH |
28 | |
29 | /* AIO flags */ | |
30 | #define QEMU_AIO_MISALIGNED 0x1000 | |
8238010b | 31 | #define QEMU_AIO_BLKDEV 0x2000 |
9ef91a67 CH |
32 | |
33 | ||
5c6c3a6c | 34 | /* linux-aio.c - Linux native implementation */ |
9f8540ec | 35 | #ifdef CONFIG_LINUX_AIO |
5c6c3a6c | 36 | void *laio_init(void); |
abd269b7 | 37 | void laio_cleanup(void *s); |
7c84b1b8 | 38 | BlockAIOCB *laio_submit(BlockDriverState *bs, void *aio_ctx, int fd, |
5c6c3a6c | 39 | int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, |
097310b5 | 40 | BlockCompletionFunc *cb, void *opaque, int type); |
c2f3426c SH |
41 | void laio_detach_aio_context(void *s, AioContext *old_context); |
42 | void laio_attach_aio_context(void *s, AioContext *new_context); | |
1b3abdcc | 43 | void laio_io_plug(BlockDriverState *bs, void *aio_ctx); |
de354644 | 44 | void laio_io_unplug(BlockDriverState *bs, void *aio_ctx, bool unplug); |
9f8540ec | 45 | #endif |
5c6c3a6c | 46 | |
a2736526 PB |
47 | #ifdef _WIN32 |
48 | typedef struct QEMUWin32AIOState QEMUWin32AIOState; | |
49 | QEMUWin32AIOState *win32_aio_init(void); | |
99cc5989 | 50 | void win32_aio_cleanup(QEMUWin32AIOState *aio); |
a2736526 | 51 | int win32_aio_attach(QEMUWin32AIOState *aio, HANDLE hfile); |
7c84b1b8 | 52 | BlockAIOCB *win32_aio_submit(BlockDriverState *bs, |
a2736526 PB |
53 | QEMUWin32AIOState *aio, HANDLE hfile, |
54 | int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, | |
097310b5 | 55 | BlockCompletionFunc *cb, void *opaque, int type); |
85ebd381 SH |
56 | void win32_aio_detach_aio_context(QEMUWin32AIOState *aio, |
57 | AioContext *old_context); | |
58 | void win32_aio_attach_aio_context(QEMUWin32AIOState *aio, | |
59 | AioContext *new_context); | |
a2736526 PB |
60 | #endif |
61 | ||
9f8540ec | 62 | #endif /* QEMU_RAW_AIO_H */ |