From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LhrH3-0007jn-Pw for qemu-devel@nongnu.org; Thu, 12 Mar 2009 16:13:01 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LhrH1-0007iY-DC for qemu-devel@nongnu.org; Thu, 12 Mar 2009 16:13:00 -0400 Received: from [199.232.76.173] (port=56151 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LhrH0-0007iT-Ny for qemu-devel@nongnu.org; Thu, 12 Mar 2009 16:12:58 -0400 Received: from savannah.gnu.org ([199.232.41.3]:51325 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LhrH0-0005EV-G0 for qemu-devel@nongnu.org; Thu, 12 Mar 2009 16:12:58 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1LhrGz-0004AB-Rb for qemu-devel@nongnu.org; Thu, 12 Mar 2009 20:12:57 +0000 Received: from aliguori by cvs.savannah.gnu.org with local (Exim 4.69) (envelope-from ) id 1LhrGz-0004A7-Km for qemu-devel@nongnu.org; Thu, 12 Mar 2009 20:12:57 +0000 MIME-Version: 1.0 Errors-To: aliguori Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Anthony Liguori Message-Id: Date: Thu, 12 Mar 2009 20:12:57 +0000 Subject: [Qemu-devel] [6826] monitor: sync from kvm state before generating output (Jan Kiszka) Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org 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 Signed-off-by: Anthony Liguori 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);