From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C8EC417E90E; Mon, 27 May 2024 19:05:00 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716836700; cv=none; b=GBp/hMQtPUagIRRiMaZRD1Wwd5uPbzdbql1sv8r4GlsUoKlPJivoGkhz7qdKnj35jebEsMQCibE22cnURCVqhXy3hvTPlSEdzn3705DSziwJpzUiTQuc42zVGc7hwtdETEsvdz0O+0OxjaiY7TAMvz1MqVNTHxNXWJf38sJ+Rpc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716836700; c=relaxed/simple; bh=cNc/xYLJaDiFFd2ogOVryBS8aGXljyO1TY5a1DjvDjs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=pi0S9NetoqVBJVTw1z17bFPhdvI/aSLW+qPR/Ysk3jpfO1PUfB6UrjuD0GsbWKg51WKy53YEHnlfTjLTZdqbz9/2jY+d5bd5CxRyKreUq/jYHBscqE1IMHk8+4qKKPc0isAG0r53Lvu6cnusugLh0g3WCOgqTdB9695TUYk7G+U= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=uSVYprj/; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="uSVYprj/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5D7AFC2BBFC; Mon, 27 May 2024 19:05:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1716836700; bh=cNc/xYLJaDiFFd2ogOVryBS8aGXljyO1TY5a1DjvDjs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=uSVYprj/4NU/ltWEK/UJzhpUsaJYhlFF6doipX7yJ+118HE+3AtV5UFlwgsGYJWyj vRU/icGNUE2UgkSjb1lXdvsdKD6f3MP01SKmFrWvOSQQ8zaFvM9GlKBxfCMe9cMKjz nRhOMNzKyOl5AxvujSKNB7iXXCLp802nR69FucDI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Zenghui Yu , Thomas Gleixner , Sasha Levin Subject: [PATCH 6.9 137/427] irqchip/alpine-msi: Fix off-by-one in allocation error path Date: Mon, 27 May 2024 20:53:04 +0200 Message-ID: <20240527185614.699145581@linuxfoundation.org> X-Mailer: git-send-email 2.45.1 In-Reply-To: <20240527185601.713589927@linuxfoundation.org> References: <20240527185601.713589927@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.9-stable review patch. If anyone has any objections, please let me know. ------------------ From: Zenghui Yu [ Upstream commit ff3669a71afa06208de58d6bea1cc49d5e3fcbd1 ] When alpine_msix_gic_domain_alloc() fails, there is an off-by-one in the number of interrupts to be freed. Fix it by passing the number of successfully allocated interrupts, instead of the relative index of the last allocated one. Fixes: 3841245e8498 ("irqchip/alpine-msi: Fix freeing of interrupts on allocation error path") Signed-off-by: Zenghui Yu Signed-off-by: Thomas Gleixner Link: https://lore.kernel.org/r/20240327142305.1048-1-yuzenghui@huawei.com Signed-off-by: Sasha Levin --- drivers/irqchip/irq-alpine-msi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/irqchip/irq-alpine-msi.c b/drivers/irqchip/irq-alpine-msi.c index 9c8b1349ee17b..a1430ab60a8a3 100644 --- a/drivers/irqchip/irq-alpine-msi.c +++ b/drivers/irqchip/irq-alpine-msi.c @@ -165,7 +165,7 @@ static int alpine_msix_middle_domain_alloc(struct irq_domain *domain, return 0; err_sgi: - irq_domain_free_irqs_parent(domain, virq, i - 1); + irq_domain_free_irqs_parent(domain, virq, i); alpine_msix_free_sgi(priv, sgi, nr_irqs); return err; } -- 2.43.0