diff options
author | Marc Zyngier <maz@kernel.org> | 2020-10-14 11:29:27 +0300 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2020-11-10 11:34:24 +0300 |
commit | cdb5e02ed133731f8a6676a389ed40ca303cab7c (patch) | |
tree | 0b4e7d3d329cbe902aaacd80b76e9c3282956806 /arch/arm64/kvm/sys_regs.c | |
parent | 6ddbc281e2aa21c5917e015a373958455f5eb3c1 (diff) | |
download | linux-cdb5e02ed133731f8a6676a389ed40ca303cab7c.tar.xz |
KVM: arm64: Make kvm_skip_instr() and co private to HYP
In an effort to remove the vcpu PC manipulations from EL1 on nVHE
systems, move kvm_skip_instr() to be HYP-specific. EL1's intent
to increment PC post emulation is now signalled via a flag in the
vcpu structure.
Signed-off-by: Marc Zyngier <maz@kernel.org>
Diffstat (limited to 'arch/arm64/kvm/sys_regs.c')
-rw-r--r-- | arch/arm64/kvm/sys_regs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kvm/sys_regs.c b/arch/arm64/kvm/sys_regs.c index 1232a814ca7f..6a6f06205ea7 100644 --- a/arch/arm64/kvm/sys_regs.c +++ b/arch/arm64/kvm/sys_regs.c @@ -2199,7 +2199,7 @@ static void perform_access(struct kvm_vcpu *vcpu, /* Skip instruction if instructed so */ if (likely(r->access(vcpu, params, r))) - kvm_skip_instr(vcpu); + kvm_incr_pc(vcpu); } /* |