[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200907134745.25732-3-chenzhou10@huawei.com>
Date: Mon, 7 Sep 2020 21:47:38 +0800
From: Chen Zhou <chenzhou10@...wei.com>
To: <catalin.marinas@....com>, <will@...nel.org>,
<james.morse@....com>, <tglx@...utronix.de>, <mingo@...hat.com>,
<dyoung@...hat.com>, <bhe@...hat.com>, <corbet@....net>,
<John.P.donnelly@...cle.com>, <prabhakar.pkin@...il.com>,
<bhsharma@...hat.com>
CC: <horms@...ge.net.au>, <robh+dt@...nel.org>, <arnd@...db.de>,
<nsaenzjulienne@...e.de>, <linux-arm-kernel@...ts.infradead.org>,
<linux-kernel@...r.kernel.org>, <kexec@...ts.infradead.org>,
<linux-doc@...r.kernel.org>, <guohanjun@...wei.com>,
<xiexiuqi@...wei.com>, <huawei.libin@...wei.com>,
<wangkefeng.wang@...wei.com>, <chenzhou10@...wei.com>
Subject: [PATCH v12 2/9] x86: kdump: make the lower bound of crash kernel reservation consistent
The lower bounds of crash kernel reservation and crash kernel low
reservation are different, use the consistent value CRASH_ALIGN.
Suggested-by: Dave Young <dyoung@...hat.com>
Signed-off-by: Chen Zhou <chenzhou10@...wei.com>
---
arch/x86/kernel/setup.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
index 296294ad0dd8..d7fd90c52dae 100644
--- a/arch/x86/kernel/setup.c
+++ b/arch/x86/kernel/setup.c
@@ -451,7 +451,7 @@ static int __init reserve_crashkernel_low(void)
return 0;
}
- low_base = memblock_find_in_range(0, 1ULL << 32, low_size, CRASH_ALIGN);
+ low_base = memblock_find_in_range(CRASH_ALIGN, 1ULL << 32, low_size, CRASH_ALIGN);
if (!low_base) {
pr_err("Cannot reserve %ldMB crashkernel low memory, please try smaller size.\n",
(unsigned long)(low_size >> 20));
--
2.20.1
Powered by blists - more mailing lists