mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-24 05:39:33 +00:00
On SMP, setup_kup() is also called from start_secondary().
start_secondary() is not an __init function.
Remove the __init marker from setup_kuep() and setup_kuap().
Fixes: 86f46f3432 ("powerpc/32s: Initialise KUAP and KUEP in C")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/42f4bd12b476942e4d5dc81c0e839d8871b20b1c.1624863319.git.christophe.leroy@csgroup.eu
34 lines
594 B
C
34 lines
594 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include <asm/kup.h>
|
|
#include <asm/smp.h>
|
|
|
|
struct static_key_false disable_kuap_key;
|
|
EXPORT_SYMBOL(disable_kuap_key);
|
|
|
|
void kuap_lock_all_ool(void)
|
|
{
|
|
kuap_lock_all();
|
|
}
|
|
EXPORT_SYMBOL(kuap_lock_all_ool);
|
|
|
|
void kuap_unlock_all_ool(void)
|
|
{
|
|
kuap_unlock_all();
|
|
}
|
|
EXPORT_SYMBOL(kuap_unlock_all_ool);
|
|
|
|
void setup_kuap(bool disabled)
|
|
{
|
|
if (!disabled)
|
|
kuap_lock_all_ool();
|
|
|
|
if (smp_processor_id() != boot_cpuid)
|
|
return;
|
|
|
|
if (disabled)
|
|
static_branch_enable(&disable_kuap_key);
|
|
else
|
|
pr_info("Activating Kernel Userspace Access Protection\n");
|
|
}
|