Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1286877
| From | Daniel Kiper <daniel.kiper@oracle.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 00/14] kexec: Add option to get crash kernel region size |
| Date | 2015-12-08 23:00 +0100 |
| Message-ID | <qDysG-7MA-7@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Crash kernel region size is available via sysfs on Linux running on
bare metal. However, this does not work when Linux runs as Xen dom0.
In this case Xen crash kernel region size should be established using
__HYPERVISOR_kexec_op hypercall (Linux kernel kexec functionality does
not make a lot of sense in Xen dom0). Sadly hypercalls are not easily
accessible using shell scripts or something like that. Potentially we
can check "xl dmesg" output for crashkernel option but this is not nice.
So, let's add this functionality, for Linux running on bare metal and
as Xen dom0, to kexec-tools. This way kdump scripts may establish crash
kernel region size in one way regardless of platform. All burden of
platform detection lies on kexec-tools.
Figure (and unit) displayed by this new kexec-tools functionality is
the same as one taken from /sys/kernel/kexec_crash_size.
First three patches are fixes and cleanups. The rest provides above
described functionality for all supported platforms.
Daniel
kexec/arch/arm/crashdump-arm.c | 10 ++++++++++
kexec/arch/cris/kexec-cris.c | 5 +++++
kexec/arch/i386/crashdump-x86.c | 18 +++++++++++++++++-
kexec/arch/ia64/crashdump-ia64.c | 10 ++++++++++
kexec/arch/m68k/kexec-m68k.c | 5 +++++
kexec/arch/mips/crashdump-mips.c | 9 +++++++++
kexec/arch/ppc/crashdump-powerpc.c | 4 ++++
kexec/arch/ppc64/crashdump-ppc64.c | 5 +++++
kexec/arch/s390/kexec-s390.c | 10 ++++++++++
kexec/arch/sh/crashdump-sh.c | 10 ++++++++++
kexec/crashdump.h | 1 -
kexec/kexec.8 | 3 +++
kexec/kexec.c | 6 +++++-
kexec/kexec.h | 5 ++++-
purgatory/Makefile | 2 +-
15 files changed, 98 insertions(+), 5 deletions(-)
Daniel Kiper (14):
purgatory: Add purgatory.map and purgatory.ro.sym to clean recipe
kexec: Remove redundant space from help message
crashdump: Remove stray get_crashkernel_region() declaration
crashdump/x86: Add print_crashkernel_region_size() function
crashdump/arm: Add print_crashkernel_region_size() function
crashdump/cris: Add print_crashkernel_region_size() function
crashdump/ia64: Add print_crashkernel_region_size() function
crashdump/m68k: Add print_crashkernel_region_size() function
crashdump/mips: Add print_crashkernel_region_size() function
crashdump/ppc: Add print_crashkernel_region_size() function
crashdump/ppc64: Add print_crashkernel_region_size() function
crashdump/s390: Add print_crashkernel_region_size() function
crashdump/sh: Add print_crashkernel_region_size() function
kexec: Add option to get crash kernel region size
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 00/14] kexec: Add option to get crash kernel region size Daniel Kiper <daniel.kiper@oracle.com> - 2015-12-08 23:00 +0100
[PATCH 04/14] crashdump/x86: Add print_crashkernel_region_size() function Daniel Kiper <daniel.kiper@oracle.com> - 2015-12-08 23:10 +0100
[PATCH 02/14] kexec: Remove redundant space from help message Daniel Kiper <daniel.kiper@oracle.com> - 2015-12-08 23:10 +0100
[PATCH 03/14] crashdump: Remove stray get_crashkernel_region() declaration Daniel Kiper <daniel.kiper@oracle.com> - 2015-12-08 23:10 +0100
[PATCH 08/14] crashdump/m68k: Add print_crashkernel_region_size() function Daniel Kiper <daniel.kiper@oracle.com> - 2015-12-08 23:10 +0100
[PATCH 10/14] crashdump/ppc: Add print_crashkernel_region_size() function Daniel Kiper <daniel.kiper@oracle.com> - 2015-12-08 23:10 +0100
Re: [PATCH 10/14] crashdump/ppc: Add print_crashkernel_region_size() function Dave Young <dyoung@redhat.com> - 2015-12-09 04:00 +0100
[PATCH 01/14] purgatory: Add purgatory.map and purgatory.ro.sym to clean recipe Daniel Kiper <daniel.kiper@oracle.com> - 2015-12-08 23:10 +0100
[PATCH 06/14] crashdump/cris: Add print_crashkernel_region_size() function Daniel Kiper <daniel.kiper@oracle.com> - 2015-12-08 23:10 +0100
Re: [PATCH 06/14] crashdump/cris: Add print_crashkernel_region_size() function Dave Young <dyoung@redhat.com> - 2015-12-09 04:00 +0100
[PATCH 05/14] crashdump/arm: Add print_crashkernel_region_size() function Daniel Kiper <daniel.kiper@oracle.com> - 2015-12-08 23:10 +0100
csiph-web