e074e3952b
tune sysconfig to save 2nd kernel memory usage The memory in 2nd kernel is limited, we need to use as less memory as we can to ensure vmcore capturing ok. I'm doing below improvements in this patch: 1) numa support is not necessary for kdump kernel, so disable it by adding numa=off to save some kernel mm memory usage. 2) Also add udev.children-max=2 to cmdline to limit max udev chidren processes. 3) For ppc64, ehea driver will by default enable multi queue feature which will use a lot of memory. Almost each ppc machine will oom for network(ssh/nfs) kdump. The module param use_mcs=0 is used to disable multi queue feature. Tested these params on an IBM machine with 2 numa nodes which ooms even for local dump to rootfs. With this patch oom does not happen for local/ssh dump, but for nfs dump oom still happens in the middle of makedumpfile vmcore copying. So there should be other improvement yet. For ehea driver there's other params we can use, but because it's hard to measure the saved memory, I'm waiting for input from IBM people. We can add them later. Signed-off-by: Dave Young <dyoung@redhat.com> Acked-by: Vivek Goyal <vgoyal@redhat.com>
36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
# Kernel Version string for the -kdump kernel, such as 2.6.13-1544.FC5kdump
|
|
# If no version is specified, then the init script will try to find a
|
|
# kdump kernel with the same version number as the running kernel.
|
|
KDUMP_KERNELVER=""
|
|
|
|
# The kdump commandline is the command line that needs to be passed off to
|
|
# the kdump kernel. This will likely match the contents of the grub kernel
|
|
# line. For example:
|
|
# KDUMP_COMMANDLINE="ro root=LABEL=/"
|
|
# Dracut depends on proper root= options, so please make sure that appropriate
|
|
# root= options are copied from /proc/cmdline. In general it is best to append
|
|
# command line options using "KDUMP_COMMANDLINE_APPEND=".
|
|
# If a command line is not specified, the default will be taken from
|
|
# /proc/cmdline
|
|
KDUMP_COMMANDLINE=""
|
|
|
|
# This variable lets us append arguments to the current kdump commandline
|
|
# As taken from either KDUMP_COMMANDLINE above, or from /proc/cmdline
|
|
KDUMP_COMMANDLINE_APPEND="irqpoll nr_cpus=1 reset_devices numa=off udev.children-max=2"
|
|
|
|
# Any additional kexec arguments required. In most situations, this should
|
|
# be left empty
|
|
#
|
|
# Example:
|
|
# KEXEC_ARGS="--elf32-core-headers"
|
|
KEXEC_ARGS=""
|
|
|
|
#Where to find the boot image
|
|
KDUMP_BOOTDIR="/boot"
|
|
|
|
#What is the image type used for kdump
|
|
KDUMP_IMG="vmlinuz"
|
|
|
|
#What is the images extension. Relocatable kernels don't have one
|
|
KDUMP_IMG_EXT=""
|