* kexec on panic
@ 2017-02-10 8:14 Denys Fedoryshchenko
2017-02-10 15:43 ` Petr Tesarik
2017-02-18 7:42 ` Jon Masters
0 siblings, 2 replies; 6+ messages in thread
From: Denys Fedoryshchenko @ 2017-02-10 8:14 UTC (permalink / raw)
To: linux-kernel, kexec
Hello,
After years of using kexec and recent unpleasant experience with modern
(supposed to be blazing fast to boot) hardware that need 5-10 minutes
just to pass POST tests,
one question came up to me:
Is it possible anyhow to execute regular (not special "panic" one to
capture crash data) kexec on panic to reduce reboot time?
Thanks!
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: kexec on panic
2017-02-10 8:14 kexec on panic Denys Fedoryshchenko
@ 2017-02-10 15:43 ` Petr Tesarik
2017-02-15 17:29 ` Clif Houck
2017-02-18 7:42 ` Jon Masters
1 sibling, 1 reply; 6+ messages in thread
From: Petr Tesarik @ 2017-02-10 15:43 UTC (permalink / raw)
To: kexec
On Fri, 10 Feb 2017 10:14:02 +0200
Denys Fedoryshchenko <nuclearcat@nuclearcat.com> wrote:
> Hello,
>
> After years of using kexec and recent unpleasant experience with modern
> (supposed to be blazing fast to boot) hardware that need 5-10 minutes
> just to pass POST tests,
> one question came up to me:
> Is it possible anyhow to execute regular (not special "panic" one to
> capture crash data) kexec on panic to reduce reboot time?
No. But you can load a specially crafted panic initrd which kexec's
back to the production kernel.
HTH,
Petr T
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: kexec on panic
2017-02-10 15:43 ` Petr Tesarik
@ 2017-02-15 17:29 ` Clif Houck
2017-02-15 21:45 ` Marc Milgram
0 siblings, 1 reply; 6+ messages in thread
From: Clif Houck @ 2017-02-15 17:29 UTC (permalink / raw)
To: Petr Tesarik, kexec
Is it possible to kexec on demand (not panic!) into another kernel with
the idea being to avoid a reboot?
For instance, say you had Linux running in a ramdisk, and all that
ramdisk Linux did was lay down a bootable Linux image onto the main
disk, and then awaited a command to kexec to the Linux image on disk? Is
something like that possible? Would I still need to specially craft the
initrd? If so, is there any literature available on how to do that?
Thanks,
Clif Houck
On 2/10/2017 9:43 AM, Petr Tesarik wrote:
> On Fri, 10 Feb 2017 10:14:02 +0200
> Denys Fedoryshchenko <nuclearcat@nuclearcat.com> wrote:
>
>> Hello,
>>
>> After years of using kexec and recent unpleasant experience with modern
>> (supposed to be blazing fast to boot) hardware that need 5-10 minutes
>> just to pass POST tests,
>> one question came up to me:
>> Is it possible anyhow to execute regular (not special "panic" one to
>> capture crash data) kexec on panic to reduce reboot time?
>
> No. But you can load a specially crafted panic initrd which kexec's
> back to the production kernel.
>
> HTH,
> Petr T
>
> _______________________________________________
> 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] 6+ messages in thread
* Re: kexec on panic
2017-02-15 17:29 ` Clif Houck
@ 2017-02-15 21:45 ` Marc Milgram
0 siblings, 0 replies; 6+ messages in thread
From: Marc Milgram @ 2017-02-15 21:45 UTC (permalink / raw)
To: kexec
It is possible to boot into a new kernel as documented on the following
page:
https://access.redhat.com/discussions/682993
That said, even though this is documented on a Red Hat page, Red Hat
does not officially support it.
Marc
On 02/15/2017 12:29 PM, Clif Houck wrote:
> Is it possible to kexec on demand (not panic!) into another kernel with
> the idea being to avoid a reboot?
>
> For instance, say you had Linux running in a ramdisk, and all that
> ramdisk Linux did was lay down a bootable Linux image onto the main
> disk, and then awaited a command to kexec to the Linux image on disk? Is
> something like that possible? Would I still need to specially craft the
> initrd? If so, is there any literature available on how to do that?
>
> Thanks,
> Clif Houck
>
> On 2/10/2017 9:43 AM, Petr Tesarik wrote:
>> On Fri, 10 Feb 2017 10:14:02 +0200
>> Denys Fedoryshchenko <nuclearcat@nuclearcat.com> wrote:
>>
>>> Hello,
>>>
>>> After years of using kexec and recent unpleasant experience with modern
>>> (supposed to be blazing fast to boot) hardware that need 5-10 minutes
>>> just to pass POST tests,
>>> one question came up to me:
>>> Is it possible anyhow to execute regular (not special "panic" one to
>>> capture crash data) kexec on panic to reduce reboot time?
>>
>> No. But you can load a specially crafted panic initrd which kexec's
>> back to the production kernel.
>>
>> HTH,
>> Petr T
>>
>> _______________________________________________
>> 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
>
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: kexec on panic
2017-02-10 8:14 kexec on panic Denys Fedoryshchenko
2017-02-10 15:43 ` Petr Tesarik
@ 2017-02-18 7:42 ` Jon Masters
2017-02-18 8:09 ` Denys Fedoryshchenko
1 sibling, 1 reply; 6+ messages in thread
From: Jon Masters @ 2017-02-18 7:42 UTC (permalink / raw)
To: Denys Fedoryshchenko, linux-kernel, kexec
Hi Denys,
On 02/10/2017 03:14 AM, Denys Fedoryshchenko wrote:
> After years of using kexec and recent unpleasant experience with modern (supposed to be blazing fast to boot) hardware that need 5-10 minutes just to pass POST tests,
> one question came up to me:
> Is it possible anyhow to execute regular (not special "panic" one to capture crash data) kexec on panic to reduce reboot time?
Generally, you don't want to do this, because various platform hardware
might be in non-quiescent states (still doing DMA to random memory, etc.)
and other nastiness that means you don't want to do more than the minimal
amount in a kexec on panic (crash). We've seen no end of fun and games
even with just regular crash dumps while hardware is busily writing to
memory that it shouldn't be. An IOMMU helps, but isn't a cure-all.
Jon.
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: kexec on panic
2017-02-18 7:42 ` Jon Masters
@ 2017-02-18 8:09 ` Denys Fedoryshchenko
0 siblings, 0 replies; 6+ messages in thread
From: Denys Fedoryshchenko @ 2017-02-18 8:09 UTC (permalink / raw)
To: Jon Masters; +Cc: kexec, linux-kernel
On 2017-02-18 09:42, Jon Masters wrote:
> Hi Denys,
>
> On 02/10/2017 03:14 AM, Denys Fedoryshchenko wrote:
>
>> After years of using kexec and recent unpleasant experience with
>> modern (supposed to be blazing fast to boot) hardware that need 5-10
>> minutes just to pass POST tests,
>> one question came up to me:
>> Is it possible anyhow to execute regular (not special "panic" one to
>> capture crash data) kexec on panic to reduce reboot time?
>
> Generally, you don't want to do this, because various platform hardware
> might be in non-quiescent states (still doing DMA to random memory,
> etc.)
> and other nastiness that means you don't want to do more than the
> minimal
> amount in a kexec on panic (crash). We've seen no end of fun and games
> even with just regular crash dumps while hardware is busily writing to
> memory that it shouldn't be. An IOMMU helps, but isn't a cure-all.
>
> Jon.
Well, i have to try, even sometimes i am facing issues with non-booting
hardware even on regular kexec, but having at small customer HP server
that need almost 6 minutes to boot,
no hot-spare(and hard to do by many reasons, no spare 10G ports, cost of
hardware and etc) and some nasty bugs that is not resolved yet - forcing
me to search way to reduce reboot time.
If i will find way to save backtrace and reboot fast, it will help a lot
to debug kernels with minimal downtime, if bug is reproducible only on
live system.
What i did now, might be insanely wrong, but:
diff -Naur linux-4.9.9-vanilla/kernel/kexec_core.c
linux-4.9.9/kernel/kexec_core.c
--- linux-4.9.9-vanilla/kernel/kexec_core.c 2017-02-09
07:08:40.000000000 +0000
+++ linux-4.9.9/kernel/kexec_core.c 2017-02-17 12:54:49.000000000 +0000
@@ -897,6 +897,10 @@
machine_crash_shutdown(&fixed_regs);
machine_kexec(kexec_crash_image);
}
+ if (kexec_image) {
+ machine_shutdown();
+ machine_kexec(kexec_image);
+ }
mutex_unlock(&kexec_mutex);
}
}
Then
kexec -l /mnt/flash/kernel --append="intel_idle.max_cstate=0
processor.max_cstate=1"
and
echo c >/proc/sysrq-trigger
worked even on busy network router, but i'm not sure it will be same on
real networking stack crash.
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-02-18 8:10 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-10 8:14 kexec on panic Denys Fedoryshchenko
2017-02-10 15:43 ` Petr Tesarik
2017-02-15 17:29 ` Clif Houck
2017-02-15 21:45 ` Marc Milgram
2017-02-18 7:42 ` Jon Masters
2017-02-18 8:09 ` Denys Fedoryshchenko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox