summaryrefslogtreecommitdiff
path: root/target-i386
diff options
context:
space:
mode:
authorGleb Natapov <gleb@redhat.com>2009-09-10 14:32:55 +0300
committerAnthony Liguori <aliguori@us.ibm.com>2009-09-11 11:10:09 -0500
commit2637c754ccdb286890ed2a8d0d1da775dbd062af (patch)
tree2b6cec7d39b4d22a0e60e7f66c4970a31a57feaf /target-i386
parent7e72abc382b700a72549e8147bdea413534eeedc (diff)
downloadqemu-2637c754ccdb286890ed2a8d0d1da775dbd062af.tar.gz
kvm_arch_get_registers() shouldn't be called directly
Direct call to kvm_arch_get_registers() bypass logic in cpu_synchronize_state() Signed-off-by: Gleb Natapov <gleb@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'target-i386')
-rw-r--r--target-i386/helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c
index 27063e58b7..8abbed0a6f 100644
--- a/target-i386/helper.c
+++ b/target-i386/helper.c
@@ -744,7 +744,7 @@ void cpu_dump_state(CPUState *env, FILE *f,
static const char *seg_name[6] = { "ES", "CS", "SS", "DS", "FS", "GS" };
if (kvm_enabled())
- kvm_arch_get_registers(env);
+ cpu_synchronize_state(env);
eflags = env->eflags;
#ifdef TARGET_X86_64