qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH v13 15/20] file-posix: Add 'locking' option


From: Fam Zheng
Subject: [Qemu-devel] [PATCH v13 15/20] file-posix: Add 'locking' option
Date: Thu, 20 Apr 2017 15:52:32 +0800

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 0c48968..24ea3ff 100644
--- a/block/file-posix.c
+++ b/block/file-posix.c
@@ -394,6 +394,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 */ }
     },
 };
-- 
2.9.3




reply via email to

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