[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-block] [RFC PATCH 7/9] blockdev: accept io_uring as option
From: |
Aarushi Mehta |
Subject: |
[Qemu-block] [RFC PATCH 7/9] blockdev: accept io_uring as option |
Date: |
Wed, 22 May 2019 05:22:13 +0530 |
Signed-off-by: Aarushi Mehta <address@hidden>
---
blockdev.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/blockdev.c b/blockdev.c
index 79fbac8450..b44b9d660d 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -386,6 +386,8 @@ static void extract_common_blockdev_options(QemuOpts *opts,
int *bdrv_flags,
if ((aio = qemu_opt_get(opts, "aio")) != NULL) {
if (!strcmp(aio, "native")) {
*bdrv_flags |= BDRV_O_NATIVE_AIO;
+ } else if (!strcmp(aio, "io_uring")) {
+ *bdrv_flags |= BDRV_O_IO_URING;
} else if (!strcmp(aio, "threads")) {
/* this is the default */
} else {
@@ -4547,7 +4549,7 @@ QemuOptsList qemu_common_drive_opts = {
},{
.name = "aio",
.type = QEMU_OPT_STRING,
- .help = "host AIO implementation (threads, native)",
+ .help = "host AIO implementation (threads, native, io_uring)",
},{
.name = BDRV_OPT_CACHE_WB,
.type = QEMU_OPT_BOOL,
--
2.17.1
- [Qemu-block] [RFC PATCH 9/9] configure: permits use of io_uring with probe, (continued)
- [Qemu-block] [RFC PATCH 9/9] configure: permits use of io_uring with probe, Aarushi Mehta, 2019/05/21
- [Qemu-block] [RFC PATCH 4/9] stubs: add aio interface stubs for io_uring, Aarushi Mehta, 2019/05/21
- [Qemu-block] [RFC PATCH 3/9] include/block: declare interfaces for io_uring, Aarushi Mehta, 2019/05/21
- [Qemu-block] [RFC PATCH 5/9] util/asyn: add aio interfaces for io_uring, Aarushi Mehta, 2019/05/21
- [Qemu-block] [RFC PATCH 2/9] block/block: add BDRV flag for io_uring, Aarushi Mehta, 2019/05/21
- [Qemu-block] [RFC PATCH 8/9] block/file-posix: extends to use with io_uring, Aarushi Mehta, 2019/05/21
- [Qemu-block] [RFC PATCH 7/9] blockdev: accept io_uring as option,
Aarushi Mehta <=
- [Qemu-block] [RFC PATCH 6/9] block/io_uring: implements interfaces for io_uring, Aarushi Mehta, 2019/05/21
- [Qemu-block] [RFC PATCH 1/9] qapi/block-core: add option for io_uring, Aarushi Mehta, 2019/05/21
- Re: [Qemu-block] [Qemu-devel] [RFC PATCH 0/9] Add support for io_uring, Stefan Hajnoczi, 2019/05/22
- [Qemu-block] [RFC PATCH 0/9] Add support for io_uring, Aarushi Mehta, 2019/05/21