mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	After removal of DISCINTIGMEM the NEED_MULTIPLE_NODES and NUMA configuration options are equivalent. Drop CONFIG_NEED_MULTIPLE_NODES and use CONFIG_NUMA instead. Done with $ sed -i 's/CONFIG_NEED_MULTIPLE_NODES/CONFIG_NUMA/' \ $(git grep -wl CONFIG_NEED_MULTIPLE_NODES) $ sed -i 's/NEED_MULTIPLE_NODES/NUMA/' \ $(git grep -wl NEED_MULTIPLE_NODES) with manual tweaks afterwards. [rppt@linux.ibm.com: fix arm boot crash] Link: https://lkml.kernel.org/r/YMj9vHhHOiCVN4BF@linux.ibm.com Link: https://lkml.kernel.org/r/20210608091316.3622-9-rppt@kernel.org Signed-off-by: Mike Rapoport <rppt@linux.ibm.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: David Hildenbrand <david@redhat.com> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru> Cc: Jonathan Corbet <corbet@lwn.net> Cc: Matt Turner <mattst88@gmail.com> Cc: Richard Henderson <rth@twiddle.net> Cc: Vineet Gupta <vgupta@synopsys.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			79 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
/*
 | 
						|
 * arch/sh/kernel/topology.c
 | 
						|
 *
 | 
						|
 *  Copyright (C) 2007  Paul Mundt
 | 
						|
 */
 | 
						|
#include <linux/cpu.h>
 | 
						|
#include <linux/cpumask.h>
 | 
						|
#include <linux/init.h>
 | 
						|
#include <linux/percpu.h>
 | 
						|
#include <linux/topology.h>
 | 
						|
#include <linux/node.h>
 | 
						|
#include <linux/nodemask.h>
 | 
						|
#include <linux/export.h>
 | 
						|
 | 
						|
static DEFINE_PER_CPU(struct cpu, cpu_devices);
 | 
						|
 | 
						|
cpumask_t cpu_core_map[NR_CPUS];
 | 
						|
EXPORT_SYMBOL(cpu_core_map);
 | 
						|
 | 
						|
static cpumask_t cpu_coregroup_map(int cpu)
 | 
						|
{
 | 
						|
	/*
 | 
						|
	 * Presently all SH-X3 SMP cores are multi-cores, so just keep it
 | 
						|
	 * simple until we have a method for determining topology..
 | 
						|
	 */
 | 
						|
	return *cpu_possible_mask;
 | 
						|
}
 | 
						|
 | 
						|
const struct cpumask *cpu_coregroup_mask(int cpu)
 | 
						|
{
 | 
						|
	return &cpu_core_map[cpu];
 | 
						|
}
 | 
						|
 | 
						|
int arch_update_cpu_topology(void)
 | 
						|
{
 | 
						|
	unsigned int cpu;
 | 
						|
 | 
						|
	for_each_possible_cpu(cpu)
 | 
						|
		cpu_core_map[cpu] = cpu_coregroup_map(cpu);
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
static int __init topology_init(void)
 | 
						|
{
 | 
						|
	int i, ret;
 | 
						|
 | 
						|
#ifdef CONFIG_NUMA
 | 
						|
	for_each_online_node(i)
 | 
						|
		register_one_node(i);
 | 
						|
#endif
 | 
						|
 | 
						|
	for_each_present_cpu(i) {
 | 
						|
		struct cpu *c = &per_cpu(cpu_devices, i);
 | 
						|
 | 
						|
		c->hotpluggable = 1;
 | 
						|
 | 
						|
		ret = register_cpu(c, i);
 | 
						|
		if (unlikely(ret))
 | 
						|
			printk(KERN_WARNING "%s: register_cpu %d failed (%d)\n",
 | 
						|
			       __func__, i, ret);
 | 
						|
	}
 | 
						|
 | 
						|
#if defined(CONFIG_NUMA) && !defined(CONFIG_SMP)
 | 
						|
	/*
 | 
						|
	 * In the UP case, make sure the CPU association is still
 | 
						|
	 * registered under each node. Without this, sysfs fails
 | 
						|
	 * to make the connection between nodes other than node0
 | 
						|
	 * and cpu0.
 | 
						|
	 */
 | 
						|
	for_each_online_node(i)
 | 
						|
		if (i != numa_node_id())
 | 
						|
			register_cpu_under_node(raw_smp_processor_id(), i);
 | 
						|
#endif
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
subsys_initcall(topology_init);
 |