Commit 4fa1f0dc authored by Kevin Wolf's avatar Kevin Wolf
Browse files

qemu-io: Support help options for --object



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: default avatarKevin Wolf <kwolf@redhat.com>
Reviewed-by: default avatarEric Blake <eblake@redhat.com>
parent 3e9297f3
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -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);