summaryrefslogtreecommitdiffstats
path: root/vl.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2010-02-08 10:06:54 -0600
committerAnthony Liguori <aliguori@us.ibm.com>2010-02-08 10:06:54 -0600
commit8217d945860c546844807e22088e8a7d97836aff (patch)
treeb30fa9e9ac08830317d4314c4e11374bc286c813 /vl.c
parent4cb26382182bf5256de1d9058739946d922e9f49 (diff)
parentc5f32c99c6855d466737daf1cd262e7e92062f87 (diff)
downloadhqemu-8217d945860c546844807e22088e8a7d97836aff.zip
hqemu-8217d945860c546844807e22088e8a7d97836aff.tar.gz
Merge remote branch 'qemu-kvm/uq/master' into staging-tmp
Diffstat (limited to 'vl.c')
-rw-r--r--vl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/vl.c b/vl.c
index 5ddf1fe..880bcd5 100644
--- a/vl.c
+++ b/vl.c
@@ -2996,6 +2996,7 @@ static void gui_update(void *opaque)
DisplayState *ds = opaque;
DisplayChangeListener *dcl = ds->listeners;
+ qemu_flush_coalesced_mmio_buffer();
dpy_refresh(ds);
while (dcl != NULL) {
@@ -3011,6 +3012,7 @@ static void nographic_update(void *opaque)
{
uint64_t interval = GUI_REFRESH_INTERVAL;
+ qemu_flush_coalesced_mmio_buffer();
qemu_mod_timer(nographic_timer, interval + qemu_get_clock(rt_clock));
}
@@ -3280,6 +3282,8 @@ static int cpu_can_run(CPUState *env)
return 0;
if (env->stopped)
return 0;
+ if (!vm_running)
+ return 0;
return 1;
}
OpenPOWER on IntegriCloud