[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v8 02/16] qapi/block-core: add option for io_uring
From: |
Aarushi Mehta |
Subject: |
[Qemu-devel] [PATCH v8 02/16] qapi/block-core: add option for io_uring |
Date: |
Tue, 30 Jul 2019 23:04:27 +0530 |
Only enumerates option for devices that support it. Since QAPI schema
supports io_uring, which is the actual name of the Linux API, it is
preferred over io-uring.
Signed-off-by: Aarushi Mehta <address@hidden>
Reviewed-by: Stefan Hajnoczi <address@hidden>
---
qapi/block-core.json | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/qapi/block-core.json b/qapi/block-core.json
index 0d43d4f37c..3dc93b483f 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -2792,11 +2792,13 @@
#
# @threads: Use qemu's thread pool
# @native: Use native AIO backend (only Linux and Windows)
+# @io_uring: Use linux io_uring (since 4.2)
#
# Since: 2.9
##
{ 'enum': 'BlockdevAioOptions',
- 'data': [ 'threads', 'native' ] }
+ 'data': [ 'threads', 'native',
+ { 'name': 'io_uring', 'if': 'defined(CONFIG_LINUX_IO_URING)' } ] }
##
# @BlockdevCacheOptions:
--
2.21.0
- [Qemu-devel] [PATCH v8 00/16] Add support for io_uring, Aarushi Mehta, 2019/07/30
- [Qemu-devel] [PATCH v8 01/16] configure: permit use of io_uring, Aarushi Mehta, 2019/07/30
- [Qemu-devel] [PATCH v8 02/16] qapi/block-core: add option for io_uring,
Aarushi Mehta <=
- [Qemu-devel] [PATCH v8 03/16] block/block: add BDRV flag for io_uring, Aarushi Mehta, 2019/07/30
- [Qemu-devel] [PATCH v8 04/16] block/io_uring: implements interfaces for io_uring, Aarushi Mehta, 2019/07/30
- [Qemu-devel] [PATCH v8 05/16] stubs: add stubs for io_uring interface, Aarushi Mehta, 2019/07/30
- [Qemu-devel] [PATCH v8 06/16] util/async: add aio interfaces for io_uring, Aarushi Mehta, 2019/07/30
- [Qemu-devel] [PATCH v8 07/16] blockdev: adds bdrv_parse_aio to use io_uring, Aarushi Mehta, 2019/07/30
- [Qemu-devel] [PATCH v8 08/16] block/file-posix.c: extend to use io_uring, Aarushi Mehta, 2019/07/30
- [Qemu-devel] [PATCH v8 09/16] block: add trace events for io_uring, Aarushi Mehta, 2019/07/30
- [Qemu-devel] [PATCH v8 10/16] block/io_uring: adds userspace completion polling, Aarushi Mehta, 2019/07/30
- [Qemu-devel] [PATCH v8 11/16] qemu-io: adds option to use aio engine, Aarushi Mehta, 2019/07/30
- [Qemu-devel] [PATCH v8 12/16] qemu-img: adds option to use aio engine for benchmarking, Aarushi Mehta, 2019/07/30