qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v15 16/21] file-posix: Add 'locking' option


From: Kevin Wolf
Subject: Re: [Qemu-devel] [PATCH v15 16/21] file-posix: Add 'locking' option
Date: Wed, 26 Apr 2017 14:41:36 +0200
User-agent: Mutt/1.5.21 (2010-09-15)

Am 26.04.2017 um 05:34 hat Fam Zheng geschrieben:
> Making this option available even before implementing it will let
> converting tests easier: in coming patches they can specify the option
> already when necessary, before we actually write code to lock the
> images.
> 
> Signed-off-by: Fam Zheng <address@hidden>
> ---
>  block/file-posix.c | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/block/file-posix.c b/block/file-posix.c
> index ade71db..2114720 100644
> --- a/block/file-posix.c
> +++ b/block/file-posix.c
> @@ -392,6 +392,11 @@ static QemuOptsList raw_runtime_opts = {
>              .type = QEMU_OPT_STRING,
>              .help = "host AIO implementation (threads, native)",
>          },
> +        {
> +            .name = "locking",
> +            .type = QEMU_OPT_BOOL,
> +            .help = "lock the file",
> +        },
>          { /* end of list */ }
>      },
>  };

I don't mind whether it happens in this patch or when the option is
actually implemented, but this option needs to be added to the QAPI
schema.

Kevin



reply via email to

[Prev in Thread] Current Thread [Next in Thread]