qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [6826] monitor: sync from kvm state before generating output (Jan Kiszka)
@ 2009-03-12 20:12 Anthony Liguori
  0 siblings, 0 replies; only message in thread
From: Anthony Liguori @ 2009-03-12 20:12 UTC (permalink / raw)
  To: qemu-devel

Revision: 6826
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6826
Author:   aliguori
Date:     2009-03-12 20:12:57 +0000 (Thu, 12 Mar 2009)
Log Message:
-----------
monitor: sync from kvm state before generating output (Jan Kiszka)

Ported from the KVM tree: Synchronize the qemu cpu state with kvm's
before invoking various monitor info commands (like 'info registers').

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>

Modified Paths:
--------------
    trunk/monitor.c

Modified: trunk/monitor.c
===================================================================
--- trunk/monitor.c	2009-03-12 20:12:48 UTC (rev 6825)
+++ trunk/monitor.c	2009-03-12 20:12:57 UTC (rev 6826)
@@ -318,6 +318,7 @@
     if (!cur_mon->mon_cpu) {
         mon_set_cpu(0);
     }
+    cpu_synchronize_state(cur_mon->mon_cpu, 0);
     return cur_mon->mon_cpu;
 }
 
@@ -344,6 +345,7 @@
     mon_get_cpu();
 
     for(env = first_cpu; env != NULL; env = env->next_cpu) {
+        cpu_synchronize_state(env, 0);
         monitor_printf(mon, "%c CPU #%d:",
                        (env == mon->mon_cpu) ? '*' : ' ',
                        env->cpu_index);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-03-12 20:13 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-12 20:12 [Qemu-devel] [6826] monitor: sync from kvm state before generating output (Jan Kiszka) Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).