Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751825AbcCAH0A (ORCPT ); Tue, 1 Mar 2016 02:26:00 -0500 Received: from mail.skyhub.de ([78.46.96.112]:35611 "EHLO mail.skyhub.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750827AbcCAHZ7 (ORCPT ); Tue, 1 Mar 2016 02:25:59 -0500 Date: Tue, 1 Mar 2016 08:24:56 +0100 From: Borislav Petkov To: Hidehiro Kawai Cc: Andrew Morton , Thomas Mingarelli , Wim Van Sebroeck , Corey Minyard , Michal Hocko , linux-watchdog@vger.kernel.org, linux-kernel@vger.kernel.org, Michal Hocko , Vitaly Kuznetsov , HATAYAMA Daisuke , Tejun Heo , openipmi-developer@lists.sourceforge.net, Borislav Petkov , Thomas Gleixner Subject: Re: [PATCH 1/3] panic: Export panic_cpu and nmi_panic_self_stop Message-ID: <20160301072456.GA2997@nazgul.tnic> References: <20160301015035.4318.78677.stgit@softrs> <20160301015037.4318.33155.stgit@softrs> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20160301015037.4318.33155.stgit@softrs> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1160 Lines: 38 On Tue, Mar 01, 2016 at 10:50:37AM +0900, Hidehiro Kawai wrote: > Export panic_cpu and nmi_panic_self_stop symbols for modules which > use nmi_panic() macro. > > Signed-off-by: Hidehiro Kawai > Cc: Andrew Morton > Cc: Borislav Petkov > Cc: Thomas Gleixner > Cc: Michal Hocko > Cc: HATAYAMA Daisuke > Cc: Vitaly Kuznetsov > Cc: Tejun Heo > --- > kernel/panic.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/kernel/panic.c b/kernel/panic.c > index d96469d..f4e8035 100644 > --- a/kernel/panic.c > +++ b/kernel/panic.c > @@ -69,8 +69,10 @@ void __weak nmi_panic_self_stop(struct pt_regs *regs) > { > panic_smp_self_stop(); > } > +EXPORT_SYMBOL(nmi_panic_self_stop); > > atomic_t panic_cpu = ATOMIC_INIT(PANIC_CPU_INVALID); > +EXPORT_SYMBOL(panic_cpu); Can we make nmi_panic() at least a proper function and export that instead of exporting all those implementation details...? -- Regards/Gruss, Boris. ECO tip #101: Trim your mails when you reply. --