mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	... and call node_dev_init() after memory_dev_init() from driver_init(), so before any of the existing arch/subsys calls. All online nodes should be known at that point: early during boot, arch code determines node and zone ranges and sets the relevant nodes online; usually this happens in setup_arch(). This is in line with memory_dev_init(), which initializes the memory device subsystem and creates all memory block devices. Similar to memory_dev_init(), panic() if anything goes wrong, we don't want to continue with such basic initialization errors. The important part is that node_dev_init() gets called after memory_dev_init() and after cpu_dev_init(), but before any of the relevant archs call register_cpu() to register the new cpu device under the node device. The latter should be the case for the current users of topology_init(). Link: https://lkml.kernel.org/r/20220203105212.30385-1-david@redhat.com Signed-off-by: David Hildenbrand <david@redhat.com> Reviewed-by: Oscar Salvador <osalvador@suse.de> Tested-by: Anatoly Pugachev <matorola@gmail.com> (sparc64) Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Michal Hocko <mhocko@suse.com> Cc: Oscar Salvador <osalvador@suse.de> Cc: Mike Rapoport <rppt@kernel.org> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Will Deacon <will@kernel.org> Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Paul Walmsley <paul.walmsley@sifive.com> Cc: Palmer Dabbelt <palmer@dabbelt.com> Cc: Albert Ou <aou@eecs.berkeley.edu> Cc: Heiko Carstens <hca@linux.ibm.com> Cc: Vasily Gorbik <gor@linux.ibm.com> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Cc: Rich Felker <dalias@libc.org> Cc: "David S. Miller" <davem@davemloft.net> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: Borislav Petkov <bp@alien8.de> Cc: Dave Hansen <dave.hansen@linux.intel.com> Cc: "Rafael J. Wysocki" <rafael@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			74 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
	
		
			1.5 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;
 | 
						|
 | 
						|
	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);
 |