[<prev] [next>] [day] [month] [year] [list]
Message-ID: <162176322081.29796.16823399891747450104.tip-bot2@tip-bot2>
Date: Sun, 23 May 2021 09:47:00 -0000
From: "tip-bot2 for Changbin Du" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Changbin Du <changbin.du@...il.com>,
Ard Biesheuvel <ardb@...nel.org>, x86@...nel.org,
linux-kernel@...r.kernel.org
Subject: [tip: efi/urgent] efi/fdt: fix panic when no valid fdt found
The following commit has been merged into the efi/urgent branch of tip:
Commit-ID: 668a84c1bfb2b3fd5a10847825a854d63fac7baa
Gitweb: https://git.kernel.org/tip/668a84c1bfb2b3fd5a10847825a854d63fac7baa
Author: Changbin Du <changbin.du@...il.com>
AuthorDate: Wed, 24 Mar 2021 22:54:35 +08:00
Committer: Ard Biesheuvel <ardb@...nel.org>
CommitterDate: Sat, 22 May 2021 14:03:42 +02:00
efi/fdt: fix panic when no valid fdt found
setup_arch() would invoke efi_init()->efi_get_fdt_params(). If no
valid fdt found then initial_boot_params will be null. So we
should stop further fdt processing here. I encountered this
issue on risc-v.
Signed-off-by: Changbin Du <changbin.du@...il.com>
Fixes: b91540d52a08b ("RISC-V: Add EFI runtime services")
Signed-off-by: Ard Biesheuvel <ardb@...nel.org>
---
drivers/firmware/efi/fdtparams.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/firmware/efi/fdtparams.c b/drivers/firmware/efi/fdtparams.c
index bb042ab..e901f85 100644
--- a/drivers/firmware/efi/fdtparams.c
+++ b/drivers/firmware/efi/fdtparams.c
@@ -98,6 +98,9 @@ u64 __init efi_get_fdt_params(struct efi_memory_map_data *mm)
BUILD_BUG_ON(ARRAY_SIZE(target) != ARRAY_SIZE(name));
BUILD_BUG_ON(ARRAY_SIZE(target) != ARRAY_SIZE(dt_params[0].params));
+ if (!fdt)
+ return 0;
+
for (i = 0; i < ARRAY_SIZE(dt_params); i++) {
node = fdt_path_offset(fdt, dt_params[i].path);
if (node < 0)
Powered by blists - more mailing lists