* [PATCH] kexec, remove panic_on_warn kernel parameter from kdump situations
@ 2014-12-30 14:57 Prarit Bhargava
2015-01-02 12:54 ` Vivek Goyal
0 siblings, 1 reply; 11+ messages in thread
From: Prarit Bhargava @ 2014-12-30 14:57 UTC (permalink / raw)
To: kexec; +Cc: Prarit Bhargava, Dave Young, WANG Chao, Vivek Goyal
panic_on_warn kernel parameter will cause the kernel to panic when a
WARN() is hit in the kernel. This is not a good situation for the kdump
kernel because then it would be possible for the kdump kernel to panic in
a non-fatal WARN().
This patch removes panic_on_warn as a kernel parameter for the kdump
kernel.
Signed-off-by: Prarit Bhargava <prarit@redhat.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
Cc: WANG Chao <chaowang@redhat.com>
---
kexec/kexec.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/kexec/kexec.c b/kexec/kexec.c
index b088916..323cafb 100644
--- a/kexec/kexec.c
+++ b/kexec/kexec.c
@@ -1048,8 +1048,10 @@ char *get_command_line(void)
line[strlen(line) - 1] = '\0';
remove_parameter(line, "BOOT_IMAGE");
- if (kexec_flags & KEXEC_ON_CRASH)
+ if (kexec_flags & KEXEC_ON_CRASH) {
remove_parameter(line, "crashkernel");
+ remove_parameter(line, "panic_on_warn");
+ }
return line;
}
--
1.7.9.3
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH] kexec, remove panic_on_warn kernel parameter from kdump situations
2014-12-30 14:57 [PATCH] kexec, remove panic_on_warn kernel parameter from kdump situations Prarit Bhargava
@ 2015-01-02 12:54 ` Vivek Goyal
2015-01-02 13:07 ` Prarit Bhargava
0 siblings, 1 reply; 11+ messages in thread
From: Vivek Goyal @ 2015-01-02 12:54 UTC (permalink / raw)
To: Prarit Bhargava; +Cc: Dave Young, kexec, WANG Chao
On Tue, Dec 30, 2014 at 09:57:51AM -0500, Prarit Bhargava wrote:
> panic_on_warn kernel parameter will cause the kernel to panic when a
> WARN() is hit in the kernel. This is not a good situation for the kdump
> kernel because then it would be possible for the kdump kernel to panic in
> a non-fatal WARN().
>
> This patch removes panic_on_warn as a kernel parameter for the kdump
> kernel.
>
I think modifying kexec-tools is not best place for this. It probably is better to take care of this in distribution specific scripts.
In the past we have learnt that it is best that kexec-tools does least
amount of manipulation with command line.
Thanks
Vivek
> Signed-off-by: Prarit Bhargava <prarit@redhat.com>
> Cc: Dave Young <dyoung@redhat.com>
> Cc: Vivek Goyal <vgoyal@redhat.com>
> Cc: WANG Chao <chaowang@redhat.com>
> ---
> kexec/kexec.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/kexec/kexec.c b/kexec/kexec.c
> index b088916..323cafb 100644
> --- a/kexec/kexec.c
> +++ b/kexec/kexec.c
> @@ -1048,8 +1048,10 @@ char *get_command_line(void)
> line[strlen(line) - 1] = '\0';
>
> remove_parameter(line, "BOOT_IMAGE");
> - if (kexec_flags & KEXEC_ON_CRASH)
> + if (kexec_flags & KEXEC_ON_CRASH) {
> remove_parameter(line, "crashkernel");
> + remove_parameter(line, "panic_on_warn");
> + }
>
> return line;
> }
> --
> 1.7.9.3
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] kexec, remove panic_on_warn kernel parameter from kdump situations
2015-01-02 12:54 ` Vivek Goyal
@ 2015-01-02 13:07 ` Prarit Bhargava
2015-01-02 13:17 ` Vivek Goyal
0 siblings, 1 reply; 11+ messages in thread
From: Prarit Bhargava @ 2015-01-02 13:07 UTC (permalink / raw)
To: Vivek Goyal; +Cc: Dave Young, kexec, WANG Chao
On 01/02/2015 07:54 AM, Vivek Goyal wrote:
> On Tue, Dec 30, 2014 at 09:57:51AM -0500, Prarit Bhargava wrote:
>> panic_on_warn kernel parameter will cause the kernel to panic when a
>> WARN() is hit in the kernel. This is not a good situation for the kdump
>> kernel because then it would be possible for the kdump kernel to panic in
>> a non-fatal WARN().
>>
>> This patch removes panic_on_warn as a kernel parameter for the kdump
>> kernel.
>>
>
> I think modifying kexec-tools is not best place for this. It probably is better to take care of this in distribution specific scripts.
>
> In the past we have learnt that it is best that kexec-tools does least
> amount of manipulation with command line.
Well .. here's the question to think about: what does adding panic_on_warn to
the kdump kernel get you? AFAICT, nothing.
If panic_on_warn is specified, the only thing that will happen is that kdump
will fail (which is always bad IMO). There is no real difference in the stack
trace between the WARN() and panic situations so there is no information loss.
So I disagree -- we should never specify panic_on_warn on kdump kernel.
P.
>
> Thanks
> Vivek
>
>> Signed-off-by: Prarit Bhargava <prarit@redhat.com>
>> Cc: Dave Young <dyoung@redhat.com>
>> Cc: Vivek Goyal <vgoyal@redhat.com>
>> Cc: WANG Chao <chaowang@redhat.com>
>> ---
>> kexec/kexec.c | 4 +++-
>> 1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/kexec/kexec.c b/kexec/kexec.c
>> index b088916..323cafb 100644
>> --- a/kexec/kexec.c
>> +++ b/kexec/kexec.c
>> @@ -1048,8 +1048,10 @@ char *get_command_line(void)
>> line[strlen(line) - 1] = '\0';
>>
>> remove_parameter(line, "BOOT_IMAGE");
>> - if (kexec_flags & KEXEC_ON_CRASH)
>> + if (kexec_flags & KEXEC_ON_CRASH) {
>> remove_parameter(line, "crashkernel");
>> + remove_parameter(line, "panic_on_warn");
>> + }
>>
>> return line;
>> }
>> --
>> 1.7.9.3
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] kexec, remove panic_on_warn kernel parameter from kdump situations
2015-01-02 13:07 ` Prarit Bhargava
@ 2015-01-02 13:17 ` Vivek Goyal
2015-01-05 1:49 ` Simon Horman
2015-01-06 1:44 ` Dave Young
0 siblings, 2 replies; 11+ messages in thread
From: Vivek Goyal @ 2015-01-02 13:17 UTC (permalink / raw)
To: Prarit Bhargava; +Cc: Dave Young, kexec, WANG Chao
On Fri, Jan 02, 2015 at 08:07:20AM -0500, Prarit Bhargava wrote:
>
>
> On 01/02/2015 07:54 AM, Vivek Goyal wrote:
> > On Tue, Dec 30, 2014 at 09:57:51AM -0500, Prarit Bhargava wrote:
> >> panic_on_warn kernel parameter will cause the kernel to panic when a
> >> WARN() is hit in the kernel. This is not a good situation for the kdump
> >> kernel because then it would be possible for the kdump kernel to panic in
> >> a non-fatal WARN().
> >>
> >> This patch removes panic_on_warn as a kernel parameter for the kdump
> >> kernel.
> >>
> >
> > I think modifying kexec-tools is not best place for this. It probably is better to take care of this in distribution specific scripts.
> >
> > In the past we have learnt that it is best that kexec-tools does least
> > amount of manipulation with command line.
>
> Well .. here's the question to think about: what does adding panic_on_warn to
> the kdump kernel get you? AFAICT, nothing.
Let us consider a hypothetical situation. What if we have some buggy code
which will corrupt file system in certain situation and we detect that
situation and throw a warning.
In that case as a work around specifying panic_on_warn in kdump kernel
will make sense as we don't want to make further progress if we hit
the warning as it has potential to corrupt fs.
Again this is hypothetical but it can happen. So panic_on_warn might
still be useful in kdump kernel for some corner debugging cases.
That's why I think we should do it in distribution specific scripts
and that too only if user did not specify panic_on_warn for second
kernel explicitly.
>
> If panic_on_warn is specified, the only thing that will happen is that kdump
> will fail (which is always bad IMO). There is no real difference in the stack
> trace between the WARN() and panic situations so there is no information loss.
>
> So I disagree -- we should never specify panic_on_warn on kdump kernel.
I am saying that do it in distribution specific scripts and not in
kexec-tools.
Thanks
Vivek
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] kexec, remove panic_on_warn kernel parameter from kdump situations
2015-01-02 13:17 ` Vivek Goyal
@ 2015-01-05 1:49 ` Simon Horman
2015-01-06 1:44 ` Dave Young
1 sibling, 0 replies; 11+ messages in thread
From: Simon Horman @ 2015-01-05 1:49 UTC (permalink / raw)
To: Vivek Goyal; +Cc: Prarit Bhargava, kexec, Dave Young, WANG Chao
On Fri, Jan 02, 2015 at 08:17:09AM -0500, Vivek Goyal wrote:
> On Fri, Jan 02, 2015 at 08:07:20AM -0500, Prarit Bhargava wrote:
> >
> >
> > On 01/02/2015 07:54 AM, Vivek Goyal wrote:
> > > On Tue, Dec 30, 2014 at 09:57:51AM -0500, Prarit Bhargava wrote:
> > >> panic_on_warn kernel parameter will cause the kernel to panic when a
> > >> WARN() is hit in the kernel. This is not a good situation for the kdump
> > >> kernel because then it would be possible for the kdump kernel to panic in
> > >> a non-fatal WARN().
> > >>
> > >> This patch removes panic_on_warn as a kernel parameter for the kdump
> > >> kernel.
> > >>
> > >
> > > I think modifying kexec-tools is not best place for this. It probably is better to take care of this in distribution specific scripts.
> > >
> > > In the past we have learnt that it is best that kexec-tools does least
> > > amount of manipulation with command line.
> >
> > Well .. here's the question to think about: what does adding panic_on_warn to
> > the kdump kernel get you? AFAICT, nothing.
>
> Let us consider a hypothetical situation. What if we have some buggy code
> which will corrupt file system in certain situation and we detect that
> situation and throw a warning.
>
> In that case as a work around specifying panic_on_warn in kdump kernel
> will make sense as we don't want to make further progress if we hit
> the warning as it has potential to corrupt fs.
>
> Again this is hypothetical but it can happen. So panic_on_warn might
> still be useful in kdump kernel for some corner debugging cases.
>
> That's why I think we should do it in distribution specific scripts
> and that too only if user did not specify panic_on_warn for second
> kernel explicitly.
>
> >
> > If panic_on_warn is specified, the only thing that will happen is that kdump
> > will fail (which is always bad IMO). There is no real difference in the stack
> > trace between the WARN() and panic situations so there is no information loss.
> >
> > So I disagree -- we should never specify panic_on_warn on kdump kernel.
>
> I am saying that do it in distribution specific scripts and not in
> kexec-tools.
I have reverted this patch until some consensus is reached.
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] kexec, remove panic_on_warn kernel parameter from kdump situations
2015-01-02 13:17 ` Vivek Goyal
2015-01-05 1:49 ` Simon Horman
@ 2015-01-06 1:44 ` Dave Young
2015-01-06 1:54 ` Vivek Goyal
1 sibling, 1 reply; 11+ messages in thread
From: Dave Young @ 2015-01-06 1:44 UTC (permalink / raw)
To: Vivek Goyal; +Cc: Prarit Bhargava, kexec, WANG Chao
On 01/02/15 at 08:17am, Vivek Goyal wrote:
> On Fri, Jan 02, 2015 at 08:07:20AM -0500, Prarit Bhargava wrote:
> >
> >
> > On 01/02/2015 07:54 AM, Vivek Goyal wrote:
> > > On Tue, Dec 30, 2014 at 09:57:51AM -0500, Prarit Bhargava wrote:
> > >> panic_on_warn kernel parameter will cause the kernel to panic when a
> > >> WARN() is hit in the kernel. This is not a good situation for the kdump
> > >> kernel because then it would be possible for the kdump kernel to panic in
> > >> a non-fatal WARN().
> > >>
> > >> This patch removes panic_on_warn as a kernel parameter for the kdump
> > >> kernel.
> > >>
> > >
> > > I think modifying kexec-tools is not best place for this. It probably is better to take care of this in distribution specific scripts.
> > >
> > > In the past we have learnt that it is best that kexec-tools does least
> > > amount of manipulation with command line.
> >
> > Well .. here's the question to think about: what does adding panic_on_warn to
> > the kdump kernel get you? AFAICT, nothing.
>
> Let us consider a hypothetical situation. What if we have some buggy code
> which will corrupt file system in certain situation and we detect that
> situation and throw a warning.
>
> In that case as a work around specifying panic_on_warn in kdump kernel
> will make sense as we don't want to make further progress if we hit
> the warning as it has potential to corrupt fs.
>
> Again this is hypothetical but it can happen. So panic_on_warn might
> still be useful in kdump kernel for some corner debugging cases.
>
> That's why I think we should do it in distribution specific scripts
> and that too only if user did not specify panic_on_warn for second
> kernel explicitly.
Thinking of user who use upstream kexec-tools instead of distribution toolset,
In case kexec --reuse-cmdline, it will copy /proc/cmdline, but user will have
no way to remove part of them.
I do want to insist on removing 'panic_on_warn' in upstream kexec-tools, but
we should give user an option to remove it. Something like:
kexec --reuse-cmdline --remove-params="panic_on_warn" will be good.
Thanks
Dave
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] kexec, remove panic_on_warn kernel parameter from kdump situations
2015-01-06 1:44 ` Dave Young
@ 2015-01-06 1:54 ` Vivek Goyal
2015-01-06 8:05 ` Dave Young
0 siblings, 1 reply; 11+ messages in thread
From: Vivek Goyal @ 2015-01-06 1:54 UTC (permalink / raw)
To: Dave Young; +Cc: Prarit Bhargava, kexec, WANG Chao
On Tue, Jan 06, 2015 at 09:44:05AM +0800, Dave Young wrote:
> On 01/02/15 at 08:17am, Vivek Goyal wrote:
> > On Fri, Jan 02, 2015 at 08:07:20AM -0500, Prarit Bhargava wrote:
> > >
> > >
> > > On 01/02/2015 07:54 AM, Vivek Goyal wrote:
> > > > On Tue, Dec 30, 2014 at 09:57:51AM -0500, Prarit Bhargava wrote:
> > > >> panic_on_warn kernel parameter will cause the kernel to panic when a
> > > >> WARN() is hit in the kernel. This is not a good situation for the kdump
> > > >> kernel because then it would be possible for the kdump kernel to panic in
> > > >> a non-fatal WARN().
> > > >>
> > > >> This patch removes panic_on_warn as a kernel parameter for the kdump
> > > >> kernel.
> > > >>
> > > >
> > > > I think modifying kexec-tools is not best place for this. It probably is better to take care of this in distribution specific scripts.
> > > >
> > > > In the past we have learnt that it is best that kexec-tools does least
> > > > amount of manipulation with command line.
> > >
> > > Well .. here's the question to think about: what does adding panic_on_warn to
> > > the kdump kernel get you? AFAICT, nothing.
> >
> > Let us consider a hypothetical situation. What if we have some buggy code
> > which will corrupt file system in certain situation and we detect that
> > situation and throw a warning.
> >
> > In that case as a work around specifying panic_on_warn in kdump kernel
> > will make sense as we don't want to make further progress if we hit
> > the warning as it has potential to corrupt fs.
> >
> > Again this is hypothetical but it can happen. So panic_on_warn might
> > still be useful in kdump kernel for some corner debugging cases.
> >
> > That's why I think we should do it in distribution specific scripts
> > and that too only if user did not specify panic_on_warn for second
> > kernel explicitly.
>
> Thinking of user who use upstream kexec-tools instead of distribution toolset,
> In case kexec --reuse-cmdline, it will copy /proc/cmdline, but user will have
> no way to remove part of them.
>
> I do want to insist on removing 'panic_on_warn' in upstream kexec-tools, but
> we should give user an option to remove it. Something like:
>
> kexec --reuse-cmdline --remove-params="panic_on_warn" will be good.
If user is using --reuse-commandline at the same time does not want some
of the parameters from command line, then don't use --reuse-commandline.
This is overenginnering. First provide an option to reuse the commandline
and provide another option to selectively remove some parameters from that
commandline.
What's wrong with existing parameters of --command-line. This just allows
user to specify whatever command line is suitable.
So, no, we should not provide --remove-params. If existing command line
does not work for new kenrel, then user should not use
--reuse-commandline option.
Thanks
Vivek
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] kexec, remove panic_on_warn kernel parameter from kdump situations
2015-01-06 1:54 ` Vivek Goyal
@ 2015-01-06 8:05 ` Dave Young
2015-01-06 12:46 ` Baoquan He
2015-01-06 13:06 ` Vivek Goyal
0 siblings, 2 replies; 11+ messages in thread
From: Dave Young @ 2015-01-06 8:05 UTC (permalink / raw)
To: Vivek Goyal; +Cc: Prarit Bhargava, kexec, WANG Chao
On 01/05/15 at 08:54pm, Vivek Goyal wrote:
> On Tue, Jan 06, 2015 at 09:44:05AM +0800, Dave Young wrote:
> > On 01/02/15 at 08:17am, Vivek Goyal wrote:
> > > On Fri, Jan 02, 2015 at 08:07:20AM -0500, Prarit Bhargava wrote:
> > > >
> > > >
> > > > On 01/02/2015 07:54 AM, Vivek Goyal wrote:
> > > > > On Tue, Dec 30, 2014 at 09:57:51AM -0500, Prarit Bhargava wrote:
> > > > >> panic_on_warn kernel parameter will cause the kernel to panic when a
> > > > >> WARN() is hit in the kernel. This is not a good situation for the kdump
> > > > >> kernel because then it would be possible for the kdump kernel to panic in
> > > > >> a non-fatal WARN().
> > > > >>
> > > > >> This patch removes panic_on_warn as a kernel parameter for the kdump
> > > > >> kernel.
> > > > >>
> > > > >
> > > > > I think modifying kexec-tools is not best place for this. It probably is better to take care of this in distribution specific scripts.
> > > > >
> > > > > In the past we have learnt that it is best that kexec-tools does least
> > > > > amount of manipulation with command line.
> > > >
> > > > Well .. here's the question to think about: what does adding panic_on_warn to
> > > > the kdump kernel get you? AFAICT, nothing.
> > >
> > > Let us consider a hypothetical situation. What if we have some buggy code
> > > which will corrupt file system in certain situation and we detect that
> > > situation and throw a warning.
> > >
> > > In that case as a work around specifying panic_on_warn in kdump kernel
> > > will make sense as we don't want to make further progress if we hit
> > > the warning as it has potential to corrupt fs.
> > >
> > > Again this is hypothetical but it can happen. So panic_on_warn might
> > > still be useful in kdump kernel for some corner debugging cases.
> > >
> > > That's why I think we should do it in distribution specific scripts
> > > and that too only if user did not specify panic_on_warn for second
> > > kernel explicitly.
> >
> > Thinking of user who use upstream kexec-tools instead of distribution toolset,
> > In case kexec --reuse-cmdline, it will copy /proc/cmdline, but user will have
> > no way to remove part of them.
> >
> > I do want to insist on removing 'panic_on_warn' in upstream kexec-tools, but
> > we should give user an option to remove it. Something like:
> >
> > kexec --reuse-cmdline --remove-params="panic_on_warn" will be good.
>
> If user is using --reuse-commandline at the same time does not want some
> of the parameters from command line, then don't use --reuse-commandline.
>
> This is overenginnering. First provide an option to reuse the commandline
> and provide another option to selectively remove some parameters from that
> commandline.
>
> What's wrong with existing parameters of --command-line. This just allows
> user to specify whatever command line is suitable.
>
> So, no, we should not provide --remove-params. If existing command line
> does not work for new kenrel, then user should not use
> --reuse-commandline option.
Hmm, ok. So hope one who is use panic_on_warn in 1st kernel know what he is doing
and do not simply copy the 1st kernel cmdline for 2nd kernel.
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] kexec, remove panic_on_warn kernel parameter from kdump situations
2015-01-06 8:05 ` Dave Young
@ 2015-01-06 12:46 ` Baoquan He
2015-01-06 13:07 ` Vivek Goyal
2015-01-06 13:06 ` Vivek Goyal
1 sibling, 1 reply; 11+ messages in thread
From: Baoquan He @ 2015-01-06 12:46 UTC (permalink / raw)
To: Dave Young; +Cc: Prarit Bhargava, kexec, WANG Chao, Vivek Goyal
On 01/06/15 at 04:05pm, Dave Young wrote:
> On 01/05/15 at 08:54pm, Vivek Goyal wrote:
> > On Tue, Jan 06, 2015 at 09:44:05AM +0800, Dave Young wrote:
> > > On 01/02/15 at 08:17am, Vivek Goyal wrote:
> > > > On Fri, Jan 02, 2015 at 08:07:20AM -0500, Prarit Bhargava wrote:
> > > > >
> > > > >
> > > > > On 01/02/2015 07:54 AM, Vivek Goyal wrote:
> > > > > > On Tue, Dec 30, 2014 at 09:57:51AM -0500, Prarit Bhargava wrote:
> > > > > >> panic_on_warn kernel parameter will cause the kernel to panic when a
> > > > > >> WARN() is hit in the kernel. This is not a good situation for the kdump
> > > > > >> kernel because then it would be possible for the kdump kernel to panic in
> > > > > >> a non-fatal WARN().
> > > > > >>
> > > > > >> This patch removes panic_on_warn as a kernel parameter for the kdump
> > > > > >> kernel.
> > > > > >>
> > > > > >
> > > > > > I think modifying kexec-tools is not best place for this. It probably is better to take care of this in distribution specific scripts.
> > > > > >
> > > > > > In the past we have learnt that it is best that kexec-tools does least
> > > > > > amount of manipulation with command line.
> > > > >
> > > > > Well .. here's the question to think about: what does adding panic_on_warn to
> > > > > the kdump kernel get you? AFAICT, nothing.
> > > >
> > > > Let us consider a hypothetical situation. What if we have some buggy code
> > > > which will corrupt file system in certain situation and we detect that
> > > > situation and throw a warning.
> > > >
> > > > In that case as a work around specifying panic_on_warn in kdump kernel
> > > > will make sense as we don't want to make further progress if we hit
> > > > the warning as it has potential to corrupt fs.
> > > >
> > > > Again this is hypothetical but it can happen. So panic_on_warn might
> > > > still be useful in kdump kernel for some corner debugging cases.
> > > >
> > > > That's why I think we should do it in distribution specific scripts
> > > > and that too only if user did not specify panic_on_warn for second
> > > > kernel explicitly.
> > >
> > > Thinking of user who use upstream kexec-tools instead of distribution toolset,
> > > In case kexec --reuse-cmdline, it will copy /proc/cmdline, but user will have
> > > no way to remove part of them.
> > >
> > > I do want to insist on removing 'panic_on_warn' in upstream kexec-tools, but
> > > we should give user an option to remove it. Something like:
> > >
> > > kexec --reuse-cmdline --remove-params="panic_on_warn" will be good.
> >
> > If user is using --reuse-commandline at the same time does not want some
> > of the parameters from command line, then don't use --reuse-commandline.
> >
> > This is overenginnering. First provide an option to reuse the commandline
> > and provide another option to selectively remove some parameters from that
> > commandline.
> >
> > What's wrong with existing parameters of --command-line. This just allows
> > user to specify whatever command line is suitable.
> >
> > So, no, we should not provide --remove-params. If existing command line
> > does not work for new kenrel, then user should not use
> > --reuse-commandline option.
>
> Hmm, ok. So hope one who is use panic_on_warn in 1st kernel know what he is doing
> and do not simply copy the 1st kernel cmdline for 2nd kernel.
I am fine with which postion it should be cared in some extent.
This is truly a problem we need consider. If one distribution used
doesn't handle it, and user using latest upstream kernel will be
surprised by this.
>
> _______________________________________________
> kexec mailing list
> kexec@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/kexec
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] kexec, remove panic_on_warn kernel parameter from kdump situations
2015-01-06 8:05 ` Dave Young
2015-01-06 12:46 ` Baoquan He
@ 2015-01-06 13:06 ` Vivek Goyal
1 sibling, 0 replies; 11+ messages in thread
From: Vivek Goyal @ 2015-01-06 13:06 UTC (permalink / raw)
To: Dave Young; +Cc: Prarit Bhargava, kexec, WANG Chao
On Tue, Jan 06, 2015 at 04:05:00PM +0800, Dave Young wrote:
> On 01/05/15 at 08:54pm, Vivek Goyal wrote:
> > On Tue, Jan 06, 2015 at 09:44:05AM +0800, Dave Young wrote:
> > > On 01/02/15 at 08:17am, Vivek Goyal wrote:
> > > > On Fri, Jan 02, 2015 at 08:07:20AM -0500, Prarit Bhargava wrote:
> > > > >
> > > > >
> > > > > On 01/02/2015 07:54 AM, Vivek Goyal wrote:
> > > > > > On Tue, Dec 30, 2014 at 09:57:51AM -0500, Prarit Bhargava wrote:
> > > > > >> panic_on_warn kernel parameter will cause the kernel to panic when a
> > > > > >> WARN() is hit in the kernel. This is not a good situation for the kdump
> > > > > >> kernel because then it would be possible for the kdump kernel to panic in
> > > > > >> a non-fatal WARN().
> > > > > >>
> > > > > >> This patch removes panic_on_warn as a kernel parameter for the kdump
> > > > > >> kernel.
> > > > > >>
> > > > > >
> > > > > > I think modifying kexec-tools is not best place for this. It probably is better to take care of this in distribution specific scripts.
> > > > > >
> > > > > > In the past we have learnt that it is best that kexec-tools does least
> > > > > > amount of manipulation with command line.
> > > > >
> > > > > Well .. here's the question to think about: what does adding panic_on_warn to
> > > > > the kdump kernel get you? AFAICT, nothing.
> > > >
> > > > Let us consider a hypothetical situation. What if we have some buggy code
> > > > which will corrupt file system in certain situation and we detect that
> > > > situation and throw a warning.
> > > >
> > > > In that case as a work around specifying panic_on_warn in kdump kernel
> > > > will make sense as we don't want to make further progress if we hit
> > > > the warning as it has potential to corrupt fs.
> > > >
> > > > Again this is hypothetical but it can happen. So panic_on_warn might
> > > > still be useful in kdump kernel for some corner debugging cases.
> > > >
> > > > That's why I think we should do it in distribution specific scripts
> > > > and that too only if user did not specify panic_on_warn for second
> > > > kernel explicitly.
> > >
> > > Thinking of user who use upstream kexec-tools instead of distribution toolset,
> > > In case kexec --reuse-cmdline, it will copy /proc/cmdline, but user will have
> > > no way to remove part of them.
> > >
> > > I do want to insist on removing 'panic_on_warn' in upstream kexec-tools, but
> > > we should give user an option to remove it. Something like:
> > >
> > > kexec --reuse-cmdline --remove-params="panic_on_warn" will be good.
> >
> > If user is using --reuse-commandline at the same time does not want some
> > of the parameters from command line, then don't use --reuse-commandline.
> >
> > This is overenginnering. First provide an option to reuse the commandline
> > and provide another option to selectively remove some parameters from that
> > commandline.
> >
> > What's wrong with existing parameters of --command-line. This just allows
> > user to specify whatever command line is suitable.
> >
> > So, no, we should not provide --remove-params. If existing command line
> > does not work for new kenrel, then user should not use
> > --reuse-commandline option.
>
> Hmm, ok. So hope one who is use panic_on_warn in 1st kernel know what he is doing
> and do not simply copy the 1st kernel cmdline for 2nd kernel.
--reuse-commandline will work only for kexec case and not kdump case. And
in case of kexec, it is fine to use panic_on_warn in kexeced kernel. So
there is no need to worry here.
Thanks
Vivek
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] kexec, remove panic_on_warn kernel parameter from kdump situations
2015-01-06 12:46 ` Baoquan He
@ 2015-01-06 13:07 ` Vivek Goyal
0 siblings, 0 replies; 11+ messages in thread
From: Vivek Goyal @ 2015-01-06 13:07 UTC (permalink / raw)
To: Baoquan He; +Cc: Prarit Bhargava, kexec, Dave Young, WANG Chao
On Tue, Jan 06, 2015 at 08:46:44PM +0800, Baoquan He wrote:
> On 01/06/15 at 04:05pm, Dave Young wrote:
> > On 01/05/15 at 08:54pm, Vivek Goyal wrote:
> > > On Tue, Jan 06, 2015 at 09:44:05AM +0800, Dave Young wrote:
> > > > On 01/02/15 at 08:17am, Vivek Goyal wrote:
> > > > > On Fri, Jan 02, 2015 at 08:07:20AM -0500, Prarit Bhargava wrote:
> > > > > >
> > > > > >
> > > > > > On 01/02/2015 07:54 AM, Vivek Goyal wrote:
> > > > > > > On Tue, Dec 30, 2014 at 09:57:51AM -0500, Prarit Bhargava wrote:
> > > > > > >> panic_on_warn kernel parameter will cause the kernel to panic when a
> > > > > > >> WARN() is hit in the kernel. This is not a good situation for the kdump
> > > > > > >> kernel because then it would be possible for the kdump kernel to panic in
> > > > > > >> a non-fatal WARN().
> > > > > > >>
> > > > > > >> This patch removes panic_on_warn as a kernel parameter for the kdump
> > > > > > >> kernel.
> > > > > > >>
> > > > > > >
> > > > > > > I think modifying kexec-tools is not best place for this. It probably is better to take care of this in distribution specific scripts.
> > > > > > >
> > > > > > > In the past we have learnt that it is best that kexec-tools does least
> > > > > > > amount of manipulation with command line.
> > > > > >
> > > > > > Well .. here's the question to think about: what does adding panic_on_warn to
> > > > > > the kdump kernel get you? AFAICT, nothing.
> > > > >
> > > > > Let us consider a hypothetical situation. What if we have some buggy code
> > > > > which will corrupt file system in certain situation and we detect that
> > > > > situation and throw a warning.
> > > > >
> > > > > In that case as a work around specifying panic_on_warn in kdump kernel
> > > > > will make sense as we don't want to make further progress if we hit
> > > > > the warning as it has potential to corrupt fs.
> > > > >
> > > > > Again this is hypothetical but it can happen. So panic_on_warn might
> > > > > still be useful in kdump kernel for some corner debugging cases.
> > > > >
> > > > > That's why I think we should do it in distribution specific scripts
> > > > > and that too only if user did not specify panic_on_warn for second
> > > > > kernel explicitly.
> > > >
> > > > Thinking of user who use upstream kexec-tools instead of distribution toolset,
> > > > In case kexec --reuse-cmdline, it will copy /proc/cmdline, but user will have
> > > > no way to remove part of them.
> > > >
> > > > I do want to insist on removing 'panic_on_warn' in upstream kexec-tools, but
> > > > we should give user an option to remove it. Something like:
> > > >
> > > > kexec --reuse-cmdline --remove-params="panic_on_warn" will be good.
> > >
> > > If user is using --reuse-commandline at the same time does not want some
> > > of the parameters from command line, then don't use --reuse-commandline.
> > >
> > > This is overenginnering. First provide an option to reuse the commandline
> > > and provide another option to selectively remove some parameters from that
> > > commandline.
> > >
> > > What's wrong with existing parameters of --command-line. This just allows
> > > user to specify whatever command line is suitable.
> > >
> > > So, no, we should not provide --remove-params. If existing command line
> > > does not work for new kenrel, then user should not use
> > > --reuse-commandline option.
> >
> > Hmm, ok. So hope one who is use panic_on_warn in 1st kernel know what he is doing
> > and do not simply copy the 1st kernel cmdline for 2nd kernel.
>
> I am fine with which postion it should be cared in some extent.
> This is truly a problem we need consider. If one distribution used
> doesn't handle it, and user using latest upstream kernel will be
> surprised by this.
This is true for all kernel parameters. One distribution might decide
to use some kenrel parameter by default during installation and other
might not. Is kexec-tools supposed to keep track of all kernel parameters?
It is just not possible.
That's why it is up to distributions to figure out what parameters work
for them and modify their scripts accordingly.
Thanks
Vivek
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2015-01-06 13:07 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-30 14:57 [PATCH] kexec, remove panic_on_warn kernel parameter from kdump situations Prarit Bhargava
2015-01-02 12:54 ` Vivek Goyal
2015-01-02 13:07 ` Prarit Bhargava
2015-01-02 13:17 ` Vivek Goyal
2015-01-05 1:49 ` Simon Horman
2015-01-06 1:44 ` Dave Young
2015-01-06 1:54 ` Vivek Goyal
2015-01-06 8:05 ` Dave Young
2015-01-06 12:46 ` Baoquan He
2015-01-06 13:07 ` Vivek Goyal
2015-01-06 13:06 ` Vivek Goyal
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox