69d61bb3e3
In kernel, with the support of cpu/memory hotplug on crash, kdump reloading only needs to update the elfcorehdr. To realize the benefits, we need prevent udev from updating kdump kernel on hot un/plug changes when detecting that the crash_hotplug sysfs nodes are present. Link: https://lore.kernel.org/lkml/20230814214446.6659-1-eric.devolder@oracle.com/ Link: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=d68b4b6f307d155475cce541f2aee938032ed22e Signed-off-by: Baoquan He <bhe@redhat.com>
21 lines
906 B
Plaintext
21 lines
906 B
Plaintext
# The kernel updates the crash elfcorehdr for CPU and memory changes
|
|
SUBSYSTEM=="cpu", ATTRS{crash_hotplug}=="1", GOTO="kdump_reload_end"
|
|
SUBSYSTEM=="memory", ATTRS{crash_hotplug}=="1", GOTO="kdump_reload_end"
|
|
|
|
SUBSYSTEM=="cpu", ACTION=="add", GOTO="kdump_reload"
|
|
SUBSYSTEM=="cpu", ACTION=="remove", GOTO="kdump_reload"
|
|
SUBSYSTEM=="memory", ACTION=="online", GOTO="kdump_reload"
|
|
SUBSYSTEM=="memory", ACTION=="offline", GOTO="kdump_reload"
|
|
|
|
GOTO="kdump_reload_end"
|
|
|
|
LABEL="kdump_reload"
|
|
|
|
# If kdump is not loaded, calling kdump-udev-throttle will end up
|
|
# doing nothing, but systemd-run will always generate extra logs for
|
|
# each call, so trigger the kdump-udev-throttler only if kdump
|
|
# service is active to avoid unnecessary logs
|
|
RUN+="/bin/sh -c '/usr/bin/systemctl is-active kdump.service || exit 0; /usr/bin/systemd-run --quiet --no-block /usr/lib/udev/kdump-udev-throttler'"
|
|
|
|
LABEL="kdump_reload_end"
|