From: Fam Zheng Date: Tue, 2 May 2017 16:35:51 +0000 (+0800) Subject: file-win32: Error out if locking=on X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1c3a555c35f2124d45a295eb715e50512526810e;p=qemu.git file-win32: Error out if locking=on We share the same set of QAPI options with file-posix, but locking is not supported here. So error out if it is specified as 'on' for now. Signed-off-by: Fam Zheng Signed-off-by: Kevin Wolf --- diff --git a/block/file-win32.c b/block/file-win32.c index d1eb0a14b2..1a35dbabf2 100644 --- a/block/file-win32.c +++ b/block/file-win32.c @@ -344,6 +344,11 @@ static int raw_open(BlockDriverState *bs, QDict *options, int flags, goto fail; } + if (qdict_get_try_bool(options, "locking", false)) { + error_setg(errp, "locking=on is not supported on Windows"); + goto fail; + } + filename = qemu_opt_get(opts, "filename"); use_aio = get_aio_option(opts, flags, &local_err);