From patchwork Sat Dec 25 07:23:23 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Leizhen (ThunderTown)" X-Patchwork-Id: 12699198 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 B3013C433FE for ; Sat, 25 Dec 2021 07:29:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version: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:In-Reply-To:References: List-Owner; bh=F0L/18nd106wM3pxZH2wv9djtwgAcJQUAyE32ZqT4E0=; b=jP6JCCpqEYBVFS RYtVt1cqB9ne1msm0f5jTZtcwHvyKn187a4IXoD2RFrsfLmNhDik5fSAOO2hKmPib17iGQTLq5brG temWb8BiuIEpVygtn9shNo2/8DnYnPoGvgc1AnrWnKlwjTpb9KvTeJU5dSUhhLwijxigYsEoZhpmz a2TgxVTFtAdZFCGE5dZiX41mxSWzOijBQISoDv1cxjx6zK1MfUI++bT7szs6xhljIP9Vdh4wpIqwQ 3qLaaNER4wMmNMY4PS6ihyq+rjZARVqc1AX0XpovHWiE0j7Wf6jC0x8Cc+teM1uuhgAV5rzJgIOQh A7SCJp6ruxr8GsI8WpOA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1n11S7-00EkFy-D3; Sat, 25 Dec 2021 07:26:51 +0000 Received: from szxga01-in.huawei.com ([45.249.212.187]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1n11S0-00Ek6l-37; Sat, 25 Dec 2021 07:26:46 +0000 Received: from dggpemm500023.china.huawei.com (unknown [172.30.72.53]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4JLb4m1C5tzZddv; Sat, 25 Dec 2021 15:23:20 +0800 (CST) Received: from dggpemm500006.china.huawei.com (7.185.36.236) by dggpemm500023.china.huawei.com (7.185.36.83) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.20; Sat, 25 Dec 2021 15:26:32 +0800 Received: from thunder-town.china.huawei.com (10.174.178.55) by dggpemm500006.china.huawei.com (7.185.36.236) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.20; Sat, 25 Dec 2021 15:26:31 +0800 From: Zhen Lei To: Thomas Gleixner , Ingo Molnar , Borislav Petkov , , "H . Peter Anvin" , , Dave Young , Baoquan He , Vivek Goyal , Eric Biederman , , Catalin Marinas , "Will Deacon" , , Rob Herring , Frank Rowand , , Jonathan Corbet , CC: Zhen Lei , Randy Dunlap , Feng Zhou , Kefeng Wang , Chen Zhou , "John Donnelly" Subject: [PATCH 0/4] kdump: add parse_crashkernel_high_low() to replace parse_crashkernel_{high|low}() Date: Sat, 25 Dec 2021 15:23:23 +0800 Message-ID: <20211225072327.1807-1-thunder.leizhen@huawei.com> X-Mailer: git-send-email 2.26.0.windows.1 MIME-Version: 1.0 X-Originating-IP: [10.174.178.55] X-ClientProxiedBy: dggems705-chm.china.huawei.com (10.3.19.182) To dggpemm500006.china.huawei.com (7.185.36.236) X-CFilter-Loop: Reflected X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211224_232644_360558_96A7D5E2 X-CRM114-Status: GOOD ( 13.42 ) 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 The bootup command line option crashkernel=Y,low is valid only when crashkernel=X,high is specified. Putting their parsing into a separate function makes the code logic clearer and easier to understand the strong dependencies between them. So add parse_crashkernel_high_low() and use it to repalce parse_crashkernel_{high|low}(). Then make the latter static, and reduce two confusing parameters 'system_ram' and 'crash_base' of them. All four patches in this series do the cleanups, no functional change. This patchset is also a preparation for supporting reserve crashkernel above 4G on arm64, and share code with x86. The main proposal was made by Borislav Petkov. > As I've already alluded to in another mail, ontop of this there should > be a patch or multiple patches which clean this up more and perhaps even > split it into separate functions doing stuff in this order: > > 1. Parse all crashkernel= cmdline options > 2. Do all crash_base, crash_size etc checks > 3. Do the memory reservations > > And all that supplied with comments explaining why stuff is being done. Zhen Lei (4): kdump: add helper parse_crashkernel_high_low() x86/setup: Use parse_crashkernel_high_low() to simplify code kdump: make parse_crashkernel_{high|low}() static kdump: reduce unnecessary parameters of parse_crashkernel_{high|low}() arch/x86/kernel/setup.c | 21 +++++++-------- include/linux/crash_core.h | 7 +++-- kernel/crash_core.c | 54 +++++++++++++++++++++++++++++++------- 3 files changed, 56 insertions(+), 26 deletions(-)