Re: [PATCH v2 3/4] powerpc/memhotplug: Make lmb size 64bit

2020-10-06 Thread Michael Ellerman
Nathan Lynch writes: > "Aneesh Kumar K.V" writes: >> @@ -322,12 +322,16 @@ static int pseries_remove_mem_node(struct device_node >> *np) >> /* >> * Find the base address and size of the memblock >> */ >> -regs = of_get_property(np, "reg", NULL); >> -if (!regs) >> +

Re: [PATCH v2 3/4] powerpc/memhotplug: Make lmb size 64bit

2020-08-26 Thread Sasha Levin
Hi [This is an automated email] This commit has been processed because it contains a -stable tag. The stable tag indicates that it's relevant for the following trees: all The bot has tested the following trees: v5.8.2, v5.7.16, v5.4.59, v4.19.140, v4.14.193, v4.9.232, v4.4.232. v5.8.2: Build

Re: [PATCH v2 3/4] powerpc/memhotplug: Make lmb size 64bit

2020-08-20 Thread Nathan Lynch
"Aneesh Kumar K.V" writes: > @@ -322,12 +322,16 @@ static int pseries_remove_mem_node(struct device_node > *np) > /* >* Find the base address and size of the memblock >*/ > - regs = of_get_property(np, "reg", NULL); > - if (!regs) > + prop = of_get_property(np,

Re: [PATCH v2 3/4] powerpc/memhotplug: Make lmb size 64bit

2020-08-19 Thread Sasha Levin
Hi [This is an automated email] This commit has been processed because it contains a -stable tag. The stable tag indicates that it's relevant for the following trees: all The bot has tested the following trees: v5.8.1, v5.7.15, v5.4.58, v4.19.139, v4.14.193, v4.9.232, v4.4.232. v5.8.1: Build

Re: [PATCH v2 3/4] powerpc/memhotplug: Make lmb size 64bit

2020-08-13 Thread Sasha Levin
Hi [This is an automated email] This commit has been processed because it contains a -stable tag. The stable tag indicates that it's relevant for the following trees: all The bot has tested the following trees: v5.8, v5.7.14, v5.4.57, v4.19.138, v4.14.193, v4.9.232, v4.4.232. v5.8: Build OK!

[PATCH v2 3/4] powerpc/memhotplug: Make lmb size 64bit

2020-08-06 Thread Aneesh Kumar K.V
Similar to commit 89c140bbaeee ("pseries: Fix 64 bit logical memory block panic") make sure different variables tracking lmb_size are updated to be 64 bit. This was found by code audit. Cc: sta...@vger.kernel.org Signed-off-by: Aneesh Kumar K.V --- .../platforms/pseries/hotplug-memory.c