From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LNYw8-0002J9-Q1 for qemu-devel@nongnu.org; Thu, 15 Jan 2009 15:35:32 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LNYw6-0002HR-Rd for qemu-devel@nongnu.org; Thu, 15 Jan 2009 15:35:32 -0500 Received: from [199.232.76.173] (port=33978 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LNYw6-0002Gn-KB for qemu-devel@nongnu.org; Thu, 15 Jan 2009 15:35:30 -0500 Received: from qw-out-1920.google.com ([74.125.92.146]:64027) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LNYw6-0007wV-6M for qemu-devel@nongnu.org; Thu, 15 Jan 2009 15:35:30 -0500 Received: by qw-out-1920.google.com with SMTP id 5so285597qwc.4 for ; Thu, 15 Jan 2009 12:35:29 -0800 (PST) Message-ID: <496F9DF9.4090605@codemonkey.ws> Date: Thu, 15 Jan 2009 14:35:05 -0600 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH] monitor: sync from kvm state before generating output References: <496DFA06.3080709@siemens.com> In-Reply-To: <496DFA06.3080709@siemens.com> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit 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 Jan Kiszka wrote: > [ Also available via git://git.kiszka.org/qemu.git queue/gdb ] > > 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 > This depends on your previous patch so when you resubmit the previous one, please include this in the series and I'll apply both. Regards, Anthony Liguori > --- > > monitor.c | 4 ++++ > 1 files changed, 4 insertions(+), 0 deletions(-) > > diff --git a/monitor.c b/monitor.c > index 7ff9890..5a040b4 100644 > --- a/monitor.c > +++ b/monitor.c > @@ -297,6 +297,8 @@ static CPUState *mon_get_cpu(void) > if (!mon_cpu) { > mon_set_cpu(0); > } > + if (kvm_enabled()) > + kvm_get_registers(mon_cpu); > return mon_cpu; > } > > @@ -323,6 +325,8 @@ static void do_info_cpus(void) > mon_get_cpu(); > > for(env = first_cpu; env != NULL; env = env->next_cpu) { > + if (kvm_enabled()) > + kvm_get_registers(env); > term_printf("%c CPU #%d:", > (env == mon_cpu) ? '*' : ' ', > env->cpu_index); > > >