From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.ilvokhin.com (mail.ilvokhin.com [178.62.254.231]) (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 38461347505 for ; Mon, 9 Mar 2026 18:26:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=178.62.254.231 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773080800; cv=none; b=PK6jkNqE6am0o1H42rCtJnfZjswIlpx7X4xvYUCjwGQU//IZ5oB8FmYXw2awKTPvIlhz+5WkFVw3iD3aWrrkQKwDpdZxeqLV34NB5bd9DyZx1xpZf9qw7nnSooWmgAN1k01o4I0G5AnSoqu0BCdpPl28CTr5gGhQVFQjN2v5+c8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773080800; c=relaxed/simple; bh=h+r9DEv7PRqcDlw5SJAwHuzShX1x9Pb7Q3rABM/gZ0c=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=uDJKsYeocSbXIA+cgJTNF/LuGEqReHcV/eUfFm6R0lqIz0Gi6KyA5fzqiMVW3WrDx7vYHkYWaLGkgwLg4hqJfUcyaPX3BKm7ENni1dgSlGQ0MZc/lF2Bbfz66OwSMHN0/EZxkxEWRDRQNuH9jsvXqKoY+6UYmPJukDq6yu4Xfmo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=ilvokhin.com; spf=pass smtp.mailfrom=ilvokhin.com; dkim=pass (1024-bit key) header.d=ilvokhin.com header.i=@ilvokhin.com header.b=o3mwueT6; arc=none smtp.client-ip=178.62.254.231 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=ilvokhin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=ilvokhin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=ilvokhin.com header.i=@ilvokhin.com header.b="o3mwueT6" Received: from shell.ilvokhin.com (shell.ilvokhin.com [138.68.190.75]) (Authenticated sender: d@ilvokhin.com) by mail.ilvokhin.com (Postfix) with ESMTPSA id AA30EB3736; Mon, 09 Mar 2026 18:26:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ilvokhin.com; s=mail; t=1773080797; bh=HYHCeCEIX9pGNgiutOrt06jLPFF+xJaoMN3T+vIRRG0=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=o3mwueT62cQ5abhnmGV8kptU+n9uo8aRBbX3i+Cn2+WgHvElmRvsSE8Ruh1tU90TQ GQVUd58WLbthz8hTHtHS2uikvMhPQttceJ8g8qmCa5tdhXTR2zMiGhwVzcJYEmUmcA XN+vebxlzTWUcHWNfcDLxZvm8Crma2vywx5hETac= Date: Mon, 9 Mar 2026 18:26:36 +0000 From: Dmitry Ilvokhin To: Thomas Gleixner Cc: LKML , x86@kernel.org, Neil Horman Subject: Re: [patch 05/14] genirq: Expose nr_irqs in core code Message-ID: References: <20260303150539.513068586@kernel.org> <20260303154548.286441920@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260303154548.286441920@kernel.org> On Wed, Mar 04, 2026 at 07:55:49PM +0100, Thomas Gleixner wrote: > ... to avoid function calls in the core code to retrieve the maximum number > of interrupts. > > Signed-off-by: Thomas Gleixner Reviewed-by: Dmitry Ilvokhin