1 Star 0 Fork 115

tzr/src-openEuler-qemu

forked from src-openEuler/qemu 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
seabios-do-not-give-back-high-ram.patch 1.52 KB
一键复制 编辑 原始数据 按行查看 历史
jiangdongxu 提交于 2022-02-12 14:43 . backport seabios bugfix patches
From 74f052de33cb14d7a1656079a53102a7cbbb6e75 Mon Sep 17 00:00:00 2001
From: jiangdongxu <jiangdongxu1@huawei.com>
Date: Fri, 11 Feb 2022 16:16:05 +0800
Subject: [PATCH 2/6] seabios: do not give back high ram
Oracle 6 and 7 series virtual machines will use the high ram returned by
sebios. Since these high ram will not be initialized before kernel used,
this will cause a system exception. This patch removes the logic for
returning high ram, making the virtual machine will not use this part
of the memory, thus avoiding this kernel bug.
Signed-off-by: wangxin <wangxinxin.wang@huawei.com>
Signed-off-by: Fangyi <eric.fangyi@huawei.com>
Signed-off-by: jiangdongxu <jiangdongxu1@huawei.com>
---
roms/seabios/src/malloc.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/roms/seabios/src/malloc.c b/roms/seabios/src/malloc.c
index 3733855caf..5827a6523a 100644
--- a/roms/seabios/src/malloc.c
+++ b/roms/seabios/src/malloc.c
@@ -549,6 +549,9 @@ malloc_prepboot(void)
dprintf(1, "Space available for UMB: %x-%x, %x-%x\n"
, RomEnd, base, info->range_start, info->range_end);
+ // We should not give back unused high ram, to support some special
+ // guest OS, like oracle linux series.
+#ifdef HIGH_MEM_BACK
// Give back unused high ram.
info = alloc_find_lowest(&ZoneHigh);
if (info) {
@@ -556,6 +559,7 @@ malloc_prepboot(void)
e820_add(info->range_start, giveback, E820_RAM);
dprintf(1, "Returned %d bytes of ZoneHigh\n", giveback);
}
+#endif
calcRamSize();
}
--
2.27.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tom0392/src-openEuler-qemu.git
git@gitee.com:tom0392/src-openEuler-qemu.git
tom0392
src-openEuler-qemu
src-openEuler-qemu
master

搜索帮助