Skip to content

Commit 164e66e

Browse files
mpegregkh
authored andcommitted
powerpc/mm: Allow ARCH_FORCE_MAX_ORDER up to 12
[ Upstream commit ff9e8f4 ] Christophe reported that the change to ARCH_FORCE_MAX_ORDER to limit the range to 10 had broken his ability to configure hugepages: # echo 1 > /sys/kernel/mm/hugepages/hugepages-8192kB/nr_hugepages sh: write error: Invalid argument Several of the powerpc defconfigs previously set the ARCH_FORCE_MAX_ORDER value to 12, via the definition in arch/powerpc/configs/fsl-emb-nonhw.config, used by: mpc85xx_defconfig mpc85xx_smp_defconfig corenet32_smp_defconfig corenet64_smp_defconfig mpc86xx_defconfig mpc86xx_smp_defconfig Fix it by increasing the allowed range to 12 to restore the previous behaviour. Fixes: 358e526 ("powerpc/mm: Reinstate ARCH_FORCE_MAX_ORDER ranges") Reported-by: Christophe Leroy <[email protected]> Closes: https://lore.kernel.org/all/[email protected]/ Tested-by: Christophe Leroy <[email protected]> Signed-off-by: Michael Ellerman <[email protected]> Link: https://msgid.link/[email protected] Signed-off-by: Sasha Levin <[email protected]>
1 parent fefac8c commit 164e66e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/powerpc/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ config ARCH_FORCE_MAX_ORDER
917917
default "6" if PPC32 && PPC_64K_PAGES
918918
range 4 10 if PPC32 && PPC_256K_PAGES
919919
default "4" if PPC32 && PPC_256K_PAGES
920-
range 10 10
920+
range 10 12
921921
default "10"
922922
help
923923
The kernel page allocator limits the size of maximal physically

0 commit comments

Comments
 (0)