[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v5 02/12] qapi/block-core: add option for io_uri
From: |
Fam Zheng |
Subject: |
Re: [Qemu-devel] [PATCH v5 02/12] qapi/block-core: add option for io_uring |
Date: |
Tue, 11 Jun 2019 15:36:53 +0800 |
User-agent: |
NeoMutt/20170113 (1.7.2) |
On Mon, 06/10 19:18, Aarushi Mehta wrote:
> Option only enumerates for hosts that support it.
>
> 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 1defcde048..db7eedd058 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.1)
> #
> # Since: 2.9
> ##
> { 'enum': 'BlockdevAioOptions',
> - 'data': [ 'threads', 'native' ] }
> + 'data': [ 'threads', 'native',
> + { 'name': 'io_uring', 'if': 'defined(CONFIG_LINUX_IO_URING)' } ]
> }
Question: 'native' has a dependency on libaio but it doesn't have the
condition. Is the inconsistency intended?
>
> ##
> # @BlockdevCacheOptions:
> --
> 2.17.1
>
- [Qemu-devel] [PATCH v5 00/12] Add support for io_uring, Aarushi Mehta, 2019/06/10
- [Qemu-devel] [PATCH v5 01/12] configure: permit use of io_uring, Aarushi Mehta, 2019/06/10
- [Qemu-devel] [PATCH v5 02/12] qapi/block-core: add option for io_uring, Aarushi Mehta, 2019/06/10
- Re: [Qemu-devel] [PATCH v5 02/12] qapi/block-core: add option for io_uring,
Fam Zheng <=
- [Qemu-devel] [PATCH v5 03/12] block/block: add BDRV flag for io_uring, Aarushi Mehta, 2019/06/10
- [Qemu-devel] [PATCH v5 05/12] stubs: add stubs for io_uring interface, Aarushi Mehta, 2019/06/10
- [Qemu-devel] [PATCH v5 04/12] block/io_uring: implements interfaces for io_uring, Aarushi Mehta, 2019/06/10