From mboxrd@z Thu Jan 1 00:00:00 1970 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2A2B1C433FE for ; Tue, 18 Oct 2022 00:52:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230175AbiJRAwb (ORCPT ); Mon, 17 Oct 2022 20:52:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45502 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230499AbiJRAwB (ORCPT ); Mon, 17 Oct 2022 20:52:01 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2C15982633 for ; Mon, 17 Oct 2022 17:52:00 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id B406061326 for ; Tue, 18 Oct 2022 00:51:59 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1543DC433C1; Tue, 18 Oct 2022 00:51:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1666054319; bh=PV31Z0Rr+kQslUExwVDK2Z9o/S/jTOEmsENYWp2E1R4=; h=Date:To:From:Subject:From; b=EaGd+szeFpxNmDq81gzup4S8B0QLZ57yX3/WW6tv+MtskgxPMD8uOQ4WBW/7rFuR9 Bq4HjaWBloYNFhQvqlD03Z3gtwqgJUKyNW+K8JX9l8rDx0AiKmk1PjC7PNOS7fBTTn YWFcYnJcJ7NMmOOQ9GaYE33ciF9i+nVOrsnCt8MI= Date: Mon, 17 Oct 2022 17:51:58 -0700 To: mm-commits@vger.kernel.org, zealci@zte.com.cn, ye.xingchen@zte.com.cn, pmladek@suse.com, paulus@samba.org, niejianglei2021@163.com, mpe@ellerman.id.au, linux@armlinux.org.uk, lchen@ambarella.com, ebiederm@xmission.com, bhe@redhat.com, benh@kernel.crashing.org, chenlifu@huawei.com, akpm@linux-foundation.org From: Andrew Morton Subject: + arm-kexec-make-machine_crash_nonpanic_core-static.patch added to mm-nonmm-unstable branch Message-Id: <20221018005159.1543DC433C1@smtp.kernel.org> Precedence: bulk Reply-To: linux-kernel@vger.kernel.org List-ID: X-Mailing-List: mm-commits@vger.kernel.org The patch titled Subject: ARM: kexec: make machine_crash_nonpanic_core() static has been added to the -mm mm-nonmm-unstable branch. Its filename is arm-kexec-make-machine_crash_nonpanic_core-static.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/arm-kexec-make-machine_crash_nonpanic_core-static.patch This patch will later appear in the mm-nonmm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Chen Lifu Subject: ARM: kexec: make machine_crash_nonpanic_core() static Date: Thu, 29 Sep 2022 12:29:36 +0800 This symbol is not used outside of the file, so mark it static. Fixes the following warning: arch/arm/kernel/machine_kexec.c:76:6: warning: symbol 'machine_crash_nonpanic_core' was not declared. Should it be static? Link: https://lkml.kernel.org/r/20220929042936.22012-5-bhe@redhat.com Signed-off-by: Chen Lifu Signed-off-by: Baoquan He Acked-by: Baoquan He Cc: "Eric W . Biederman" Cc: Petr Mladek Cc: Russell King Cc: Benjamin Herrenschmidt Cc: Jianglei Nie Cc: Li Chen Cc: Michael Ellerman Cc: Paul Mackerras Cc: ye xingchen Cc: Zeal Robot Signed-off-by: Andrew Morton --- arch/arm/kernel/machine_kexec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/arm/kernel/machine_kexec.c~arm-kexec-make-machine_crash_nonpanic_core-static +++ a/arch/arm/kernel/machine_kexec.c @@ -73,7 +73,7 @@ void machine_kexec_cleanup(struct kimage { } -void machine_crash_nonpanic_core(void *unused) +static void machine_crash_nonpanic_core(void *unused) { struct pt_regs regs; _ Patches currently in -mm which might be from chenlifu@huawei.com are arm-kexec-make-machine_crash_nonpanic_core-static.patch