* [Qemu-devel] [6461] kvm-x86: Remove eflags conversion into emulator format (Jan Kiszka)
@ 2009-01-26 20:32 Anthony Liguori
0 siblings, 0 replies; only message in thread
From: Anthony Liguori @ 2009-01-26 20:32 UTC (permalink / raw)
To: qemu-devel
Revision: 6461
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6461
Author: aliguori
Date: 2009-01-26 20:32:22 +0000 (Mon, 26 Jan 2009)
Log Message:
-----------
kvm-x86: Remove eflags conversion into emulator format (Jan Kiszka)
It seems that the conversion of the kernel-delivered eflags state into
qemu's internal split representation was once needed in an older kvm
design (register read-back may have taken place from inside cpu_exec).
Today it is plain wrong and causes incorrect cpu state reporting (gdb,
monitor) and should also corrupt its saving (savevm, migration). Drop
the related lines.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Modified Paths:
--------------
trunk/target-i386/kvm.c
Modified: trunk/target-i386/kvm.c
===================================================================
--- trunk/target-i386/kvm.c 2009-01-26 20:32:18 UTC (rev 6460)
+++ trunk/target-i386/kvm.c 2009-01-26 20:32:22 UTC (rev 6461)
@@ -445,10 +445,6 @@
}
}
env->hflags = (env->hflags & HFLAG_COPY_MASK) | hflags;
- env->cc_src = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
- env->df = 1 - (2 * ((env->eflags >> 10) & 1));
- env->cc_op = CC_OP_EFLAGS;
- env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
return 0;
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-01-26 20:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-26 20:32 [Qemu-devel] [6461] kvm-x86: Remove eflags conversion into emulator format (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).