powerpc: Change places using CONFIG_KEXEC to use CONFIG_KEXEC_CORE instead.
Commit 2965faa5e0
("kexec: split kexec_load syscall from kexec core
code") introduced CONFIG_KEXEC_CORE so that CONFIG_KEXEC means whether
the kexec_load system call should be compiled-in and CONFIG_KEXEC_FILE
means whether the kexec_file_load system call should be compiled-in.
These options can be set independently from each other.
Since until now powerpc only supported kexec_load, CONFIG_KEXEC and
CONFIG_KEXEC_CORE were synonyms. That is not the case anymore, so we
need to make a distinction. Almost all places where CONFIG_KEXEC was
being used should be using CONFIG_KEXEC_CORE instead, since
kexec_file_load also needs that code compiled in.
Signed-off-by: Thiago Jung Bauermann <bauerman@linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:

committed by
Michael Ellerman

parent
e2e806f9e4
commit
da6658859b
@@ -193,7 +193,7 @@ int smp_request_message_ipi(int virq, int msg)
|
||||
if (msg < 0 || msg > PPC_MSG_DEBUGGER_BREAK) {
|
||||
return -EINVAL;
|
||||
}
|
||||
#if !defined(CONFIG_DEBUGGER) && !defined(CONFIG_KEXEC)
|
||||
#if !defined(CONFIG_DEBUGGER) && !defined(CONFIG_KEXEC_CORE)
|
||||
if (msg == PPC_MSG_DEBUGGER_BREAK) {
|
||||
return 1;
|
||||
}
|
||||
@@ -325,7 +325,7 @@ void tick_broadcast(const struct cpumask *mask)
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_DEBUGGER) || defined(CONFIG_KEXEC)
|
||||
#if defined(CONFIG_DEBUGGER) || defined(CONFIG_KEXEC_CORE)
|
||||
void smp_send_debugger_break(void)
|
||||
{
|
||||
int cpu;
|
||||
@@ -340,7 +340,7 @@ void smp_send_debugger_break(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_KEXEC
|
||||
#ifdef CONFIG_KEXEC_CORE
|
||||
void crash_send_ipi(void (*crash_ipi_callback)(struct pt_regs *))
|
||||
{
|
||||
crash_ipi_function_ptr = crash_ipi_callback;
|
||||
|
Reference in New Issue
Block a user