aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kvm')
-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 4dce80560d26..670ca8f151d2 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -566,7 +566,7 @@ static u32 group2_table[] = {
566#define insn_fetch(_type, _size, _eip) \ 566#define insn_fetch(_type, _size, _eip) \
567({ unsigned long _x; \ 567({ unsigned long _x; \
568 rc = do_insn_fetch(ctxt, ops, (_eip), &_x, (_size)); \ 568 rc = do_insn_fetch(ctxt, ops, (_eip), &_x, (_size)); \
569 if (rc != 0) \ 569 if (rc != X86EMUL_CONTINUE) \
570 goto done; \ 570 goto done; \
571 (_eip) += (_size); \ 571 (_eip) += (_size); \
572 (_type)_x; \ 572 (_type)_x; \