scs: Move DEFINE_SCS macro into core code
Defining static shadow call stacks is not architecture-specific, so move the DEFINE_SCS() macro into the core header file. Tested-by: Sami Tolvanen <samitolvanen@google.com> Reviewed-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Will Deacon <will@kernel.org>
This commit is contained in:
Родитель
aa7a65ae5b
Коммит
871e100e43
|
@ -8,10 +8,6 @@
|
||||||
#include <linux/percpu.h>
|
#include <linux/percpu.h>
|
||||||
#include <linux/scs.h>
|
#include <linux/scs.h>
|
||||||
|
|
||||||
/* Allocate a static per-CPU shadow stack */
|
|
||||||
#define DEFINE_SCS(name) \
|
|
||||||
DEFINE_PER_CPU(unsigned long [SCS_SIZE/sizeof(long)], name) \
|
|
||||||
|
|
||||||
DEFINE_SCS(irq_shadow_call_stack);
|
DEFINE_SCS(irq_shadow_call_stack);
|
||||||
|
|
||||||
#ifdef CONFIG_ARM_SDE_INTERFACE
|
#ifdef CONFIG_ARM_SDE_INTERFACE
|
||||||
|
|
|
@ -26,6 +26,10 @@
|
||||||
/* An illegal pointer value to mark the end of the shadow stack. */
|
/* An illegal pointer value to mark the end of the shadow stack. */
|
||||||
#define SCS_END_MAGIC (0x5f6UL + POISON_POINTER_DELTA)
|
#define SCS_END_MAGIC (0x5f6UL + POISON_POINTER_DELTA)
|
||||||
|
|
||||||
|
/* Allocate a static per-CPU shadow stack */
|
||||||
|
#define DEFINE_SCS(name) \
|
||||||
|
DEFINE_PER_CPU(unsigned long [SCS_SIZE/sizeof(long)], name) \
|
||||||
|
|
||||||
#define task_scs(tsk) (task_thread_info(tsk)->scs_base)
|
#define task_scs(tsk) (task_thread_info(tsk)->scs_base)
|
||||||
#define task_scs_sp(tsk) (task_thread_info(tsk)->scs_sp)
|
#define task_scs_sp(tsk) (task_thread_info(tsk)->scs_sp)
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче