From: Takenori Nagano <t-nagano@ah.jp.nec.com>
To: Randy Dunlap <rdunlap@xenotime.net>
Cc: linux-kernel@vger.kernel.org, vgoyal@in.ibm.com,
"Eric W. Biederman" <ebiederm@xmission.com>,
k-miyoshi@cb.jp.nec.com, kexec@lists.infradead.org,
Bernhard Walle <bwalle@suse.de>, Keith Owens <kaos@ocs.com.au>,
Andrew Morton <akpm@linux-foundation.org>,
kdb@oss.sgi.com
Subject: Re: [PATCH 2/2] implement new notifier function to panic_notifier_list ,take2
Date: Thu, 25 Oct 2007 16:59:59 +0900 [thread overview]
Message-ID: <47204CFF.50709@ah.jp.nec.com> (raw)
In-Reply-To: <20071024111100.0f5d8b58.rdunlap@xenotime.net>
Randy Dunlap wrote:
> On Thu, 18 Oct 2007 17:53:03 +0900 Takenori Nagano wrote:
>
>> This patch implements new notifier function to panic_notifier_list. We can
>> change the list of order by debugfs.
>
> Should be sysfs IMO. debugfs isn't (should not be) required.
OK. We try to find an appropriate place.
http://lkml.org/lkml/2007/10/24/54
>> Thanks,
>>
>> ---
>>
>> Signed-off-by: Takenori Nagano <t-nagano@ah.jp.nec.com>
>>
>> ---
>> diff -uprN linux-2.6.23.orig/arch/alpha/kernel/setup.c linux-2.6.23/arch/alpha/kernel/setup.c
>> --- linux-2.6.23.orig/arch/alpha/kernel/setup.c 2007-10-10 05:31:38.000000000 +0900
>> +++ linux-2.6.23/arch/alpha/kernel/setup.c 2007-10-18 08:56:53.928000000 +0900
>> @@ -45,14 +45,22 @@
>> #include <asm/io.h>
>> #include <linux/log2.h>
>>
>> -extern struct atomic_notifier_head panic_notifier_list;
>> +extern struct tunable_atomic_notifier_head panic_notifier_list;
>> static int alpha_panic_event(struct notifier_block *, unsigned long, void *);
>> -static struct notifier_block alpha_panic_block = {
>> +static struct notifier_block alpha_panic_block_base = {
>> alpha_panic_event,
>> NULL,
>> INT_MAX /* try to do it first */
>> };
>>
>> +static struct tunable_atomic_notifier_block alpha_panic_block = {
>> + &alpha_panic_block_base,
>
> Use C99-style initializer. and NULLs aren't needed.
OK. I'll fix.
Thanks,
Takenori
>
>> + NULL,
>> + NULL,
>> + NULL,
>> + NULL
>> +};
>> +
>> #include <asm/uaccess.h>
>> #include <asm/pgtable.h>
>> #include <asm/system.h>
>
>> diff -uprN linux-2.6.23.orig/arch/arm/mach-omap1/board-voiceblue.c linux-2.6.23/arch/arm/mach-omap1/board-voiceblue.c
>> --- linux-2.6.23.orig/arch/arm/mach-omap1/board-voiceblue.c 2007-10-10 05:31:38.000000000 +0900
>> +++ linux-2.6.23/arch/arm/mach-omap1/board-voiceblue.c 2007-10-18 09:00:35.900000000 +0900
>> @@ -228,14 +228,23 @@ static int panic_event(struct notifier_b
>> return NOTIFY_DONE;
>> }
>>
>> -static struct notifier_block panic_block = {
>> +static struct notifier_block panic_block_base = {
>> .notifier_call = panic_event,
>> };
>>
>> +static struct tunable_atomic_notifier_block panic_block = {
>> + .nb = &panic_block_base,
>> + .head = NULL,
>> + .dir = NULL,
>> + .pri_dentry = NULL,
>> + .desc_dentry = NULL
>
> Drop the NULLs.
>
>> +};
>> +
>> static int __init voiceblue_setup(void)
>> {
>> /* Setup panic notifier */
>> - notifier_chain_register(&panic_notifier_list, &panic_block);
>> + tunable_atomic_notifier_chain_register(&panic_notifier_list,
>> + &panic_block, "VoiceBlue", NULL);
>>
>> return 0;
>> }
>> diff -uprN linux-2.6.23.orig/arch/mips/sgi-ip22/ip22-reset.c linux-2.6.23/arch/mips/sgi-ip22/ip22-reset.c
>> --- linux-2.6.23.orig/arch/mips/sgi-ip22/ip22-reset.c 2007-10-10 05:31:38.000000000 +0900
>> +++ linux-2.6.23/arch/mips/sgi-ip22/ip22-reset.c 2007-10-18 09:01:33.408000000 +0900
>> @@ -226,10 +226,18 @@ static int panic_event(struct notifier_b
>> return NOTIFY_DONE;
>> }
>>
>> -static struct notifier_block panic_block = {
>> +static struct notifier_block panic_block_base = {
>> .notifier_call = panic_event,
>> };
>>
>> +static struct tunable_atomic_notifier_block panic_block = {
>> + .nb = &panic_block_base,
>> + .head = NULL,
>> + .dir = NULL,
>> + .pri_dentry = NULL,
>> + .desc_dentry = NULL
>
> Ditto.
>
>> +};
>> +
>> static int __init reboot_setup(void)
>> {
>> _machine_restart = sgi_machine_restart;
>
>> diff -uprN linux-2.6.23.orig/arch/mips/sgi-ip32/ip32-reset.c linux-2.6.23/arch/mips/sgi-ip32/ip32-reset.c
>> --- linux-2.6.23.orig/arch/mips/sgi-ip32/ip32-reset.c 2007-10-10 05:31:38.000000000 +0900
>> +++ linux-2.6.23/arch/mips/sgi-ip32/ip32-reset.c 2007-10-18 09:02:20.496000000 +0900
>> @@ -175,10 +175,18 @@ static int panic_event(struct notifier_b
>> return NOTIFY_DONE;
>> }
>>
>> -static struct notifier_block panic_block = {
>> +static struct notifier_block panic_block_base = {
>> .notifier_call = panic_event,
>> };
>>
>> +static struct tunable_atomic_notifier_block panic_block = {
>> + .nb = &panic_block_base,
>> + .head = NULL,
>> + .dir = NULL,
>> + .pri_dentry = NULL,
>> + .desc_dentry = NULL
>
> Ditto.
>
>> +};
>> +
>> static __init int ip32_reboot_setup(void)
>> {
>> /* turn on the green led only */
>
>> diff -uprN linux-2.6.23.orig/arch/parisc/kernel/pdc_chassis.c linux-2.6.23/arch/parisc/kernel/pdc_chassis.c
>> --- linux-2.6.23.orig/arch/parisc/kernel/pdc_chassis.c 2007-10-10 05:31:38.000000000 +0900
>> +++ linux-2.6.23/arch/parisc/kernel/pdc_chassis.c 2007-10-18 08:56:54.052000000 +0900
>> @@ -101,11 +101,18 @@ static int pdc_chassis_panic_event(struc
>> }
>>
>>
>> -static struct notifier_block pdc_chassis_panic_block = {
>> +static struct notifier_block pdc_chassis_panic_block_base = {
>> .notifier_call = pdc_chassis_panic_event,
>> .priority = INT_MAX,
>> };
>>
>> +static struct tunable_atomic_notifier_block pdc_chassis_panic_block = {
>> + .nb = &pdc_chassis_panic_block_base,
>> + .head = NULL,
>> + .dir = NULL,
>> + .pri_dentry = NULL,
>> + .desc_dentry = NULL
>
> Ditto... (I'll skip mentioning the rest of these.)
>
>> +};
>>
>> /**
>> * parisc_reboot_event() - Called by the reboot handler.
>
>
> ---
> ~Randy
>
>
--
+=-=+=-=+=-=+=-=+=-=+=-=+=-=+=-=+=-=+=-=+
NEC コンピュータソフトウェア事業本部
OSSプラットフォーム開発本部
永野 武則 (Takenori Nagano)
TEL:8-23-57270(MyLine) 042-333-5383(外線)
e-mail:t-nagano@ah.jp.nec.com
+=-=+=-=+=-=+=-=+=-=+=-=+=-=+=-=+=-=+=-=+
prev parent reply other threads:[~2007-10-25 8:02 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <4716FFDB.7090502@ah.jp.nec.com>
2007-10-18 6:45 ` [PATCH 1/2] add tunable_notifier function ,take2 Takenori Nagano
2007-10-18 6:45 ` [PATCH 2/2] implement new notifier function to panic_notifier_list ,take2 Takenori Nagano
2007-10-18 8:53 ` [PATCH 1/2] add tunable_notifier function ,take2 Takenori Nagano
2007-10-24 18:16 ` Randy Dunlap
2007-10-25 8:02 ` Takenori Nagano
2007-10-18 8:53 ` [PATCH 2/2] implement new notifier function to panic_notifier_list ,take2 Takenori Nagano
2007-10-24 18:11 ` Randy Dunlap
2007-10-25 7:59 ` Takenori Nagano [this message]
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=47204CFF.50709@ah.jp.nec.com \
--to=t-nagano@ah.jp.nec.com \
--cc=akpm@linux-foundation.org \
--cc=bwalle@suse.de \
--cc=ebiederm@xmission.com \
--cc=k-miyoshi@cb.jp.nec.com \
--cc=kaos@ocs.com.au \
--cc=kdb@oss.sgi.com \
--cc=kexec@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rdunlap@xenotime.net \
--cc=vgoyal@in.ibm.com \
/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