All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] riscv: Move call to init_cpu_topology() to later initialization stage
@ 2023-01-03  3:53 ` Ley Foon Tan
  0 siblings, 0 replies; 26+ messages in thread
From: Ley Foon Tan @ 2023-01-03  3:53 UTC (permalink / raw)
  To: Palmer Dabbelt, Paul Walmsley, Albert Ou
  Cc: linux-riscv, linux-kernel, Ley Foon Tan

topology_parse_cpu_capacity() is failed to allocate memory with kcalloc()
after read "capacity-dmips-mhz" DT parameter in CPU DT nodes. This
topology_parse_cpu_capacity() is called from init_cpu_topology(), move
call to init_cpu_topology() to later initialization  stage (after memory
allocation is available).

Note, this refers to ARM64 implementation, call init_cpu_topology() in
smp_prepare_cpus().

Tested on Qemu platform.

Signed-off-by: Ley Foon Tan <leyfoon.tan@starfivetech.com>

---

In drivers/base/arch_topology.c: topology_parse_cpu_capacity():

	ret = of_property_read_u32(cpu_node, "capacity-dmips-mhz",
				   &cpu_capacity);
	if (!ret) {
		if (!raw_capacity) {
			raw_capacity = kcalloc(num_possible_cpus(),
					       sizeof(*raw_capacity),
					       GFP_KERNEL);
			if (!raw_capacity) {
				cap_parsing_failed = true;
				return false;
			}
---
 arch/riscv/kernel/smpboot.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/riscv/kernel/smpboot.c b/arch/riscv/kernel/smpboot.c
index 3373df413c88..ddb2afba6d25 100644
--- a/arch/riscv/kernel/smpboot.c
+++ b/arch/riscv/kernel/smpboot.c
@@ -39,7 +39,6 @@ static DECLARE_COMPLETION(cpu_running);
 
 void __init smp_prepare_boot_cpu(void)
 {
-	init_cpu_topology();
 }
 
 void __init smp_prepare_cpus(unsigned int max_cpus)
@@ -48,6 +47,8 @@ void __init smp_prepare_cpus(unsigned int max_cpus)
 	int ret;
 	unsigned int curr_cpuid;
 
+	init_cpu_topology();
+
 	curr_cpuid = smp_processor_id();
 	store_cpu_topology(curr_cpuid);
 	numa_store_cpu_info(curr_cpuid);
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2023-01-05 18:43 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-03  3:53 [PATCH] riscv: Move call to init_cpu_topology() to later initialization stage Ley Foon Tan
2023-01-03  3:53 ` Ley Foon Tan
2023-01-03  6:54 ` Andrew Jones
2023-01-03  6:54   ` Andrew Jones
2023-01-03  7:53   ` Leyfoon Tan
2023-01-03  7:53     ` Leyfoon Tan
2023-01-03 17:07     ` Conor Dooley
2023-01-03 17:07       ` Conor Dooley
2023-01-04  5:35       ` Leyfoon Tan
2023-01-04  5:35         ` Leyfoon Tan
2023-01-04  9:49         ` Conor Dooley
2023-01-04  9:49           ` Conor Dooley
2023-01-04 10:49           ` Sudeep Holla
2023-01-04 10:49             ` Sudeep Holla
2023-01-04 12:18             ` Conor Dooley
2023-01-04 12:18               ` Conor Dooley
2023-01-04 12:56               ` Sudeep Holla
2023-01-04 12:56                 ` Sudeep Holla
2023-01-04 13:24                 ` Conor Dooley
2023-01-04 13:24                   ` Conor Dooley
2023-01-04 10:41       ` Sudeep Holla
2023-01-04 10:41         ` Sudeep Holla
2023-01-04 13:00 ` Conor Dooley
2023-01-04 13:00   ` Conor Dooley
2023-01-05  1:45   ` Leyfoon Tan
2023-01-05  1:45     ` Leyfoon Tan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.