diff options
| author | Anthony Liguori <aliguori@us.ibm.com> | 2012-03-19 13:37:23 -0500 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-03-19 13:37:23 -0500 |
| commit | dfebfcf02f74ed47b61841037d7eda1baffb4d6e (patch) | |
| tree | 15ce64dc8a2bc0ee84a85c1d3f6c5dfe8bae3681 /vl.c | |
| parent | 49f54371f22e3e95124e8115050cea29fadde606 (diff) | |
| parent | ad1be89948f88e89708b04ccd782456ccec3a6f0 (diff) | |
| download | focaccia-qemu-dfebfcf02f74ed47b61841037d7eda1baffb4d6e.tar.gz focaccia-qemu-dfebfcf02f74ed47b61841037d7eda1baffb4d6e.zip | |
Merge remote-tracking branch 'spice/spice.v50' into staging
* spice/spice.v50: spice: fix broken initialization hw/qxl.c: Fix compilation failures on 32 bit hosts qxl/qxl_render.c: add trace events qxl: switch qxl.c to trace-events qxl: init_pipe_signaling: exit on failure monitor: fix client_migrate_info error handling spice: set spice uuid and name
Diffstat (limited to 'vl.c')
| -rw-r--r-- | vl.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vl.c b/vl.c index bd95539ff7..eeb634b9ad 100644 --- a/vl.c +++ b/vl.c @@ -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); |