1 Star 0 Fork 9

Ming Wang/oc-kexec-tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Fix-Exclude-pages-correctly-in-exclude_nodata_pages.patch 922 Bytes
一键复制 编辑 原始数据 按行查看 历史
From c8075ad4b8e8111a83dbf3a8630bb343c8a0ede8 Mon Sep 17 00:00:00 2001
From: wangming <[email protected]>
Date: Wed, 9 Oct 2024 11:07:55 +0800
Subject: [PATCH] Fix: Exclude pages correctly in exclude_nodata_pages()
Signed-off-by: wangming <[email protected]>
---
makedumpfile-1.7.2/makedumpfile.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/makedumpfile-1.7.2/makedumpfile.c b/makedumpfile-1.7.2/makedumpfile.c
index f403683..1172a80 100644
--- a/makedumpfile-1.7.2/makedumpfile.c
+++ b/makedumpfile-1.7.2/makedumpfile.c
@@ -5104,7 +5104,7 @@ exclude_nodata_pages(struct cycle *cycle)
NULL, &file_size)) {
unsigned long long pfn, pfn_end;
- pfn = paddr_to_pfn(phys_start + file_size);
+ pfn = paddr_to_pfn(roundup(phys_start + file_size, PAGESIZE()));
pfn_end = paddr_to_pfn(roundup(phys_end, PAGESIZE()));
if (pfn < cycle->start_pfn)
--
2.41.1
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/robinorg/oc-kexec-tools.git
[email protected]:robinorg/oc-kexec-tools.git
robinorg
oc-kexec-tools
oc-kexec-tools
master

搜索帮助