From patchwork Mon Jul 8 13:33:46 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jinjie Ruan X-Patchwork-Id: 13726612 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 5B7E2C3271E for ; Mon, 8 Jul 2024 13:30:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Type: Content-Transfer-Encoding:MIME-Version:References:In-Reply-To:Message-ID:Date :Subject:CC:To:From:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=zl0jGPHSbS/Xn83d93EUgCvqkwtgZAJJFQnVCaKbaBM=; b=RGAdWbuYwLucoXYqskob5APIva fY7ket1MR1eTexz4OF7E57yTEoRXfd0sobnPDcWHusHrAYLkOLB36QyYvx11L4pX70PE/E9+oif6/ DJUUm68ZTMB1/I8HY6JhrXsprGOrlflIXMWQlqHh8wkc2E3S8iJavC+tK/Ygl+KFAXWjgyL+yNe56 IcINirmA19j83FctT19ZaNrGzOFCFArKHPVP0XoaSawicvDTT8vCEvrHFcinPXqdpb3kqXM1/ob3F Bmj6ApddNRQx+3pRnSRH/MSXHuGg4T8pKafuZTOBOfS2Uw58IPeDO9rtBMfZt7kQUB1LrMMImEDZ1 T5a854Eg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sQoRW-00000003uoC-1UrM; Mon, 08 Jul 2024 13:30:10 +0000 Received: from szxga03-in.huawei.com ([45.249.212.189]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1sQoRG-00000003uge-0p12; Mon, 08 Jul 2024 13:29:56 +0000 Received: from mail.maildlp.com (unknown [172.19.88.105]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4WHlHl00R7zQksh; Mon, 8 Jul 2024 21:25:54 +0800 (CST) Received: from kwepemi100008.china.huawei.com (unknown [7.221.188.57]) by mail.maildlp.com (Postfix) with ESMTPS id B5267140415; Mon, 8 Jul 2024 21:29:48 +0800 (CST) Received: from huawei.com (10.90.53.73) by kwepemi100008.china.huawei.com (7.221.188.57) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Mon, 8 Jul 2024 21:29:47 +0800 From: Jinjie Ruan To: , , , , , , , , , , , , , , , , , , , , , CC: Subject: [PATCH 1/3] crash: Fix memory reserve dead loop bug in reserve_crashkernel_generic() Date: Mon, 8 Jul 2024 21:33:46 +0800 Message-ID: <20240708133348.3592667-2-ruanjinjie@huawei.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240708133348.3592667-1-ruanjinjie@huawei.com> References: <20240708133348.3592667-1-ruanjinjie@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.90.53.73] X-ClientProxiedBy: dggems706-chm.china.huawei.com (10.3.19.183) To kwepemi100008.china.huawei.com (7.221.188.57) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240708_062954_455656_89F426C4 X-CRM114-Status: GOOD ( 11.52 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org If the platform do not support memory above 4G, such as 32 bit arch, and CRASH_ADDR_LOW_MAX is equal to CRASH_ADDR_HIGH_MAX, the high crash kernel memory reservation is meaningless and it will cause dead loop and system stall: -> reserve_crashkernel_generic() and high is true -> memblock_phys_alloc_range() fail and return 0 -> search_end = CRASH_ADDR_LOW_MAX(same as CRASH_ADDR_HIGH_MAX) -> call memblock_phys_alloc_range() again and fail agin. -> search_end == CRASH_ADDR_HIGH_MAX satisfy again ...... However, the current check only considers the case where CRASH_ADDR_HIGH_MAX is greater than CRASH_ADDR_LOW_MAX. Fix it. Fixes: 0ab97169aa05 ("crash_core: add generic function to do reservation") Signed-off-by: Jinjie Ruan Reviewed-by: Linus Walleij --- kernel/crash_reserve.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/kernel/crash_reserve.c b/kernel/crash_reserve.c index 5b2722a93a48..e18fb1bb5d28 100644 --- a/kernel/crash_reserve.c +++ b/kernel/crash_reserve.c @@ -390,6 +390,11 @@ void __init reserve_crashkernel_generic(char *cmdline, } else if (high) { search_base = CRASH_ADDR_LOW_MAX; search_end = CRASH_ADDR_HIGH_MAX; + + if (search_base >= search_end) { + pr_warn("crashkernel high memory reservation failed.\n"); + return; + } } retry: @@ -410,7 +415,8 @@ void __init reserve_crashkernel_generic(char *cmdline, * low memory, fall back to high memory, the minimum required * low memory will be reserved later. */ - if (!high && search_end == CRASH_ADDR_LOW_MAX) { + if (!high && search_end == CRASH_ADDR_LOW_MAX && + CRASH_ADDR_HIGH_MAX > CRASH_ADDR_LOW_MAX) { search_end = CRASH_ADDR_HIGH_MAX; search_base = CRASH_ADDR_LOW_MAX; crash_low_size = DEFAULT_CRASH_KERNEL_LOW_SIZE; From patchwork Mon Jul 8 13:33:47 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jinjie Ruan X-Patchwork-Id: 13726615 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 5D081C3DA42 for ; Mon, 8 Jul 2024 13:30:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Type: Content-Transfer-Encoding:MIME-Version:References:In-Reply-To:Message-ID:Date :Subject:CC:To:From:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=Y8Yva2e5vFVxcgfFBZVv8pb42Aeb2bB/cpBKxiHbLEc=; b=kjJCm1cdD8wPEvakO/GudYCrLy r/Weg9haL2aJ72MF6f5FSgt2P4IWGBmt/d8dQ1FYZYz+vi2DZkN08HNBIthv8ul1jnAGjbDVuwLg5 xUrRn2CfL/5v+BQd453G3zssIywI7Mql/4oMefuxmYblim5nTSbsAQovWasDjRftxuHLZPF7Yb0Cp 6Tnf9OWaz1yN/AP0ZbWEYIjfjE9alHU23FQWVx/J4bgdiZLq4UJJfEF/QT0A67xP2FLl+C7FjKPc+ 3kc5KN5fQ4H/MoWjxm88pL6auZJqu3uqANTCLrSs6nlHta0LkvWZ3UoDPOmVHBMbQebFkA1yYG/ad MMpZZKPQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sQoS9-00000003v6Y-2xRc; Mon, 08 Jul 2024 13:30:49 +0000 Received: from szxga01-in.huawei.com ([45.249.212.187]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1sQoRI-00000003ugm-21ih; Mon, 08 Jul 2024 13:29:58 +0000 Received: from mail.maildlp.com (unknown [172.19.163.252]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4WHlGs2J4bzwWPg; Mon, 8 Jul 2024 21:25:09 +0800 (CST) Received: from kwepemi100008.china.huawei.com (unknown [7.221.188.57]) by mail.maildlp.com (Postfix) with ESMTPS id 8465C180087; Mon, 8 Jul 2024 21:29:49 +0800 (CST) Received: from huawei.com (10.90.53.73) by kwepemi100008.china.huawei.com (7.221.188.57) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Mon, 8 Jul 2024 21:29:48 +0800 From: Jinjie Ruan To: , , , , , , , , , , , , , , , , , , , , , CC: Subject: [PATCH 2/3] ARM: Fix crash kenrel data type bug Date: Mon, 8 Jul 2024 21:33:47 +0800 Message-ID: <20240708133348.3592667-3-ruanjinjie@huawei.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240708133348.3592667-1-ruanjinjie@huawei.com> References: <20240708133348.3592667-1-ruanjinjie@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.90.53.73] X-ClientProxiedBy: dggems706-chm.china.huawei.com (10.3.19.183) To kwepemi100008.china.huawei.com (7.221.188.57) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240708_062956_720478_147C79B6 X-CRM114-Status: GOOD ( 10.55 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On QEMU vexpress-a9 with 1GB memory, the crash kernel "crashkernel=4G" is ok as below: Reserving 4096MB of memory at 2432MB for crashkernel (System RAM: 1024MB) The above info is confusing, because the System memory is as below: # cat /proc/iomem | grep Sys 60000000-9fffffff : System RAM The cause is that the crash_size is parsed and printed with "unsigned long long" data type which is 8 bytes but used with "phys_addr_t" which is 4 bytes in memblock_phys_alloc_range(). Fixes: 9d17f3372306 ("ARM: 9190/1: kdump: add invalid input check for 'crashkernel=0'") Signed-off-by: Jinjie Ruan --- arch/arm/kernel/setup.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index e6a857bf0ce6..59e1a13b5cf6 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c @@ -1012,6 +1012,7 @@ static void __init reserve_crashkernel(void) &crash_size, &crash_base, NULL, NULL); /* invalid value specified or crashkernel=0 */ + crash_size = (phys_addr_t)crash_size; if (ret || !crash_size) return; From patchwork Mon Jul 8 13:33:48 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jinjie Ruan X-Patchwork-Id: 13726614 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 52FC9C3271E for ; Mon, 8 Jul 2024 13:30:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Type: Content-Transfer-Encoding:MIME-Version:References:In-Reply-To:Message-ID:Date :Subject:CC:To:From:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=LwrUPLzoKIwHyaGX+7NrEM9aVFsNRo1gUxEa2IXdSZs=; b=fxoPEHVxoohj4rfESCfoC0FT77 LMsnFm9r20ZtHrBkMFV4zSmQKgnhRHR1hsDV6VlafF/2QL1u86TovQF7koKGkZcTdpwPrJUVYAAl2 bc7raDJXlK0k6I0n7WGv/HfsxDVQG5Ip8NYOBy/TpAKA3Hcet5UiozZ5K7nPRZ6bDKJEhNdVM+Xgb 8M37b9CG5j5pOApCyjOBQQVurVUtHATc0odtBPP/GliXnMn5KQXMQRZccKvPdavf1X88FfodTvCwv WVfYRydjAUOdgwDts0AJAkrXaH/SguEDMevGygTBPShY/WEjKMkOSBEXj360E7GsVUogXqfznyCOH vKzPVYgg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sQoRw-00000003v0J-2Muz; Mon, 08 Jul 2024 13:30:36 +0000 Received: from szxga03-in.huawei.com ([45.249.212.189]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1sQoRG-00000003ugd-0oz1; Mon, 08 Jul 2024 13:29:57 +0000 Received: from mail.maildlp.com (unknown [172.19.163.174]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4WHlHm4ZpBzQktx; Mon, 8 Jul 2024 21:25:56 +0800 (CST) Received: from kwepemi100008.china.huawei.com (unknown [7.221.188.57]) by mail.maildlp.com (Postfix) with ESMTPS id 5CB6B14022D; Mon, 8 Jul 2024 21:29:50 +0800 (CST) Received: from huawei.com (10.90.53.73) by kwepemi100008.china.huawei.com (7.221.188.57) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Mon, 8 Jul 2024 21:29:49 +0800 From: Jinjie Ruan To: , , , , , , , , , , , , , , , , , , , , , CC: Subject: [PATCH 3/3] ARM: Use generic interface to simplify crashkernel reservation Date: Mon, 8 Jul 2024 21:33:48 +0800 Message-ID: <20240708133348.3592667-4-ruanjinjie@huawei.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240708133348.3592667-1-ruanjinjie@huawei.com> References: <20240708133348.3592667-1-ruanjinjie@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.90.53.73] X-ClientProxiedBy: dggems706-chm.china.huawei.com (10.3.19.183) To kwepemi100008.china.huawei.com (7.221.188.57) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240708_062954_637860_E6C6A090 X-CRM114-Status: GOOD ( 21.02 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Currently, x86, arm64, riscv and loongarch has been switched to generic crashkernel reservation. With the help of function parse_crashkernel() and generic reserve_crashkernel_generic(), arm32 crashkernel reservation can also be simplified by steps: 1) Add a new header file , and define CRASH_ALIGN, CRASH_ADDR_LOW_MAX, CRASH_ADDR_HIGH_MAX in it; 2) Add arch_reserve_crashkernel() to call parse_crashkernel() and reserve_crashkernel_generic(); 3) Add ARCH_HAS_GENERIC_CRASHKERNEL_RESERVATION Kconfig in arch/arm/Kconfig. The old reserve_crashkernel() can be removed. Following test cases have been performed as expected on QEMU vexpress-a9 (1GB system memory): 1) crashkernel=4G,high // invalid 2) crashkernel=1G,high // invalid 3) crashkernel=1G,high crashkernel=0M,low // invalid 4) crashkernel=256M,high // invalid 5) crashkernel=256M,low // invalid 6) crashkernel=256M crashkernel=256M,high // high is ignored, ok 7) crashkernel=256M crashkernel=256M,low // low is ignored, ok 8) crashkernel=256M,high crashkernel=256M,low // invalid 9) crashkernel=256M,high crashkernel=4G,low // invalid 10) crashkernel=256M // ok 11) crashkernel=512M // ok 12) crashkernel=256M@0x88000000 // ok 13) crashkernel=256M@0x78000000 // ok 14) crashkernel=512M@0x78000000 // ok Signed-off-by: Jinjie Ruan --- arch/arm/Kconfig | 3 ++ arch/arm/include/asm/crash_reserve.h | 24 +++++++++++ arch/arm/kernel/setup.c | 62 ++++------------------------ 3 files changed, 36 insertions(+), 53 deletions(-) create mode 100644 arch/arm/include/asm/crash_reserve.h diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 68990e1645d5..02e620e185c0 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1596,6 +1596,9 @@ config ATAGS_PROC config ARCH_SUPPORTS_CRASH_DUMP def_bool y +config ARCH_HAS_GENERIC_CRASHKERNEL_RESERVATION + def_bool CRASH_RESERVE + config AUTO_ZRELADDR bool "Auto calculation of the decompressed kernel image address" if !ARCH_MULTIPLATFORM default !(ARCH_FOOTBRIDGE || ARCH_RPC || ARCH_SA1100) diff --git a/arch/arm/include/asm/crash_reserve.h b/arch/arm/include/asm/crash_reserve.h new file mode 100644 index 000000000000..85c9298bd3b7 --- /dev/null +++ b/arch/arm/include/asm/crash_reserve.h @@ -0,0 +1,24 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +#ifndef _ARM_CRASH_RESERVE_H +#define _ARM_CRASH_RESERVE_H + +/* + * The crash region must be aligned to 128MB to avoid + * zImage relocating below the reserved region. + */ +#define CRASH_ALIGN (128 << 20) + +#define CRASH_ADDR_LOW_MAX crash_addr_low_max() +#define CRASH_ADDR_HIGH_MAX memblock_end_of_DRAM() + +static inline unsigned long crash_addr_low_max(void) +{ + unsigned long long crash_max = idmap_to_phys((u32)~0); + unsigned long long lowmem_max = __pa(high_memory - 1) + 1; + + return (crash_max > lowmem_max) ? lowmem_max : crash_max; +} + + +#define HAVE_ARCH_ADD_CRASH_RES_TO_IOMEM_EARLY +#endif diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index 59e1a13b5cf6..3a8b6f08f4ec 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c @@ -979,13 +979,6 @@ static int __init init_machine_late(void) } late_initcall(init_machine_late); -#ifdef CONFIG_CRASH_RESERVE -/* - * The crash region must be aligned to 128MB to avoid - * zImage relocating below the reserved region. - */ -#define CRASH_ALIGN (128 << 20) - static inline unsigned long long get_total_mem(void) { unsigned long total; @@ -994,61 +987,27 @@ static inline unsigned long long get_total_mem(void) return total << PAGE_SHIFT; } -/** - * reserve_crashkernel() - reserves memory are for crash kernel - * - * This function reserves memory area given in "crashkernel=" kernel command - * line parameter. The memory reserved is used by a dump capture kernel when - * primary kernel is crashing. - */ -static void __init reserve_crashkernel(void) +static void __init arch_reserve_crashkernel(void) { unsigned long long crash_size, crash_base; + unsigned long long low_size = 0; unsigned long long total_mem; + bool high = false; int ret; + if (!IS_ENABLED(CONFIG_CRASH_RESERVE)) + return; + total_mem = get_total_mem(); ret = parse_crashkernel(boot_command_line, total_mem, &crash_size, &crash_base, - NULL, NULL); + &low_size, &high); /* invalid value specified or crashkernel=0 */ crash_size = (phys_addr_t)crash_size; if (ret || !crash_size) return; - if (crash_base <= 0) { - unsigned long long crash_max = idmap_to_phys((u32)~0); - unsigned long long lowmem_max = __pa(high_memory - 1) + 1; - if (crash_max > lowmem_max) - crash_max = lowmem_max; - - crash_base = memblock_phys_alloc_range(crash_size, CRASH_ALIGN, - CRASH_ALIGN, crash_max); - if (!crash_base) { - pr_err("crashkernel reservation failed - No suitable area found.\n"); - return; - } - } else { - unsigned long long crash_max = crash_base + crash_size; - unsigned long long start; - - start = memblock_phys_alloc_range(crash_size, SECTION_SIZE, - crash_base, crash_max); - if (!start) { - pr_err("crashkernel reservation failed - memory is in use.\n"); - return; - } - } - - pr_info("Reserving %ldMB of memory at %ldMB for crashkernel (System RAM: %ldMB)\n", - (unsigned long)(crash_size >> 20), - (unsigned long)(crash_base >> 20), - (unsigned long)(total_mem >> 20)); - - /* The crashk resource must always be located in normal mem */ - crashk_res.start = crash_base; - crashk_res.end = crash_base + crash_size - 1; - insert_resource(&iomem_resource, &crashk_res); + reserve_crashkernel_generic(boot_command_line, crash_size, crash_base, low_size, high); if (arm_has_idmap_alias()) { /* @@ -1065,9 +1024,6 @@ static void __init reserve_crashkernel(void) insert_resource(&iomem_resource, &crashk_boot_res); } } -#else -static inline void reserve_crashkernel(void) {} -#endif /* CONFIG_CRASH_RESERVE*/ void __init hyp_mode_check(void) { @@ -1190,7 +1146,7 @@ void __init setup_arch(char **cmdline_p) if (!is_smp()) hyp_mode_check(); - reserve_crashkernel(); + arch_reserve_crashkernel(); #ifdef CONFIG_VT #if defined(CONFIG_VGA_CONSOLE)