Re: [PATCH] powerpc/numa: Restrict possible nodes based on platform
From: Nathan Lynch <hidden>
Date: 2020-07-06 23:21:30
From: Nathan Lynch <hidden>
Date: 2020-07-06 23:21:30
Srikar Dronamraju [off-list ref] writes:
diff --git a/arch/powerpc/mm/numa.c b/arch/powerpc/mm/numa.c index 9fcf2d195830..3d55cef1a2dc 100644 --- a/arch/powerpc/mm/numa.c +++ b/arch/powerpc/mm/numa.c@@ -897,7 +897,7 @@ static void __init find_possible_nodes(void) return; if (of_property_read_u32_index(rtas, - "ibm,max-associativity-domains", + "ibm,current-associativity-domains", min_common_depth, &numnodes))
Looks good if ibm,current-associativity-domains[min_common_depth] actually denotes the range of possible values, i.e. a value of 2 implies node numbers 0 and 1. PAPR+ says it's the "number of unique values", which isn't how I would specify the property if it's supposed to express a range. But it's probably OK...