All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arm64/efi: efi_init error handling fix
@ 2016-09-02 10:18 ` Xie Yisheng
  0 siblings, 0 replies; 20+ messages in thread
From: Xie Yisheng @ 2016-09-02 10:18 UTC (permalink / raw)
  To: linux-arm-kernel

From: Yisheng Xie <xieyisheng1@huawei.com>

There's an early memmap leak in efi_init error path, fix it.

Signed-off-by: Yisheng Xie <xieyisheng1@huawei.com>
---
 drivers/firmware/efi/arm-init.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/firmware/efi/arm-init.c b/drivers/firmware/efi/arm-init.c
index c49d50e..5080e40 100644
--- a/drivers/firmware/efi/arm-init.c
+++ b/drivers/firmware/efi/arm-init.c
@@ -243,8 +243,10 @@ void __init efi_init(void)
 	     "Unexpected EFI_MEMORY_DESCRIPTOR version %ld",
 	      efi.memmap.desc_version);
 
-	if (uefi_init() < 0)
+	if (uefi_init() < 0) {
+		early_memunmap(efi.memmap.map, params.mmap_size);
 		return;
+	}
 
 	reserve_regions();
 	efi_memattr_init();
-- 
1.7.12.4

^ permalink raw reply related	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2016-09-19 12:31 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-02 10:18 [PATCH] arm64/efi: efi_init error handling fix Xie Yisheng
2016-09-02 10:18 ` Xie Yisheng
     [not found] ` <1472811519-4897-1-git-send-email-xieyisheng1-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2016-09-02 10:26   ` Will Deacon
2016-09-02 10:26     ` Will Deacon
2016-09-02 10:26     ` Will Deacon
     [not found]     ` <20160902102618.GC17482-5wv7dgnIgG8@public.gmane.org>
2016-09-05 11:11       ` Yisheng Xie
2016-09-05 11:11         ` Yisheng Xie
2016-09-05 11:11         ` Yisheng Xie
2016-09-05 13:57       ` Matt Fleming
2016-09-05 13:57         ` Matt Fleming
2016-09-05 13:57         ` Matt Fleming
     [not found]         ` <20160905135723.GK32579-mF/unelCI9GS6iBeEJttW/XRex20P6io@public.gmane.org>
2016-09-07 11:15           ` Yisheng Xie
2016-09-07 11:15             ` Yisheng Xie
2016-09-07 11:15             ` Yisheng Xie
     [not found]             ` <c57dfbbe-a2a7-e8af-7d94-20f86126053c-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2016-09-13 11:18               ` Matt Fleming
2016-09-13 11:18                 ` Matt Fleming
2016-09-13 11:18                 ` Matt Fleming
     [not found]                 ` <20160913111804.GG3872-mF/unelCI9GS6iBeEJttW/XRex20P6io@public.gmane.org>
2016-09-19 12:29                   ` Yisheng Xie
2016-09-19 12:29                     ` Yisheng Xie
2016-09-19 12:29                     ` Yisheng Xie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.