diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2021-05-18 09:08:17 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-05-26 14:49:46 +0200 |
commit | 632a8873500d27022c584256afc11e57e2418b94 (patch) | |
tree | 548d46f948fe6082c9477e0980578bee15afe83e /util/qemu-config.c | |
parent | d349f92f78d26db2805ca39a7745cc70affea021 (diff) | |
download | qemu-632a8873500d27022c584256afc11e57e2418b94.zip qemu-632a8873500d27022c584256afc11e57e2418b94.tar.gz qemu-632a8873500d27022c584256afc11e57e2418b94.tar.bz2 |
qemu-config: load modules when instantiating option groups
Right now the SPICE module is special cased to be loaded when processing
of the -spice command line option. However, the spice option group
can also be brought in via -readconfig, in which case the module is
not loaded.
Add a generic hook to load modules that provide a QemuOpts group,
and use it for the "spice" and "iscsi" groups.
Fixes: #194
Fixes: https://bugs.launchpad.net/qemu/+bug/1910696
Cc: qemu-stable@nongnu.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'util/qemu-config.c')
-rw-r--r-- | util/qemu-config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/qemu-config.c b/util/qemu-config.c index 670bd6e..34974c4 100644 --- a/util/qemu-config.c +++ b/util/qemu-config.c @@ -16,6 +16,7 @@ static QemuOptsList *find_list(QemuOptsList **lists, const char *group, { int i; + qemu_load_module_for_opts(group); for (i = 0; lists[i] != NULL; i++) { if (strcmp(lists[i]->name, group) == 0) break; |