ARM: change vmalloc_start to vmalloc_size
authorRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Tue, 18 May 2021 11:58:34 +0000 (12:58 +0100)
committerRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Mon, 7 Jun 2021 11:56:19 +0000 (12:56 +0100)
Rather than storing the start of vmalloc space, store the size, and
move the calculation into adjust_lowmem_limit(). We now have one single
place where this calculation takes place.

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>
arch/arm/mm/mmu.c

index a1d1a431340fdeb4785530662a36c8c4f9feea0e..c4616b068308009c7fde2305f64bee1d3bd22127 100644 (file)
@@ -1121,7 +1121,7 @@ void __init debug_ll_io_init(void)
 }
 #endif
 
-static unsigned long __initdata vmalloc_start = VMALLOC_END - (240 << 20);
+static unsigned long __initdata vmalloc_size = 240 << 20;
 
 /*
  * vmalloc=size forces the vmalloc area to be exactly 'size'
@@ -1146,7 +1146,7 @@ static int __init early_vmalloc(char *arg)
                        vmalloc_reserve >> 20);
        }
 
-       vmalloc_start = VMALLOC_END - vmalloc_reserve;
+       vmalloc_size = vmalloc_reserve;
        return 0;
 }
 early_param("vmalloc", early_vmalloc);
@@ -1166,7 +1166,7 @@ void __init adjust_lowmem_bounds(void)
         * and may itself be outside the valid range for which phys_addr_t
         * and therefore __pa() is defined.
         */
-       vmalloc_limit = (u64)vmalloc_start - VMALLOC_OFFSET -
+       vmalloc_limit = (u64)VMALLOC_END - vmalloc_size - VMALLOC_OFFSET -
                        PAGE_OFFSET + PHYS_OFFSET;
 
        /*