]> Git Repo - qemu.git/blob - block/raw-aio.h
Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging
[qemu.git] / block / raw-aio.h
1 /*
2  * Declarations for AIO in the raw protocol
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  *
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 #ifndef QEMU_RAW_AIO_H
16 #define QEMU_RAW_AIO_H
17
18 /* AIO request types */
19 #define QEMU_AIO_READ         0x0001
20 #define QEMU_AIO_WRITE        0x0002
21 #define QEMU_AIO_IOCTL        0x0004
22 #define QEMU_AIO_FLUSH        0x0008
23 #define QEMU_AIO_DISCARD      0x0010
24 #define QEMU_AIO_WRITE_ZEROES 0x0020
25 #define QEMU_AIO_TYPE_MASK \
26         (QEMU_AIO_READ|QEMU_AIO_WRITE|QEMU_AIO_IOCTL|QEMU_AIO_FLUSH| \
27          QEMU_AIO_DISCARD|QEMU_AIO_WRITE_ZEROES)
28
29 /* AIO flags */
30 #define QEMU_AIO_MISALIGNED   0x1000
31 #define QEMU_AIO_BLKDEV       0x2000
32
33
34 /* linux-aio.c - Linux native implementation */
35 #ifdef CONFIG_LINUX_AIO
36 void *laio_init(void);
37 void laio_cleanup(void *s);
38 BlockDriverAIOCB *laio_submit(BlockDriverState *bs, void *aio_ctx, int fd,
39         int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
40         BlockDriverCompletionFunc *cb, void *opaque, int type);
41 void laio_detach_aio_context(void *s, AioContext *old_context);
42 void laio_attach_aio_context(void *s, AioContext *new_context);
43 #endif
44
45 #ifdef _WIN32
46 typedef struct QEMUWin32AIOState QEMUWin32AIOState;
47 QEMUWin32AIOState *win32_aio_init(void);
48 void win32_aio_cleanup(QEMUWin32AIOState *aio);
49 int win32_aio_attach(QEMUWin32AIOState *aio, HANDLE hfile);
50 BlockDriverAIOCB *win32_aio_submit(BlockDriverState *bs,
51         QEMUWin32AIOState *aio, HANDLE hfile,
52         int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
53         BlockDriverCompletionFunc *cb, void *opaque, int type);
54 void win32_aio_detach_aio_context(QEMUWin32AIOState *aio,
55                                   AioContext *old_context);
56 void win32_aio_attach_aio_context(QEMUWin32AIOState *aio,
57                                   AioContext *new_context);
58 #endif
59
60 #endif /* QEMU_RAW_AIO_H */
This page took 0.024032 seconds and 4 git commands to generate.