[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] x86_emulate: fix unintended writeback on cmp/test instructions
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1216990827 -3600 # Node ID 2e4ecfc834602ff4b13564532dc33d9f94c03f89 # Parent 267a59f9580bf8694bf8a9e4b2ea3377f5262039 x86_emulate: fix unintended writeback on cmp/test instructions This patch fixes an issue when x86_emulate is called with force_writeback=1 set. It resulted in cmp and test instructions with memory operands to have the mem value written back after instruction emulation finished. This caused false alarms on writes to RO mem, and might have caused other issues if unintended writes occured to device registers in mmio space. Signed-off-by: Trolle Selander <trolle.selander@xxxxxxxxxxxxx> --- xen/arch/x86/x86_emulate/x86_emulate.c | 2 ++ 1 files changed, 2 insertions(+) diff -r 267a59f9580b -r 2e4ecfc83460 xen/arch/x86/x86_emulate/x86_emulate.c --- a/xen/arch/x86/x86_emulate/x86_emulate.c Fri Jul 25 13:59:07 2008 +0100 +++ b/xen/arch/x86/x86_emulate/x86_emulate.c Fri Jul 25 14:00:27 2008 +0100 @@ -1606,6 +1606,7 @@ x86_emulate( dst.val = _regs.eax; case 0x38 ... 0x3b: cmp: /* cmp */ emulate_2op_SrcV("cmp", src, dst, _regs.eflags); + dst.type = OP_NONE; break; case 0x62: /* bound */ { @@ -1707,6 +1708,7 @@ x86_emulate( dst.val = _regs.eax; case 0x84 ... 0x85: test: /* test */ emulate_2op_SrcV("test", src, dst, _regs.eflags); + dst.type = OP_NONE; break; case 0x86 ... 0x87: xchg: /* xchg */ _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |