All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hidehiro Kawai <hidehiro.kawai.ez@hitachi.com>
To: Andrew Morton <akpm@linux-foundation.org>,
	"Eric W. Biederman" <ebiederm@xmission.com>,
	Vivek Goyal <vgoyal@redhat.com>
Cc: linux-mips@linux-mips.org, Baoquan He <bhe@redhat.com>,
	linux-s390@vger.kernel.org, linux-sh@vger.kernel.org,
	kexec@lists.infradead.org, linux-kernel@vger.kernel.org,
	linux-metag@vger.kernel.org,
	HATAYAMA Daisuke <d.hatayama@jp.fujitsu.com>,
	Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
	Daniel Walker <dwalker@fifo99.com>,
	linuxppc-dev@lists.ozlabs.org, Ingo Molnar <mingo@kernel.org>,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/3] panic: Disable crash_kexec_post_notifiers if kdump is not available
Date: Fri, 10 Jul 2015 20:33:31 +0900	[thread overview]
Message-ID: <20150710113331.4368.63745.stgit@softrs> (raw)
In-Reply-To: <20150710113331.4368.10495.stgit@softrs>

You can call panic notifiers and kmsg dumpers before kdump by
specifying "crash_kexec_post_notifiers" as a boot parameter.
However, it doesn't make sense if kdump is not available.  In that
case, disable "crash_kexec_post_notifiers" boot parameter so that
you can't change the value of the parameter.

Signed-off-by: Hidehiro Kawai <hidehiro.kawai.ez@hitachi.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Eric Biederman <ebiederm@xmission.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
---
 kernel/panic.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/kernel/panic.c b/kernel/panic.c
index 04e91ff..5252331 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -502,12 +502,14 @@ __visible void __stack_chk_fail(void)
 core_param(pause_on_oops, pause_on_oops, int, 0644);
 core_param(panic_on_warn, panic_on_warn, int, 0644);
 
+#ifdef CONFIG_CRASH_DUMP
 static int __init setup_crash_kexec_post_notifiers(char *s)
 {
 	crash_kexec_post_notifiers = true;
 	return 0;
 }
 early_param("crash_kexec_post_notifiers", setup_crash_kexec_post_notifiers);
+#endif
 
 static int __init oops_setup(char *s)
 {



_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

WARNING: multiple messages have this Message-ID (diff)
From: Hidehiro Kawai <hidehiro.kawai.ez@hitachi.com>
To: Andrew Morton <akpm@linux-foundation.org>,
	"Eric W. Biederman" <ebiederm@xmission.com>,
	Vivek Goyal <vgoyal@redhat.com>
Cc: linux-mips@linux-mips.org, Baoquan He <bhe@redhat.com>,
	linux-sh@vger.kernel.org, linux-s390@vger.kernel.org,
	kexec@lists.infradead.org, linux-kernel@vger.kernel.org,
	Ingo Molnar <mingo@kernel.org>,
	HATAYAMA Daisuke <d.hatayama@jp.fujitsu.com>,
	Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
	Daniel Walker <dwalker@fifo99.com>,
	linuxppc-dev@lists.ozlabs.org, linux-metag@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/3] panic: Disable crash_kexec_post_notifiers if kdump is not available
Date: Fri, 10 Jul 2015 20:33:31 +0900	[thread overview]
Message-ID: <20150710113331.4368.63745.stgit@softrs> (raw)
In-Reply-To: <20150710113331.4368.10495.stgit@softrs>

You can call panic notifiers and kmsg dumpers before kdump by
specifying "crash_kexec_post_notifiers" as a boot parameter.
However, it doesn't make sense if kdump is not available.  In that
case, disable "crash_kexec_post_notifiers" boot parameter so that
you can't change the value of the parameter.

Signed-off-by: Hidehiro Kawai <hidehiro.kawai.ez@hitachi.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Eric Biederman <ebiederm@xmission.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
---
 kernel/panic.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/kernel/panic.c b/kernel/panic.c
index 04e91ff..5252331 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -502,12 +502,14 @@ __visible void __stack_chk_fail(void)
 core_param(pause_on_oops, pause_on_oops, int, 0644);
 core_param(panic_on_warn, panic_on_warn, int, 0644);
 
+#ifdef CONFIG_CRASH_DUMP
 static int __init setup_crash_kexec_post_notifiers(char *s)
 {
 	crash_kexec_post_notifiers = true;
 	return 0;
 }
 early_param("crash_kexec_post_notifiers", setup_crash_kexec_post_notifiers);
+#endif
 
 static int __init oops_setup(char *s)
 {




WARNING: multiple messages have this Message-ID (diff)
From: Hidehiro Kawai <hidehiro.kawai.ez@hitachi.com>
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/3] panic: Disable crash_kexec_post_notifiers if kdump is not available
Date: Fri, 10 Jul 2015 11:33:31 +0000	[thread overview]
Message-ID: <20150710113331.4368.63745.stgit@softrs> (raw)
In-Reply-To: <20150710113331.4368.10495.stgit@softrs>

You can call panic notifiers and kmsg dumpers before kdump by
specifying "crash_kexec_post_notifiers" as a boot parameter.
However, it doesn't make sense if kdump is not available.  In that
case, disable "crash_kexec_post_notifiers" boot parameter so that
you can't change the value of the parameter.

Signed-off-by: Hidehiro Kawai <hidehiro.kawai.ez@hitachi.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Eric Biederman <ebiederm@xmission.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
---
 kernel/panic.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/kernel/panic.c b/kernel/panic.c
index 04e91ff..5252331 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -502,12 +502,14 @@ __visible void __stack_chk_fail(void)
 core_param(pause_on_oops, pause_on_oops, int, 0644);
 core_param(panic_on_warn, panic_on_warn, int, 0644);
 
+#ifdef CONFIG_CRASH_DUMP
 static int __init setup_crash_kexec_post_notifiers(char *s)
 {
 	crash_kexec_post_notifiers = true;
 	return 0;
 }
 early_param("crash_kexec_post_notifiers", setup_crash_kexec_post_notifiers);
+#endif
 
 static int __init oops_setup(char *s)
 {



WARNING: multiple messages have this Message-ID (diff)
From: hidehiro.kawai.ez@hitachi.com (Hidehiro Kawai)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/3] panic: Disable crash_kexec_post_notifiers if kdump is not available
Date: Fri, 10 Jul 2015 20:33:31 +0900	[thread overview]
Message-ID: <20150710113331.4368.63745.stgit@softrs> (raw)
In-Reply-To: <20150710113331.4368.10495.stgit@softrs>

You can call panic notifiers and kmsg dumpers before kdump by
specifying "crash_kexec_post_notifiers" as a boot parameter.
However, it doesn't make sense if kdump is not available.  In that
case, disable "crash_kexec_post_notifiers" boot parameter so that
you can't change the value of the parameter.

Signed-off-by: Hidehiro Kawai <hidehiro.kawai.ez@hitachi.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Eric Biederman <ebiederm@xmission.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
---
 kernel/panic.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/kernel/panic.c b/kernel/panic.c
index 04e91ff..5252331 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -502,12 +502,14 @@ __visible void __stack_chk_fail(void)
 core_param(pause_on_oops, pause_on_oops, int, 0644);
 core_param(panic_on_warn, panic_on_warn, int, 0644);
 
+#ifdef CONFIG_CRASH_DUMP
 static int __init setup_crash_kexec_post_notifiers(char *s)
 {
 	crash_kexec_post_notifiers = true;
 	return 0;
 }
 early_param("crash_kexec_post_notifiers", setup_crash_kexec_post_notifiers);
+#endif
 
 static int __init oops_setup(char *s)
 {

  reply	other threads:[~2015-07-10 11:33 UTC|newest]

Thread overview: 105+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-10 11:33 [PATCH 0/3] kexec: crash_kexec_post_notifiers boot option related fixes Hidehiro Kawai
2015-07-10 11:33 ` Hidehiro Kawai
2015-07-10 11:33 ` Hidehiro Kawai
2015-07-10 11:33 ` Hidehiro Kawai
2015-07-10 11:33 ` Hidehiro Kawai [this message]
2015-07-10 11:33   ` [PATCH 1/3] panic: Disable crash_kexec_post_notifiers if kdump is not available Hidehiro Kawai
2015-07-10 11:33   ` Hidehiro Kawai
2015-07-10 11:33   ` Hidehiro Kawai
2015-07-10 13:41   ` Eric W. Biederman
2015-07-10 13:41     ` Eric W. Biederman
2015-07-10 13:41     ` Eric W. Biederman
2015-07-10 13:41     ` Eric W. Biederman
2015-07-10 13:41     ` Eric W. Biederman
2015-07-13 20:26     ` dwalker
2015-07-13 20:26       ` dwalker at fifo99.com
2015-07-13 20:26       ` dwalker
2015-07-13 20:26       ` dwalker
2015-07-14  1:19       ` Eric W. Biederman
2015-07-14  1:19         ` Eric W. Biederman
2015-07-14  1:19         ` Eric W. Biederman
2015-07-14  1:19         ` Eric W. Biederman
2015-07-14 13:59         ` dwalker
2015-07-14 13:59           ` dwalker at fifo99.com
2015-07-14 13:59           ` dwalker
2015-07-14 13:59           ` dwalker
2015-07-14 13:59           ` dwalker-zu3NM2574RrQT0dZR+AlfA
2015-07-14 14:20           ` Vivek Goyal
2015-07-14 14:20             ` Vivek Goyal
2015-07-14 14:20             ` Vivek Goyal
2015-07-14 14:20             ` Vivek Goyal
2015-07-14 14:20             ` Vivek Goyal
2015-07-14 15:02           ` Vivek Goyal
2015-07-14 15:02             ` Vivek Goyal
2015-07-14 15:02             ` Vivek Goyal
2015-07-14 15:02             ` Vivek Goyal
2015-07-14 15:34             ` dwalker
2015-07-14 15:34               ` dwalker at fifo99.com
2015-07-14 15:34               ` dwalker
2015-07-14 15:34               ` dwalker
2015-07-14 15:40               ` Vivek Goyal
2015-07-14 15:40                 ` Vivek Goyal
2015-07-14 15:40                 ` Vivek Goyal
2015-07-14 15:40                 ` Vivek Goyal
2015-07-14 15:48                 ` dwalker
2015-07-14 15:48                   ` dwalker at fifo99.com
2015-07-14 15:48                   ` dwalker
2015-07-14 15:48                   ` dwalker
2015-07-14 16:16                   ` Vivek Goyal
2015-07-14 16:16                     ` Vivek Goyal
2015-07-14 16:16                     ` Vivek Goyal
2015-07-14 16:16                     ` Vivek Goyal
2015-07-14 16:16                     ` Vivek Goyal
2015-07-14 17:06                     ` Eric W. Biederman
2015-07-14 17:06                       ` Eric W. Biederman
2015-07-14 17:06                       ` Eric W. Biederman
2015-07-14 17:06                       ` Eric W. Biederman
2015-07-14 17:06                       ` Eric W. Biederman
2015-07-14 17:29                       ` dwalker
2015-07-14 17:29                         ` dwalker at fifo99.com
2015-07-14 17:29                         ` dwalker
2015-07-14 17:29                         ` dwalker
2015-07-14 17:55                         ` Vivek Goyal
2015-07-14 17:55                           ` Vivek Goyal
2015-07-14 17:55                           ` Vivek Goyal
2015-07-14 17:55                           ` Vivek Goyal
2015-07-14 17:55                           ` Vivek Goyal
2015-07-14 18:01                           ` Eric W. Biederman
2015-07-14 18:01                             ` Eric W. Biederman
2015-07-14 18:01                             ` Eric W. Biederman
2015-07-14 18:01                             ` Eric W. Biederman
2015-07-14 18:23                             ` Vivek Goyal
2015-07-14 18:23                               ` Vivek Goyal
2015-07-14 18:23                               ` Vivek Goyal
2015-07-14 18:23                               ` Vivek Goyal
2015-07-14 18:23                               ` Vivek Goyal
2015-07-15  5:16                               ` Masami Hiramatsu
2015-07-15  5:16                                 ` Masami Hiramatsu
2015-07-15  5:16                                 ` Masami Hiramatsu
2015-07-15  5:16                                 ` Masami Hiramatsu
2015-07-15 10:49                 ` Hidehiro Kawai
2015-07-15 10:49                   ` Hidehiro Kawai
2015-07-15 10:49                   ` Hidehiro Kawai
2015-07-15 10:49                   ` Hidehiro Kawai
2015-07-15 10:49                   ` Hidehiro Kawai
2015-07-14  1:56       ` Hidehiro Kawai
2015-07-14  1:56         ` Hidehiro Kawai
2015-07-14  1:56         ` Hidehiro Kawai
2015-07-14  1:56         ` Hidehiro Kawai
2015-07-14  1:56         ` Hidehiro Kawai
2015-07-10 11:33 ` [PATCH 2/3] kexec: Pass panic message to crash_kexec() Hidehiro Kawai
2015-07-10 11:33   ` Hidehiro Kawai
2015-07-10 11:33   ` Hidehiro Kawai
2015-07-10 11:33   ` Hidehiro Kawai
2015-07-10 11:33 ` [PATCH 3/3] kexec: Change the timing of callbacks related to "crash_kexec_post_notifiers" boot option Hidehiro Kawai
2015-07-10 11:33   ` Hidehiro Kawai
2015-07-10 11:33   ` [PATCH 3/3] kexec: Change the timing of callbacks related to "crash_kexec_post_notifiers" boot optio Hidehiro Kawai
2015-07-10 11:33   ` [PATCH 3/3] kexec: Change the timing of callbacks related to "crash_kexec_post_notifiers" boot option Hidehiro Kawai
2015-07-14 14:42   ` Vivek Goyal
2015-07-14 14:42     ` Vivek Goyal
2015-07-14 14:42     ` [PATCH 3/3] kexec: Change the timing of callbacks related to "crash_kexec_post_notifiers" boot o Vivek Goyal
2015-07-14 14:42     ` [PATCH 3/3] kexec: Change the timing of callbacks related to "crash_kexec_post_notifiers" boot option Vivek Goyal
2015-07-15  3:09     ` Masami Hiramatsu
2015-07-15  3:09       ` Masami Hiramatsu
2015-07-15  3:09       ` Re: [PATCH 3/3] kexec: Change the timing of callbacks related to "crash_kexec_post_notifiers" bo Masami Hiramatsu
2015-07-15  3:09       ` Re: [PATCH 3/3] kexec: Change the timing of callbacks related to "crash_kexec_post_notifiers" boot option Masami Hiramatsu

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=20150710113331.4368.63745.stgit@softrs \
    --to=hidehiro.kawai.ez@hitachi.com \
    --cc=akpm@linux-foundation.org \
    --cc=bhe@redhat.com \
    --cc=d.hatayama@jp.fujitsu.com \
    --cc=dwalker@fifo99.com \
    --cc=ebiederm@xmission.com \
    --cc=kexec@lists.infradead.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-metag@vger.kernel.org \
    --cc=linux-mips@linux-mips.org \
    --cc=linux-s390@vger.kernel.org \
    --cc=linux-sh@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=masami.hiramatsu.pt@hitachi.com \
    --cc=mingo@kernel.org \
    --cc=vgoyal@redhat.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 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.