aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/kvm/emulate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
index acb9fcc283ee..0ff7d4bd1bb2 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -2720,7 +2720,7 @@ static int check_svme(struct x86_emulate_ctxt *ctxt)
2720 2720
2721static int check_svme_pa(struct x86_emulate_ctxt *ctxt) 2721static int check_svme_pa(struct x86_emulate_ctxt *ctxt)
2722{ 2722{
2723 u64 rax = kvm_register_read(ctxt->vcpu, VCPU_REGS_RAX); 2723 u64 rax = ctxt->decode.regs[VCPU_REGS_RAX];
2724 2724
2725 /* Valid physical address? */ 2725 /* Valid physical address? */
2726 if (rax & 0xffff000000000000) 2726 if (rax & 0xffff000000000000)
@@ -2742,7 +2742,7 @@ static int check_rdtsc(struct x86_emulate_ctxt *ctxt)
2742static int check_rdpmc(struct x86_emulate_ctxt *ctxt) 2742static int check_rdpmc(struct x86_emulate_ctxt *ctxt)
2743{ 2743{
2744 u64 cr4 = ctxt->ops->get_cr(ctxt, 4); 2744 u64 cr4 = ctxt->ops->get_cr(ctxt, 4);
2745 u64 rcx = kvm_register_read(ctxt->vcpu, VCPU_REGS_RCX); 2745 u64 rcx = ctxt->decode.regs[VCPU_REGS_RCX];
2746 2746
2747 if ((!(cr4 & X86_CR4_PCE) && ctxt->ops->cpl(ctxt)) || 2747 if ((!(cr4 & X86_CR4_PCE) && ctxt->ops->cpl(ctxt)) ||
2748 (rcx > 3)) 2748 (rcx > 3))