• Baoquan He's avatar
    crash: split crash dumping code out from kexec_core.c · 02aff848
    Baoquan He authored
    Currently, KEXEC_CORE select CRASH_CORE automatically because crash codes
    need be built in to avoid compiling error when building kexec code even
    though the crash dumping functionality is not enabled. E.g
    --------------------
    CONFIG_CRASH_CORE=y
    CONFIG_KEXEC_CORE=y
    CONFIG_KEXEC=y
    CONFIG_KEXEC_FILE=y
    ---------------------
    
    After splitting out crashkernel reservation code and vmcoreinfo exporting
    code, there's only crash related code left in kernel/crash_core.c. Now
    move crash related codes from kexec_core.c to crash_core.c and only build it
    in when CONFIG_CRASH_DUMP=y.
    
    And also wrap up crash codes inside CONFIG_CRASH_DUMP ifdeffery scope,
    or replace inappropriate CONFIG_KEXEC_CORE ifdef with CONFIG_CRASH_DUMP
    ifdef in generic kernel files.
    
    With these changes, crash_core codes are abstracted from kexec codes and
    can be disabled at all if only kexec reboot feature is wanted.
    
    Link: https://lkml.kernel.org/r/20240124051254.67105-5-bhe@redhat.comSigned-off-by: default avatarBaoquan He <bhe@redhat.com>
    Cc: Al Viro <viro@zeniv.linux.org.uk>
    Cc: Eric W. Biederman <ebiederm@xmission.com>
    Cc: Hari Bathini <hbathini@linux.ibm.com>
    Cc: Pingfan Liu <piliu@redhat.com>
    Cc: Klara Modin <klarasmodin@gmail.com>
    Cc: Michael Kelley <mhklinux@outlook.com>
    Cc: Nathan Chancellor <nathan@kernel.org>
    Cc: Stephen Rothwell <sfr@canb.auug.org.au>
    Cc: Yang Li <yang.lee@linux.alibaba.com>
    Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
    02aff848
cpu.c 16.1 KB