From: Li Zhong <zhong@linux.vnet.ibm.com>
To: Wim Van Sebroeck <wim@iguana.be>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>,
LKML <linux-kernel@vger.kernel.org>,
tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com,
x86@kernel.org, paulus@samba.org, mingo@elte.hu,
acme@ghostprotocols.net, Vegard Nossum <vegardno@ifi.uio.no>,
Don Zickus <dzickus@redhat.com>,
tony.luck@intel.com, bp@amd64.org, robert.richter@amd.com,
lenb@kernel.org, minyard@acm.org, linux-edac@vger.kernel.org,
oprofile-list@lists.sf.net, linux-acpi@vger.kernel.org,
openipmi-developer@lists.sourceforge.net,
linux-watchdog@vger.kernel.org, Thomas.Mingarelli@hp.com
Subject: Re: [PATCH v2 x86 1/2] fix page faults by nmiaction in nmi if kmemcheck is enabled
Date: Tue, 06 Mar 2012 09:46:39 +0800 [thread overview]
Message-ID: <1330998399.24353.65.camel@ThinkPad-T61> (raw)
In-Reply-To: <20120305102914.GA12774@spo001.leaseweb.com>
On Mon, 2012-03-05 at 11:29 +0100, Wim Van Sebroeck wrote:
> Hi Li,
>
> > diff --git a/drivers/watchdog/hpwdt.c b/drivers/watchdog/hpwdt.c
> > index 8464ea1..e575e63 100644
> > --- a/drivers/watchdog/hpwdt.c
> > +++ b/drivers/watchdog/hpwdt.c
> > @@ -689,9 +689,22 @@ static void __devinit dmi_find_icru(const struct dmi_header *dm, void *dummy)
> > }
> > }
> >
> > +static struct nmiaction hpwdt_nmiaction[] = {
> > + {
> > + .handler = hpwdt_pretimeout,
> > + .name = "hpwdt",
> > + },
> > + {
> > + .handler = hpwdt_pretimeout,
> > + .flags = NMI_FLAG_FIRST,
> > + .name = "hpwdt",
> > + },
> > +};
> > +
> > static int __devinit hpwdt_init_nmi_decoding(struct pci_dev *dev)
> > {
> > int retval;
> > + struct nmiaction *na = hpwdt_nmiaction;
> >
> > /*
> > * On typical CRU-based systems we need to map that service in
> > @@ -733,9 +746,11 @@ static int __devinit hpwdt_init_nmi_decoding(struct pci_dev *dev)
> > * die notify list to handle a critical NMI. The default is to
> > * be last so other users of the NMI signal can function.
> > */
> > - retval = register_nmi_handler(NMI_UNKNOWN, hpwdt_pretimeout,
> > - (priority) ? NMI_FLAG_FIRST : 0,
> > - "hpwdt");
> > +
> > + if (priority)
> > + na = &hpwdt_nmiaction[1];
> > +
> > + retval = register_nmi_handler(NMI_UNKNOWN, na);
> > if (retval != 0) {
> > dev_warn(&dev->dev,
> > "Unable to register a die notifier (err=%d).\n",
>
> Why not do something like;
>
> static struct nmiaction hpwdt_nmiaction = {
> .handler = hpwdt_pretimeout,
> .name = "hpwdt",
> };
>
> ...
> if (priority)
> hpwdt_nmiaction.flags = NMI_FLAG_FIRST;
> ...
>
Thank you, Wim. I'll update it.
Thanks,
Zhong
> Kind regards,
> Wim.
>
next prev parent reply other threads:[~2012-03-06 1:46 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-20 6:01 [PATCH 0/2 x86] fix some page faults in nmi if kmemcheck is enabled Li Zhong
2012-02-20 6:04 ` [PATCH 1/2 x86] fix page faults by nmi handler " Li Zhong
2012-02-20 6:07 ` [PATCH 2/2 x86] fix page faults by perf events " Li Zhong
2012-02-20 11:00 ` [PATCH 0/2 x86] fix some page faults " Peter Zijlstra
2012-02-21 1:42 ` Li Zhong
2012-02-21 10:17 ` Peter Zijlstra
2012-02-23 9:53 ` Li Zhong
2012-02-27 10:58 ` Peter Zijlstra
2012-02-28 2:45 ` Li Zhong
2012-03-02 19:44 ` Don Zickus
2012-03-05 1:49 ` Li Zhong
2012-03-05 10:05 ` [PATCH v2 x86 1/2] fix page faults by nmiaction " Li Zhong
2012-03-05 10:29 ` Wim Van Sebroeck
2012-03-06 1:46 ` Li Zhong [this message]
2012-03-05 15:54 ` Don Zickus
2012-03-05 17:55 ` Peter Zijlstra
2012-03-05 17:49 ` Peter Zijlstra
2012-03-05 21:45 ` Don Zickus
2012-03-06 10:09 ` [PATCH v3 " Li Zhong
2012-03-06 10:27 ` Vegard Nossum
2012-03-09 9:52 ` Li Zhong
2012-03-06 15:00 ` Don Zickus
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=1330998399.24353.65.camel@ThinkPad-T61 \
--to=zhong@linux.vnet.ibm.com \
--cc=Thomas.Mingarelli@hp.com \
--cc=a.p.zijlstra@chello.nl \
--cc=acme@ghostprotocols.net \
--cc=bp@amd64.org \
--cc=dzickus@redhat.com \
--cc=hpa@zytor.com \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-edac@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-watchdog@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=mingo@redhat.com \
--cc=minyard@acm.org \
--cc=openipmi-developer@lists.sourceforge.net \
--cc=oprofile-list@lists.sf.net \
--cc=paulus@samba.org \
--cc=robert.richter@amd.com \
--cc=tglx@linutronix.de \
--cc=tony.luck@intel.com \
--cc=vegardno@ifi.uio.no \
--cc=wim@iguana.be \
--cc=x86@kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.