Blame SOURCES/0307-efi-Increase-default-memory-allocation-to-32-MiB.patch

b35c50
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
b35c50
From: Daniel Axtens <dja@axtens.net>
b35c50
Date: Tue, 20 Sep 2022 00:30:30 +1000
b35c50
Subject: [PATCH] efi: Increase default memory allocation to 32 MiB
b35c50
b35c50
We have multiple reports of things being slower with a 1 MiB initial static
b35c50
allocation, and a report (more difficult to nail down) of a boot failure
b35c50
as a result of the smaller initial allocation.
b35c50
b35c50
Make the initial memory allocation 32 MiB.
b35c50
b35c50
Signed-off-by: Daniel Axtens <dja@axtens.net>
b35c50
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
b35c50
(cherry picked from commit 75e38e86e7d9202f050b093f20500d9ad4c6dad9)
b35c50
---
b35c50
 grub-core/kern/efi/mm.c | 2 +-
b35c50
 1 file changed, 1 insertion(+), 1 deletion(-)
b35c50
b35c50
diff --git a/grub-core/kern/efi/mm.c b/grub-core/kern/efi/mm.c
b35c50
index 016ba6cf2f..b27e966e1f 100644
b35c50
--- a/grub-core/kern/efi/mm.c
b35c50
+++ b/grub-core/kern/efi/mm.c
b35c50
@@ -39,7 +39,7 @@
b35c50
 #define MEMORY_MAP_SIZE	0x3000
b35c50
 
b35c50
 /* The default heap size for GRUB itself in bytes.  */
b35c50
-#define DEFAULT_HEAP_SIZE	0x100000
b35c50
+#define DEFAULT_HEAP_SIZE	0x2000000
b35c50
 
b35c50
 static void *finish_mmap_buf = 0;
b35c50
 static grub_efi_uintn_t finish_mmap_size = 0;