mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
misc: pvpanic: add crash loaded event
Some users prefer kdump tools to generate guest kernel dumpfile, at the same time, need a out-of-band kernel panic event. Currently if booting guest kernel with 'crash_kexec_post_notifiers', QEMU will receive PVPANIC_PANICKED event and stop VM. If booting guest kernel without 'crash_kexec_post_notifiers', guest will not call notifier chain. Add PVPANIC_CRASH_LOADED bit for pvpanic event, it means that guest kernel actually hit a kernel panic, but the guest kernel wants to handle by itself. Signed-off-by: zhenwei pi <pizhenwei@bytedance.com> Link: https://lore.kernel.org/r/20200102023513.318836-3-pizhenwei@bytedance.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e0b9a42735
commit
191941692a
2 changed files with 9 additions and 1 deletions
|
@ -4,5 +4,6 @@
|
|||
#define __PVPANIC_H__
|
||||
|
||||
#define PVPANIC_PANICKED (1 << 0)
|
||||
#define PVPANIC_CRASH_LOADED (1 << 1)
|
||||
|
||||
#endif /* __PVPANIC_H__ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue