[PATCH v4 4/4] x86/cacheinfo: Clean out init_cache_level()

Ricardo Neri ricardo.neri-calderon at linux.intel.com
Tue Dec 12 14:25:19 PST 2023


init_cache_level() no longer has a purpose on x86. It no longer needs to
set num_leaves, and it never had to set num_levels, which was unnecessary
on x86.

Replace it with "return 0" simply to override the weak function, which
would return an error.

Cc: Andreas Herrmann <aherrmann at suse.com>
Cc: Catalin Marinas <catalin.marinas at arm.com>
Cc: Chen Yu <yu.c.chen at intel.com>
CC: Huang Ying <ying.huang at intel.com>
Cc: Len Brown <len.brown at intel.com>
Cc: Radu Rendec <rrendec at redhat.com>
Cc: Pierre Gondois <Pierre.Gondois at arm.com>
Cc: Pu Wen <puwen at hygon.cn>
Cc: "Rafael J. Wysocki" <rafael.j.wysocki at intel.com>
Cc: Sudeep Holla <sudeep.holla at arm.com>
Cc: Srinivas Pandruvada <srinivas.pandruvada at linux.intel.com>
Cc: Will Deacon <will at kernel.org>
Cc: Zhang Rui <rui.zhang at intel.com>
Cc: linux-arm-kernel at lists.infradead.org
Cc: stable at vger.kernel.org
Reviewed-by: Len Brown <len.brown at intel.com>
Signed-off-by: Ricardo Neri <ricardo.neri-calderon at linux.intel.com>
---
Changes since v3:
 * Rebased on v6.7-rc5.

Changes since v2:
 * None

Changes since v1:
 * Introduced this patch.
---
 arch/x86/kernel/cpu/cacheinfo.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/arch/x86/kernel/cpu/cacheinfo.c b/arch/x86/kernel/cpu/cacheinfo.c
index 4125e53a5ef7..1cfe0921ac67 100644
--- a/arch/x86/kernel/cpu/cacheinfo.c
+++ b/arch/x86/kernel/cpu/cacheinfo.c
@@ -1002,11 +1002,6 @@ static void ci_leaf_init(struct cacheinfo *this_leaf,
 
 int init_cache_level(unsigned int cpu)
 {
-	struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu);
-
-	if (!this_cpu_ci)
-		return -EINVAL;
-	this_cpu_ci->num_levels = 3;
 	return 0;
 }
 
-- 
2.25.1




More information about the linux-arm-kernel mailing list