From: Michal Hocko <mhocko@kernel.org>
To: "河合英宏 / KAWAI,HIDEHIRO" <hidehiro.kawai.ez@hitachi.com>
Cc: "'Borislav Petkov'" <bp@alien8.de>,
Andrew Morton <akpm@linux-foundation.org>,
Thomas Mingarelli <thomas.mingarelli@hpe.com>,
Wim Van Sebroeck <wim@iguana.be>, Corey Minyard <minyard@acm.org>,
"linux-watchdog@vger.kernel.org" <linux-watchdog@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Vitaly Kuznetsov <vkuznets@redhat.com>,
HATAYAMA Daisuke <d.hatayama@jp.fujitsu.com>,
Tejun Heo <tj@kernel.org>,
"openipmi-developer@lists.sourceforge.net"
<openipmi-developer@lists.sourceforge.net>,
Borislav Petkov <bp@suse.de>,
Thomas Gleixner <tglx@linutronix.de>
Subject: Re: [PATCH 1/3] panic: Export panic_cpu and nmi_panic_self_stop
Date: Tue, 1 Mar 2016 09:49:25 +0100 [thread overview]
Message-ID: <20160301084924.GA9461@dhcp22.suse.cz> (raw)
In-Reply-To: <04EAB7311EE43145B2D3536183D1A84454B0661B@GSjpTKYDCembx31.service.hitachi.net>
On Tue 01-03-16 07:48:10, 河合英宏 / KAWAI,HIDEHIRO wrote:
> Hi Borislav,
>
> > From: Borislav Petkov [mailto:bp@alien8.de]
> > 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 <hidehiro.kawai.ez@hitachi.com>
> > > Cc: Andrew Morton <akpm@linux-foundation.org>
> > > Cc: Borislav Petkov <bp@suse.de>
> > > Cc: Thomas Gleixner <tglx@linutronix.de>
> > > Cc: Michal Hocko <mhocko@suse.com>
> > > Cc: HATAYAMA Daisuke <d.hatayama@jp.fujitsu.com>
> > > Cc: Vitaly Kuznetsov <vkuznets@redhat.com>
> > > Cc: Tejun Heo <tj@kernel.org>
> > > ---
> > > 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...?
>
> The reason I implemented nmi_panic() as a macro is to pass
> variable arguments directly to panic(). Fortunately, since all
> invocations of nmi_panic() just pass a fixed string, I can change it
> to a normal function like:
>
> int nmi_panic(struct pt_regs *regs, const char *msg)
> {
> ...
> panic("%s", msg);
>
> If people don't mind if that, I'll change it.
Yeah, I think this is better. If we ever need a variable strings we can
reconsider.
--
Michal Hocko
SUSE Labs
next prev parent reply other threads:[~2016-03-01 8:49 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-01 1:50 [PATCH 0/3] Use nmi_panic() in panic on NMI case Hidehiro Kawai
2016-03-01 1:50 ` [PATCH 1/3] panic: Export panic_cpu and nmi_panic_self_stop Hidehiro Kawai
2016-03-01 7:24 ` Borislav Petkov
2016-03-01 7:48 ` 河合英宏 / KAWAI,HIDEHIRO
2016-03-01 8:49 ` Michal Hocko [this message]
2016-03-01 1:50 ` [PATCH 2/3] ipmi/watchdog: Use nmi_panic() when kernel panics in NMI handler Hidehiro Kawai
2016-03-01 2:30 ` Corey Minyard
2016-03-01 4:23 ` 河合英宏 / KAWAI,HIDEHIRO
2016-03-01 5:12 ` Guenter Roeck
2016-03-01 2:56 ` Guenter Roeck
2016-03-01 8:50 ` Michal Hocko
2016-03-01 1:50 ` [PATCH 3/3] hpwdt: " Hidehiro Kawai
2016-03-01 2:55 ` Guenter Roeck
2016-03-01 3:54 ` 河合英宏 / KAWAI,HIDEHIRO
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160301084924.GA9461@dhcp22.suse.cz \
--to=mhocko@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=bp@alien8.de \
--cc=bp@suse.de \
--cc=d.hatayama@jp.fujitsu.com \
--cc=hidehiro.kawai.ez@hitachi.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-watchdog@vger.kernel.org \
--cc=minyard@acm.org \
--cc=openipmi-developer@lists.sourceforge.net \
--cc=tglx@linutronix.de \
--cc=thomas.mingarelli@hpe.com \
--cc=tj@kernel.org \
--cc=vkuznets@redhat.com \
--cc=wim@iguana.be \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome