]> git.karo-electronics.de Git - karo-tx-linux.git/commit
KVM: PPC: Book3S: PR: Rework irq disabling
authorAlexander Graf <agraf@suse.de>
Sun, 12 Aug 2012 23:04:19 +0000 (01:04 +0200)
committerAlexander Graf <agraf@suse.de>
Fri, 5 Oct 2012 21:33:34 +0000 (23:33 +0200)
commit93a763e33ebb00c0ea12a24b200a72265960c0f3
tree6c3f609ad1d1b74c0e08eb616eec0715c6f7679b
parent9e84423f4bb429a812b1929c0121d8474051b253
KVM: PPC: Book3S: PR: Rework irq disabling

Today, we disable preemption while inside guest context, because we need
to expose to the world that we are not in a preemptible context. However,
during that time we already have interrupts disabled, which would indicate
that we are in a non-preemptible context.

The reason the checks for irqs_disabled() fail for us though is that we
manually control hard IRQs and ignore all the lazy EE framework. Let's
stop doing that. Instead, let's always use lazy EE to indicate when we
want to disable IRQs, but do a special final switch that gets us into
EE disabled, but soft enabled state. That way when we get back out of
guest state, we are immediately ready to process interrupts.

This simplifies the code drastically and reduces the time that we appear
as preempt disabled.

Signed-off-by: Alexander Graf <agraf@suse.de>
arch/powerpc/include/asm/kvm_ppc.h
arch/powerpc/kvm/book3s_pr.c
arch/powerpc/kvm/book3s_rmhandlers.S
arch/powerpc/kvm/booke.c
arch/powerpc/kvm/powerpc.c