diff options
author | Mahmoud Mandour | 2021-07-30 15:58:08 +0200 |
---|---|---|
committer | Alex Bennée | 2021-09-02 12:29:34 +0200 |
commit | 8a3eab66e62993228887588d753eefacc918184b (patch) | |
tree | 0e5fd45c9a30adaa48206ca50d231aeac45e45ca /contrib | |
parent | plugins/hotpages: introduce sortby arg and parsed bool args correctly (diff) | |
download | qemu-8a3eab66e62993228887588d753eefacc918184b.tar.gz qemu-8a3eab66e62993228887588d753eefacc918184b.tar.xz qemu-8a3eab66e62993228887588d753eefacc918184b.zip |
plugins/hotblocks: Added correct boolean argument parsing
Signed-off-by: Mahmoud Mandour <ma.mandourr@gmail.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20210730135817.17816-5-ma.mandourr@gmail.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/plugins/hotblocks.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/contrib/plugins/hotblocks.c b/contrib/plugins/hotblocks.c index 4b08340143..062200a7a4 100644 --- a/contrib/plugins/hotblocks.c +++ b/contrib/plugins/hotblocks.c @@ -133,8 +133,18 @@ QEMU_PLUGIN_EXPORT int qemu_plugin_install(qemu_plugin_id_t id, const qemu_info_t *info, int argc, char **argv) { - if (argc && strcmp(argv[0], "inline") == 0) { - do_inline = true; + for (int i = 0; i < argc; i++) { + char *opt = argv[i]; + g_autofree char **tokens = g_strsplit(opt, "=", 2); + if (g_strcmp0(tokens[0], "inline") == 0) { + if (!qemu_plugin_bool_parse(tokens[0], tokens[1], &do_inline)) { + fprintf(stderr, "boolean argument parsing failed: %s\n", opt); + return -1; + } + } else { + fprintf(stderr, "option parsing failed: %s\n", opt); + return -1; + } } plugin_init(); |