Received: by 2002:a05:6a10:22f:0:0:0:0 with SMTP id 15csp3353458pxk; Mon, 7 Sep 2020 10:23:49 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxJL66RS45qwlakdYMCSz0WA/n83uoqKHP3Qy5TFsTvXDVmlctkgKtqBSFfs/8t7S5Uq1cZ X-Received: by 2002:a17:906:29ca:: with SMTP id y10mr21524748eje.327.1599499429090; Mon, 07 Sep 2020 10:23:49 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1599499429; cv=none; d=google.com; s=arc-20160816; b=A3yBeHCemM2NVi+SDhRD12y/E4vcAxd4B8joxaSzgcCjjjO2IOs7OA67YpOYwraFTD IKZ6pt+A8OtP9Cb/EQKeh1Cha5RBEMu8/Fp8OYhiVuB9uzzhsXfdTb38TkSNBniJANg+ 3EPlhfg2j+XqEh9IgSJlRD2nmG3CEU2BMU28KvjQu7YrQBJy7w72mgerWMwZsv6FNidt Nq8U2Q1k7rSQrXgLu5VemIpH84btmXLH4i6HaKY2xWozAv+cSdEgCH+2WpoMvVH0aUw3 /ilImDB45yW21LB5Pwi1AxoCrW/bTRTvCwVfoqHV9A+TiZJ/0+LaX8yluxo75Wk5Hf9/ tBHQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=VjMpA1OAE0rcNeefvIiZ8zz1IPVPipM6l/Pejgg5s5U=; b=aRUyeeWVJid6LStesnOH87cK1Bn3XoqzzOXa6y0Zc7pdQWvDxgZRyTqKFZSAMiQiEE O7h6EHJGt4L0A7JC3sEEpyuxd/D/VNNNfi/ZUN/9XQliTRKr/W0WNEkSmFdaY2IeoNA1 7KleWTLknO5lTsPUm4LrrWQ5j2g4qWaWaGqa3tIepYItJQQKi/PBQMYVlU70/tcHpDYW tLxOanL14kVTuhdc+/3S9gi4rfoKJlAQdHqFpRM96gl+poNUhb0YFqqQfQlJWW9/Dukd Mz4JhcZQ2nggEq/aGo7qlZGjLemiVamFWUDBmsLtq39dTHqMt9UmzIC+FEdmLvRr0dNw v1sg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id cc13si10964960edb.14.2020.09.07.10.23.26; Mon, 07 Sep 2020 10:23:49 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730619AbgIGRVA (ORCPT + 99 others); Mon, 7 Sep 2020 13:21:00 -0400 Received: from szxga07-in.huawei.com ([45.249.212.35]:53204 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1729675AbgIGNri (ORCPT ); Mon, 7 Sep 2020 09:47:38 -0400 Received: from DGGEMS404-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id 20D5B788E7EE530AA00F; Mon, 7 Sep 2020 21:47:04 +0800 (CST) Received: from localhost.localdomain.localdomain (10.175.113.25) by DGGEMS404-HUB.china.huawei.com (10.3.19.204) with Microsoft SMTP Server id 14.3.487.0; Mon, 7 Sep 2020 21:46:53 +0800 From: Chen Zhou To: , , , , , , , , , , CC: , , , , , , , , , , , , Subject: [PATCH v12 7/9] kdump: add threshold for the required memory Date: Mon, 7 Sep 2020 21:47:43 +0800 Message-ID: <20200907134745.25732-8-chenzhou10@huawei.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200907134745.25732-1-chenzhou10@huawei.com> References: <20200907134745.25732-1-chenzhou10@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.175.113.25] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org For crashkernel=X, if required size X is too large and leads to very little free low memory after low allocation, the system may not work normally. So add a threshold and go for high allocation directly if the required size is too large. The value of threshold is set as the half of the low memory. Signed-off-by: Chen Zhou --- kernel/crash_core.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/kernel/crash_core.c b/kernel/crash_core.c index 3f735cb37ace..d11d597a470d 100644 --- a/kernel/crash_core.c +++ b/kernel/crash_core.c @@ -378,6 +378,15 @@ int __init reserve_crashkernel_low(void) } #if defined(CONFIG_X86) || defined(CONFIG_ARM64) + +/* + * Add a threshold for required memory size of crashkernel. If required memory + * size is greater than threshold, just go for high allocation directly. The + * value of threshold is set as half of the total low memory. + */ +#define REQUIRED_MEMORY_THRESHOLD (memblock_mem_size(CRASH_ADDR_LOW_MAX >> \ + PAGE_SHIFT) >> 1) + #ifdef CONFIG_KEXEC_CORE /* * reserve_crashkernel() - reserves memory for crash kernel @@ -422,7 +431,7 @@ void __init reserve_crashkernel(void) * So try low memory first and fall back to high memory * unless "crashkernel=size[KMG],high" is specified. */ - if (!high) + if (!high && crash_size <= REQUIRED_MEMORY_THRESHOLD) crash_base = memblock_find_in_range(CRASH_ALIGN, CRASH_ADDR_LOW_MAX, crash_size, CRASH_ALIGN); -- 2.20.1