Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull EFI fix from Thomas Gleixner:
"The dump info for the efi page table debugging lacks a terminator
which causes the kernel to crash when the debugfile is read"

* 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
efi/arm64: Fix debugfs crash by adding a terminator for ptdump marker

+3 -2
+3 -2
drivers/firmware/efi/arm-runtime.c
··· 37 37 static struct ptdump_info efi_ptdump_info = { 38 38 .mm = &efi_mm, 39 39 .markers = (struct addr_marker[]){ 40 - { 0, "UEFI runtime start" }, 41 - { DEFAULT_MAP_WINDOW_64, "UEFI runtime end" } 40 + { 0, "UEFI runtime start" }, 41 + { DEFAULT_MAP_WINDOW_64, "UEFI runtime end" }, 42 + { -1, NULL } 42 43 }, 43 44 .base_addr = 0, 44 45 };