diff options
author | Tiejun Chen <tiejun.chen@windriver.com> | 2013-10-23 03:26:48 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2014-01-09 10:15:10 +0100 |
commit | 9bd880a2c882d2181b1eaba0aed422cced8f0e8a (patch) | |
tree | 04d627755115ed0d56e2538f0c7436dd0fff60c3 /arch/powerpc/kvm/booke.c | |
parent | kvm: powerpc: use caching attributes as per linux pte (diff) | |
download | linux-9bd880a2c882d2181b1eaba0aed422cced8f0e8a.tar.xz linux-9bd880a2c882d2181b1eaba0aed422cced8f0e8a.zip |
KVM: PPC: Book3E HV: call RECONCILE_IRQ_STATE to sync the software state
Rather than calling hard_irq_disable() when we're back in C code
we can just call RECONCILE_IRQ_STATE to soft disable IRQs while
we're already in hard disabled state.
This should be functionally equivalent to the code before, but
cleaner and faster.
Signed-off-by: Tiejun Chen <tiejun.chen@windriver.com>
[agraf: fix comment, commit message]
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'arch/powerpc/kvm/booke.c')
-rw-r--r-- | arch/powerpc/kvm/booke.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/powerpc/kvm/booke.c b/arch/powerpc/kvm/booke.c index 54ee1c01798f..6a8c32ec4173 100644 --- a/arch/powerpc/kvm/booke.c +++ b/arch/powerpc/kvm/booke.c @@ -879,17 +879,6 @@ int kvmppc_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu, int s; int idx; -#ifdef CONFIG_PPC64 - WARN_ON(local_paca->irq_happened != 0); -#endif - - /* - * We enter with interrupts disabled in hardware, but - * we need to call hard_irq_disable anyway to ensure that - * the software state is kept in sync. - */ - hard_irq_disable(); - /* update before a new last_exit_type is rewritten */ kvmppc_update_timing_stats(vcpu); |