Loading arch/x86/kvm/emulate.c +2 −4 Original line number Diff line number Diff line Loading @@ -5683,11 +5683,9 @@ int x86_emulate_insn(struct x86_emulate_ctxt *ctxt) if (ctxt->d & Fastop) { void (*fop)(struct fastop *) = (void *)ctxt->execute; rc = fastop(ctxt, fop); if (rc != X86EMUL_CONTINUE) goto done; goto writeback; } } else { rc = ctxt->execute(ctxt); } if (rc != X86EMUL_CONTINUE) goto done; goto writeback; Loading Loading
arch/x86/kvm/emulate.c +2 −4 Original line number Diff line number Diff line Loading @@ -5683,11 +5683,9 @@ int x86_emulate_insn(struct x86_emulate_ctxt *ctxt) if (ctxt->d & Fastop) { void (*fop)(struct fastop *) = (void *)ctxt->execute; rc = fastop(ctxt, fop); if (rc != X86EMUL_CONTINUE) goto done; goto writeback; } } else { rc = ctxt->execute(ctxt); } if (rc != X86EMUL_CONTINUE) goto done; goto writeback; Loading