All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] x86/mm/numa: Clean up topology parsing in amd_numa_init()
@ 2026-07-05 17:16 Thorsten Blum
  2026-07-05 17:16 ` [PATCH 2/2] x86/mm/numa: Update format specifiers " Thorsten Blum
  0 siblings, 1 reply; 2+ messages in thread
From: Thorsten Blum @ 2026-07-05 17:16 UTC (permalink / raw)
  To: Dave Hansen, Andy Lutomirski, Peter Zijlstra, Thomas Gleixner,
	Ingo Molnar, Borislav Petkov, x86, H. Peter Anvin
  Cc: Thorsten Blum, linux-kernel

Since commit e23bba604433 ("x86-64, NUMA: Unify emulated distance
mapping"), nodeids[] is only written but never read. Remove it.

Also drop the start variable and the base < start clamp, since start is
always zero and the expression always false.

While at it, use min() for the limit > end clamp and drop the redundant
second limit > end clamp.

Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
 arch/x86/mm/amdtopology.c | 15 +++------------
 1 file changed, 3 insertions(+), 12 deletions(-)

diff --git a/arch/x86/mm/amdtopology.c b/arch/x86/mm/amdtopology.c
index f980b0eb0105..d68d345a5b82 100644
--- a/arch/x86/mm/amdtopology.c
+++ b/arch/x86/mm/amdtopology.c
@@ -27,8 +27,6 @@
 #include <asm/apic.h>
 #include <asm/amd/nb.h>
 
-static unsigned char __initdata nodeids[8];
-
 static __init int find_northbridge(void)
 {
 	int num;
@@ -56,7 +54,7 @@ static __init int find_northbridge(void)
 int __init amd_numa_init(void)
 {
 	unsigned int numnodes, cores, apicid;
-	u64 prevbase, start = PFN_PHYS(0);
+	u64 prevbase;
 	u64 end = PFN_PHYS(max_pfn);
 	u32 nodeid, reg;
 	int i, j, nb;
@@ -84,7 +82,7 @@ int __init amd_numa_init(void)
 		base = read_pci_config(0, nb, 1, 0x40 + i*8);
 		limit = read_pci_config(0, nb, 1, 0x44 + i*8);
 
-		nodeids[i] = nodeid = limit & 7;
+		nodeid = limit & 7;
 		if ((base & 3) == 0) {
 			if (i < numnodes)
 				pr_info("Skipping disabled node %d\n", i);
@@ -115,19 +113,12 @@ int __init amd_numa_init(void)
 		limit >>= 16;
 		limit++;
 		limit <<= 24;
-
-		if (limit > end)
-			limit = end;
+		limit = min(limit, end);
 		if (limit <= base)
 			continue;
 
 		base >>= 16;
 		base <<= 24;
-
-		if (base < start)
-			base = start;
-		if (limit > end)
-			limit = end;
 		if (limit == base) {
 			pr_err("Empty node %d\n", nodeid);
 			continue;

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

end of thread, other threads:[~2026-07-05 17:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-05 17:16 [PATCH 1/2] x86/mm/numa: Clean up topology parsing in amd_numa_init() Thorsten Blum
2026-07-05 17:16 ` [PATCH 2/2] x86/mm/numa: Update format specifiers " Thorsten Blum

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.