Skip to content

Commit 89401be

Browse files
committed
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
2 parents 312b3a9 + 74c953c commit 89401be

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

drivers/firmware/efi/arm-runtime.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ extern u64 efi_system_table;
3737
static struct ptdump_info efi_ptdump_info = {
3838
.mm = &efi_mm,
3939
.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 }
4243
},
4344
.base_addr = 0,
4445
};

0 commit comments

Comments
 (0)