From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from canpmsgout02.his.huawei.com (canpmsgout02.his.huawei.com [113.46.200.217]) (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 A1DE317B506 for ; Wed, 8 Apr 2026 01:14:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=113.46.200.217 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775610870; cv=none; b=qvhBOKFOACOkoynBGKFAvT+L57gD/a66QgyYj0Qi1PbMinpy3Bo9QyCCkkIcib2mbbofCHEa0PQbnm5uunfCxgJ42y6sow1Bs8kZNrkedYGofPDmx1phqEISKYuE6hm4waXYuamCqKhkOeiG3XYzD+QF5ET/yRPqjZWe5IekH/k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775610870; c=relaxed/simple; bh=JjIKz8mQGgBqCUYTLtMvgxFoM/DAlXdxjwhw28LmStE=; h=Message-ID:Date:MIME-Version:Subject:To:CC:References:From: In-Reply-To:Content-Type; b=Ugfbrwa6DWGA/Npw5xTsrHl4W354xTUpuNmaChZ5wRTOkuU0i4kLePHi/6mj1smSiluF9aa1VqwK7FMYfyJPpaQi7pKDQpjDevHi/uJfU+fbZOCaUD5AHH/Fv9QBFZSRNMQd2u8MY0MvenKSTpqwo3XxLkqyVYkZpwuiEPs5qZ0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com; spf=pass smtp.mailfrom=huawei.com; dkim=pass (1024-bit key) header.d=huawei.com header.i=@huawei.com header.b=LZ5dedVc; arc=none smtp.client-ip=113.46.200.217 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=huawei.com header.i=@huawei.com header.b="LZ5dedVc" dkim-signature: v=1; a=rsa-sha256; d=huawei.com; s=dkim; c=relaxed/relaxed; q=dns/txt; h=From; bh=pD/U8jlNGNQBpPARroCSmi3cFYS91/sbHvl4Gv0tUW0=; b=LZ5dedVcaAaYTioUqoEm+IWb5tCWe86svQQ9EkAddRV/WQWlJx7Pd4cJzaBO/r9k+ALWScDAE oaLiQxbKAhS/f9bNPmo0KWWdCX+BE3S+/gRWDn84kLkeCEAma73gL/a3itJMT73a9xAIcUhpL+c u8A2GUb3Ot7JTuLnZof1h00= Received: from mail.maildlp.com (unknown [172.19.162.223]) by canpmsgout02.his.huawei.com (SkyGuard) with ESMTPS id 4fr4gX0kH8zcZxk; Wed, 8 Apr 2026 09:08:08 +0800 (CST) Received: from dggpemf500011.china.huawei.com (unknown [7.185.36.131]) by mail.maildlp.com (Postfix) with ESMTPS id CEBDD40561; Wed, 8 Apr 2026 09:14:24 +0800 (CST) Received: from [10.67.109.254] (10.67.109.254) by dggpemf500011.china.huawei.com (7.185.36.131) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.11; Wed, 8 Apr 2026 09:14:24 +0800 Message-ID: Date: Wed, 8 Apr 2026 09:14:21 +0800 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.2.0 Subject: Re: [PATCH 01/10] entry: Fix stale comment for irqentry_enter() To: Mark Rutland , , Andy Lutomirski , Peter Zijlstra , Thomas Gleixner CC: , , , , References: <20260407131650.3813777-1-mark.rutland@arm.com> <20260407131650.3813777-2-mark.rutland@arm.com> Content-Language: en-US From: Jinjie Ruan In-Reply-To: <20260407131650.3813777-2-mark.rutland@arm.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-ClientProxiedBy: kwepems100001.china.huawei.com (7.221.188.238) To dggpemf500011.china.huawei.com (7.185.36.131) On 2026/4/7 21:16, Mark Rutland wrote: > The kerneldoc comment for irqentry_enter() refers to idtentry_exit(), > which is an accidental holdover from the x86 entry code that the generic > irqentry code was based on. > > Correct this to refer to irqentry_exit(). > > Signed-off-by: Mark Rutland > Cc: Andy Lutomirski > Cc: Catalin Marinas > Cc: Jinjie Ruan > Cc: Peter Zijlstra > Cc: Thomas Gleixner > Cc: Vladimir Murzin > Cc: Will Deacon > --- > include/linux/irq-entry-common.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/irq-entry-common.h b/include/linux/irq-entry-common.h > index d26d1b1bcbfb9..3cf4d21168ba1 100644 > --- a/include/linux/irq-entry-common.h > +++ b/include/linux/irq-entry-common.h > @@ -394,7 +394,7 @@ typedef struct irqentry_state { > * establish the proper context for NOHZ_FULL. Otherwise scheduling on exit > * would not be possible. > * > - * Returns: An opaque object that must be passed to idtentry_exit() > + * Returns: An opaque object that must be passed to irqentry_exit() Reviewed-by: Jinjie Ruan > */ > irqentry_state_t noinstr irqentry_enter(struct pt_regs *regs); >