summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorGleb Natapov <gleb@redhat.com>2010-03-15 14:38:30 (GMT)
committerAvi Kivity <avi@redhat.com>2010-05-17 09:15:48 (GMT)
commitaf5b4f7ff7ec76400b89db9538accd9aeb996da4 (patch)
treeb1aaf004ac6ae990110bacbee6e68f6a5ae8994e /arch
parentc73e197bc525e67b71578126b679446f5b88b508 (diff)
downloadlinux-fsl-qoriq-af5b4f7ff7ec76400b89db9538accd9aeb996da4.tar.xz
KVM: x86 emulator: check return value against correct define
Check return value against correct define instead of open code the value. Signed-off-by: Gleb Natapov <gleb@redhat.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/kvm/emulate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
index 4dce805..670ca8f 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -566,7 +566,7 @@ static u32 group2_table[] = {
#define insn_fetch(_type, _size, _eip) \
({ unsigned long _x; \
rc = do_insn_fetch(ctxt, ops, (_eip), &_x, (_size)); \
- if (rc != 0) \
+ if (rc != X86EMUL_CONTINUE) \
goto done; \
(_eip) += (_size); \
(_type)_x; \