diff options
author | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2021-05-28 13:01:40 +0300 |
---|---|---|
committer | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2021-06-07 14:56:19 +0300 |
commit | 08b842400ff555d372d9584af13fe0195ef0ac1b (patch) | |
tree | 3032ed5a92a12b287950ca7eaf4bb6097e3fa5f6 /arch/arm/mm/mmu.c | |
parent | 4c1b7a7616086a95cb6983f7b68b8d85b2f9bcc6 (diff) | |
download | linux-08b842400ff555d372d9584af13fe0195ef0ac1b.tar.xz |
ARM: use "* SZ_1M" rather than "<< 20"
Make the default vmalloc size clearer by using a more natural
multiplication by SZ_1M rather than a shift left by 20 bits.
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Yanfei Xu <yanfei.xu@windriver.com>
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'arch/arm/mm/mmu.c')
-rw-r--r-- | arch/arm/mm/mmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c index c4616b068308..f2741cfc3951 100644 --- a/arch/arm/mm/mmu.c +++ b/arch/arm/mm/mmu.c @@ -1121,7 +1121,7 @@ void __init debug_ll_io_init(void) } #endif -static unsigned long __initdata vmalloc_size = 240 << 20; +static unsigned long __initdata vmalloc_size = 240 * SZ_1M; /* * vmalloc=size forces the vmalloc area to be exactly 'size' |