diff options
author | Alon Levy <alevy@redhat.com> | 2012-03-14 20:33:37 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-03-19 13:12:19 +0100 |
commit | ad1be89948f88e89708b04ccd782456ccec3a6f0 (patch) | |
tree | fd16e902191c6e0a0ba6f461809c24d535f7c24f /vl.c | |
parent | 5dba0d453d238c283ac3cd2db810c843f9b822b7 (diff) | |
download | qemu-ad1be89948f88e89708b04ccd782456ccec3a6f0.zip qemu-ad1be89948f88e89708b04ccd782456ccec3a6f0.tar.gz qemu-ad1be89948f88e89708b04ccd782456ccec3a6f0.tar.bz2 |
spice: fix broken initialization
Commit 1b71f7c14fab6f00c2680d4489fbee7baf796e4f moved MODULE_INIT_QOM to
way before MODULE_INIT_MACHINE, thereby breaking assumptions made in
spice-core.c which registered both a type initializer and a machine
intializer.
This fix removes the type registration, and replaces it with calling
qemu_spice_init in vl.c after command line parsing (second pass) is
done, and after timers are armed, required by spice server.
Signed-off-by: Alon Levy <alevy@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -3369,6 +3369,11 @@ int main(int argc, char **argv, char **envp) exit(1); } +#ifdef CONFIG_SPICE + /* spice needs the timers to be initialized by this point */ + qemu_spice_init(); +#endif + if (icount_option && (kvm_enabled() || xen_enabled())) { fprintf(stderr, "-icount is not allowed with kvm or xen\n"); exit(1); |