* [PATCH] efi: payload: handle NULL return from loadable_view for ramdisk
@ 2026-05-07 11:51 Ahmad Fatoum
0 siblings, 0 replies; only message in thread
From: Ahmad Fatoum @ 2026-05-07 11:51 UTC (permalink / raw)
To: barebox; +Cc: Ahmad Fatoum
loadable_view() can return NULL (distinct from ERR_PTR), which is not
caught by IS_ERR().
efi_load_os() already handles this with the ?: ERR_PTR(-ENODATA) pattern,
so apply the same to efi_load_ramdisk().
Signed-off-by: Ahmad Fatoum <a.fatoum@barebox.org>
---
efi/payload/bootm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/efi/payload/bootm.c b/efi/payload/bootm.c
index 30b6fe8977e0..2f9cc3cbf76b 100644
--- a/efi/payload/bootm.c
+++ b/efi/payload/bootm.c
@@ -86,7 +86,7 @@ static int efi_load_ramdisk(struct image_data *data,
if (!data->initrd)
return 0;
- initrd_mem = loadable_view(data->initrd, initrd_size);
+ initrd_mem = loadable_view(data->initrd, initrd_size) ?: ERR_PTR(-ENODATA);
if (IS_ERR(initrd_mem)) {
pr_err("Cannot open ramdisk image: %pe\n", initrd_mem);
return PTR_ERR(initrd_mem);
--
2.47.3
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-05-07 11:52 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-05-07 11:51 [PATCH] efi: payload: handle NULL return from loadable_view for ramdisk Ahmad Fatoum
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox