lkml.org 
[lkml]   [2020]   [Aug]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 5.4 83/90] RISC-V: Set maximum number of mapped pages correctly
    Date
    From: Atish Patra <atish.patra@wdc.com>

    [ Upstream commit d0d8aae64566b753c4330fbd5944b88af035f299 ]

    Currently, maximum number of mapper pages are set to the pfn calculated
    from the memblock size of the memblock containing kernel. This will work
    until that memblock spans the entire memory. However, it will be set to
    a wrong value if there are multiple memblocks defined in kernel
    (e.g. with efi runtime services).

    Set the the maximum value to the pfn calculated from dram size.

    Signed-off-by: Atish Patra <atish.patra@wdc.com>
    Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
    Signed-off-by: Sasha Levin <sashal@kernel.org>
    ---
    arch/riscv/mm/init.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/arch/riscv/mm/init.c b/arch/riscv/mm/init.c
    index 3198129230126..b1eb6a0411183 100644
    --- a/arch/riscv/mm/init.c
    +++ b/arch/riscv/mm/init.c
    @@ -115,9 +115,9 @@ void __init setup_bootmem(void)
    /* Reserve from the start of the kernel to the end of the kernel */
    memblock_reserve(vmlinux_start, vmlinux_end - vmlinux_start);

    - set_max_mapnr(PFN_DOWN(mem_size));
    max_pfn = PFN_DOWN(memblock_end_of_DRAM());
    max_low_pfn = max_pfn;
    + set_max_mapnr(max_low_pfn);

    #ifdef CONFIG_BLK_DEV_INITRD
    setup_initrd();
    --
    2.25.1


    \
     
     \ /
      Last update: 2022-09-17 16:08    [W:4.022 / U:0.148 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site