Merge patch series "riscv: fix debug_pagealloc"
authorPalmer Dabbelt <palmer@rivosinc.com>
Wed, 22 May 2024 16:15:12 +0000 (09:15 -0700)
committerPalmer Dabbelt <palmer@rivosinc.com>
Wed, 22 May 2024 23:12:50 +0000 (16:12 -0700)
commit855ad0f7a167304936ce42e9d0737bbecfa8b6de
tree981adf56ee36e26d619f7c3e8e9dc921c7698e83
parenta2a4d4a6a0bf5eba66f8b0b32502cc20d82715a0
parentfb1cf0878328fe75d47f0aed0a65b30126fcefc4
Merge patch series "riscv: fix debug_pagealloc"

Nam Cao <namcao@linutronix.de> says:

The debug_pagealloc feature is not functional on RISCV. With this feature
enabled (CONFIG_DEBUG_PAGEALLOC=y and debug_pagealloc=on), kernel crashes
early during boot.

QEMU command that can reproduce this problem:
   qemu-system-riscv64 -machine virt \
   -kernel Image \
   -append "console=ttyS0 root=/dev/vda debug_pagealloc=on" \
   -nographic \
   -drive "file=root.img,format=raw,id=hd0" \
   -device virtio-blk-device,drive=hd0 \
   -m 4G \

This series makes debug_pagealloc functional.

* b4-shazam-merge:
  riscv: rewrite __kernel_map_pages() to fix sleeping in invalid context
  riscv: force PAGE_SIZE linear mapping if debug_pagealloc is enabled

Link: https://lore.kernel.org/r/cover.1715750938.git.namcao@linutronix.de
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
arch/riscv/mm/init.c