From: Alexander Graf Date: Thu, 16 Feb 2012 14:12:46 +0000 (+0000) Subject: KVM: PPC: booke: BOOKE_IRQPRIO_MAX is n+1 X-Git-Tag: v3.12-rc1~3092^2~69 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8b3a00fcd3c9ea4e2cbae12af3cd8c9d7d1e109a;p=kernel%2Fkernel-generic.git KVM: PPC: booke: BOOKE_IRQPRIO_MAX is n+1 The semantics of BOOKE_IRQPRIO_MAX changed to denote the highest available irqprio + 1, so let's reflect that in the code too. Signed-off-by: Alexander Graf Signed-off-by: Avi Kivity --- diff --git a/arch/powerpc/kvm/booke.c b/arch/powerpc/kvm/booke.c index 3da0e42..11b0625 100644 --- a/arch/powerpc/kvm/booke.c +++ b/arch/powerpc/kvm/booke.c @@ -425,7 +425,7 @@ static void kvmppc_core_check_exceptions(struct kvm_vcpu *vcpu) } priority = __ffs(*pending); - while (priority <= BOOKE_IRQPRIO_MAX) { + while (priority < BOOKE_IRQPRIO_MAX) { if (kvmppc_booke_irqprio_deliver(vcpu, priority)) break;