From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 098B8C47DD9 for ; Thu, 22 Feb 2024 23:00:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:From:References:Cc:To: Subject:MIME-Version:Date:Message-ID:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=NfBMUUBL6f9gerP0BJ9Ruiih0SLOzOVu2VWVv0xho6k=; b=Qty68m/M5LUhrJ hKB1VvqHNUPr3mYZttZfwsHZKjKtQxKH7jTdKa+S7DDd8y1wZCmmS02uYRjesrZ2QN0qisUex91Zl 5NZz9v1IVI19i9IADLIE8OxbnBT8mFN96hkqEcaJIJ3trIaYu1l2ebXPTLOfTTXzDFZzsyRD8yucr 325oImT5HAaZ0jDJeZbm94Wc1f4Lw/lAcqmUkLpSj/4s+zm3Ua/QNVkINTnu6fNI7SvMaXP0MRtLQ UYK37NvShm0vbR80s1WNBMMWjeRaROywZaGToKXyAsslr81NLOmNuvF/DX9XyzdJx9cq+6BP5iEL9 cyPveR+wTOBoxqHSy9Eg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1rdI32-00000006trx-3uhW; Thu, 22 Feb 2024 23:00:13 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1rdI2y-00000006trI-06uZ; Thu, 22 Feb 2024 23:00:09 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 3FD8EDA7; Thu, 22 Feb 2024 15:00:42 -0800 (PST) Received: from [10.57.10.154] (unknown [10.57.10.154]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 19E2F3F766; Thu, 22 Feb 2024 15:00:00 -0800 (PST) Message-ID: <27ad9614-e3de-4965-9f4e-865bc541eb4c@arm.com> Date: Thu, 22 Feb 2024 22:59:58 +0000 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v12 02/25] genirq/irqdomain: Remove the param count restriction from select() Content-Language: en-US To: Marc Zyngier Cc: Anup Patel , Palmer Dabbelt , Paul Walmsley , Thomas Gleixner , Rob Herring , Krzysztof Kozlowski , Frank Rowand , Conor Dooley , =?UTF-8?B?QmrDtnJuIFTDtnBlbA==?= , Atish Patra , Andrew Jones , Sunil V L , Saravana Kannan , Anup Patel , linux-riscv@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, Mark Brown References: <20240127161753.114685-1-apatel@ventanamicro.com> <20240127161753.114685-3-apatel@ventanamicro.com> <87edd4a2fo.wl-maz@kernel.org> From: Aishwarya TCV In-Reply-To: <87edd4a2fo.wl-maz@kernel.org> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240222_150008_166233_F60062E5 X-CRM114-Status: GOOD ( 14.19 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 22/02/2024 16:28, Marc Zyngier wrote: > On Thu, 22 Feb 2024 13:01:32 +0000, > Aishwarya TCV wrote: >> >> >> >> On 27/01/2024 16:17, Anup Patel wrote: >>> From: Thomas Gleixner >>> >>> Now that the GIC-v3 callback can handle invocation with a fwspec parameter >>> count of 0 lift the restriction in the core code and invoke select() >>> unconditionally when the domain provides it. >>> >>> Preparatory change for per device MSI domains. >>> >>> Signed-off-by: Thomas Gleixner >>> Signed-off-by: Anup Patel >>> --- >> >> Hi Thomas/Anup >> >> Currently when booting the kernel against next-master(next-20240222) >> with Arm64 on Qualcomm boards RB5/DB845C, the kernel is resulting in >> boot failures for our CI. I can send the full logs if required. Most >> other boards seem to be fine. >> >> A bisect (full log below) identified this patch as introducing the >> failure. Bisected it on the tag "next-20240220" at repo >> "https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git". >> >> This works fine on Linux v6.8-rc5 > > Can you please try [1]? > > M. > > [1] https://lore.kernel.org/linux-kernel/20240220114731.1898534-1-maz@kernel.org > With the patch[1] applied on next-master(next-20240222), successfully tested booting the kernel with Arm64 on Qualcomm boards RB5/DB845C. Confirming that the patch is resolving the boot issue on RB5/DB845C Thanks Aishwarya _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel