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 6934430F7E6; Mon, 13 Oct 2025 20:34:26 +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=1760387666; cv=none; b=aV2b7ODkI0JLqyvSYVlbXhD2xqWfs87QgRJWlNR0TLTHGISkLr2dgo6I3XybRfK1SucYGf2sYPyzHusOx7aunV1fGjmQqVfpv7+7JMnld2jTEI2yItRu86Xdp5A0sW6MKtSzrfj9t1xOAYcKEp7IjUn2NTEH93bMKC/W5c8gaBg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760387666; c=relaxed/simple; bh=TsDxN2BInLxMlytlUzRu0aLqwxbBAplotzVpHgLAL/Q=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=rKWX/K9rDQyGKLc3Yk6mHG9WWH2IEODKT44Ory6j4nCQFipm/RxCe6PXZaeqsbeFBEN1uV0jXNNRqCPMtWnqKXRW2c6aCr79gEwvUQIR1Cc1f8pya7knby1yK5m7KvjoEK//G/ycum7xIoLeZosn7b2ZoXI8GPm92/tDV8Ensww= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=vIqfo6Gi; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="vIqfo6Gi" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 506C6C4CEE7; Mon, 13 Oct 2025 20:34:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1760387665; bh=TsDxN2BInLxMlytlUzRu0aLqwxbBAplotzVpHgLAL/Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=vIqfo6Gi5gmdQ7vxGe7RqxhiF87X33Q1XJxWoIlbndC3g6WBMuC8hkzSgerCI62/Q BXhf3bGN2nKsvv6D2OslGLIIzuqA1eL4gsae4q7JMxc0SaZgp03l+SdE7qOD7/+E2O fWv5/7ygc7kJGvfCu94f3nf2F+3QJ/8qFmo7JdAwthJVd6bd/p9jcDjrDAEGdH+EK2 FGTVklbzEtrI2ReuVUwyzc37WdN9ldJnwgNmpzpAoyGWZIKe+ecidj07oosdP8oW6q KxPv1ONdv2Lk2L0qCLRhWjoKzj4jYjx8EZEcRNsktGgBitJCVs7MEegUbPWKt9ME3+ awN/5ogOZslPA== From: Frederic Weisbecker To: LKML Cc: Frederic Weisbecker , =?UTF-8?q?Michal=20Koutn=C3=BD?= , Andrew Morton , Bjorn Helgaas , Catalin Marinas , Danilo Krummrich , "David S . Miller" , Eric Dumazet , Gabriele Monaco , Greg Kroah-Hartman , Ingo Molnar , Jakub Kicinski , Jens Axboe , Johannes Weiner , Lai Jiangshan , Marco Crivellari , Michal Hocko , Muchun Song , Paolo Abeni , Peter Zijlstra , Phil Auld , "Rafael J . Wysocki" , Roman Gushchin , Shakeel Butt , Simon Horman , Tejun Heo , Thomas Gleixner , Vlastimil Babka , Waiman Long , Will Deacon , cgroups@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-block@vger.kernel.org, linux-mm@kvack.org, linux-pci@vger.kernel.org, netdev@vger.kernel.org Subject: [PATCH 19/33] sched/isolation: Remove HK_TYPE_TICK test from cpu_is_isolated() Date: Mon, 13 Oct 2025 22:31:32 +0200 Message-ID: <20251013203146.10162-20-frederic@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20251013203146.10162-1-frederic@kernel.org> References: <20251013203146.10162-1-frederic@kernel.org> Precedence: bulk X-Mailing-List: linux-pci@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit It doesn't make sense to use nohz_full without also isolating the related CPUs from the domain topology, either through the use of isolcpus= or cpuset isolated partitions. And now HK_TYPE_DOMAIN includes all kinds of domain isolated CPUs. This means that HK_TYPE_KERNEL_NOISE (of which HK_TYPE_TICK is only an alias) should always be a subset of HK_TYPE_DOMAIN. Therefore if a CPU is not HK_TYPE_DOMAIN, it shouldn't be HK_TYPE_KERNEL_NOISE either. Testing the former is then enough. Simplify cpu_is_isolated() accordingly. Signed-off-by: Frederic Weisbecker --- include/linux/sched/isolation.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/linux/sched/isolation.h b/include/linux/sched/isolation.h index 0f50c152cf68..eef539820de2 100644 --- a/include/linux/sched/isolation.h +++ b/include/linux/sched/isolation.h @@ -75,8 +75,7 @@ static inline bool housekeeping_cpu(int cpu, enum hk_type type) static inline bool cpu_is_isolated(int cpu) { - return !housekeeping_test_cpu(cpu, HK_TYPE_DOMAIN) || - !housekeeping_test_cpu(cpu, HK_TYPE_TICK); + return !housekeeping_test_cpu(cpu, HK_TYPE_DOMAIN); } #endif /* _LINUX_SCHED_ISOLATION_H */ -- 2.51.0