Re: [PATCH v5 1/2] RISC-V: Fix memory reservation in setup_bootmem()

2019-06-28 Thread Paul Walmsley
On Fri, 7 Jun 2019, Anup Patel wrote: > Currently, the setup_bootmem() reserves memory from RAM start to the > kernel end. This prevents us from exploring ways to use the RAM below > (or before) the kernel start hence this patch updates setup_bootmem() > to only reserve memory from the kernel star

[PATCH v5 1/2] RISC-V: Fix memory reservation in setup_bootmem()

2019-06-06 Thread Anup Patel
Currently, the setup_bootmem() reserves memory from RAM start to the kernel end. This prevents us from exploring ways to use the RAM below (or before) the kernel start hence this patch updates setup_bootmem() to only reserve memory from the kernel start to the kernel end. Suggested-by: Mike Rapopo