]> Git Repo - qemu.git/commitdiff
qemu-io: Support help options for --object
authorKevin Wolf <[email protected]>
Fri, 11 Oct 2019 19:49:17 +0000 (21:49 +0200)
committerKevin Wolf <[email protected]>
Mon, 14 Oct 2019 15:12:48 +0000 (17:12 +0200)
Instead of parsing help options as normal object properties and
returning an error, provide the same help functionality as the system
emulator in qemu-io, too.

Signed-off-by: Kevin Wolf <[email protected]>
Reviewed-by: Eric Blake <[email protected]>
qemu-io.c

index f64eca694039e27bad6cdf2f532a61558246007a..91e327659274017988078531e25f12073fa064be 100644 (file)
--- a/qemu-io.c
+++ b/qemu-io.c
@@ -475,6 +475,13 @@ static QemuOptsList qemu_object_opts = {
     },
 };
 
+static bool qemu_io_object_print_help(const char *type, QemuOpts *opts)
+{
+    if (user_creatable_print_help(type, opts)) {
+        exit(0);
+    }
+    return true;
+}
 
 static QemuOptsList file_opts = {
     .name = "file",
@@ -622,7 +629,7 @@ int main(int argc, char **argv)
 
     qemu_opts_foreach(&qemu_object_opts,
                       user_creatable_add_opts_foreach,
-                      NULL, &error_fatal);
+                      qemu_io_object_print_help, &error_fatal);
 
     if (!trace_init_backends()) {
         exit(1);
This page took 0.026331 seconds and 4 git commands to generate.