From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:47146) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Teub8-0004Ni-1Q for qemu-devel@nongnu.org; Sat, 01 Dec 2012 16:27:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Teub6-0006NN-QO for qemu-devel@nongnu.org; Sat, 01 Dec 2012 16:27:41 -0500 Received: from mail-la0-f45.google.com ([209.85.215.45]:54522) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Teub6-0006AB-I3 for qemu-devel@nongnu.org; Sat, 01 Dec 2012 16:27:40 -0500 Received: by mail-la0-f45.google.com with SMTP id p9so1161967laa.4 for ; Sat, 01 Dec 2012 13:27:40 -0800 (PST) Message-ID: <50BA764B.5090306@gmail.com> Date: Sun, 02 Dec 2012 01:27:39 +0400 From: Igor Mitsyanko MIME-Version: 1.0 References: <1354208577-8935-1-git-send-email-peter.maydell@linaro.org> <1354208577-8935-3-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1354208577-8935-3-git-send-email-peter.maydell@linaro.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 2/3] hw/arm_gic: Fix comparison with priority mask register List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: Igor Mitsyanko , Mark Langsdorf , Evgeny Voevodin , patches@linaro.org, Marc Zyngier , qemu-devel@nongnu.org, Dmitry Solodkiy , Maksim Kozlov , kvmarm@lists.cs.columbia.edu On 11/29/2012 9:02 PM, Peter Maydell wrote: > The GIC spec states that only interrupts with higher priority > than the value in the GICC_PMR priority mask register are > passed through to the processor. We were incorrectly allowing > through interrupts with a priority equal to the specified > value: correct the comparison operation to match the spec. > > Signed-off-by: Peter Maydell > --- > hw/arm_gic.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/arm_gic.c b/hw/arm_gic.c > index f9e423f..672d539 100644 > --- a/hw/arm_gic.c > +++ b/hw/arm_gic.c > @@ -73,7 +73,7 @@ void gic_update(GICState *s) > } > } > level = 0; > - if (best_prio <= s->priority_mask[cpu]) { > + if (best_prio < s->priority_mask[cpu]) { > s->current_pending[cpu] = best_irq; > if (best_prio < s->running_priority[cpu]) { > DPRINTF("Raised pending IRQ %d\n", best_irq); > Reviewed-by: Igor Mitsyanko