]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
scs: Move DEFINE_SCS macro into core code
authorWill Deacon <will@kernel.org>
Fri, 15 May 2020 15:17:12 +0000 (16:17 +0100)
committerWill Deacon <will@kernel.org>
Mon, 18 May 2020 16:47:48 +0000 (17:47 +0100)
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>
arch/arm64/kernel/scs.c
include/linux/scs.h

index 955875dff9e17683c61d7bf16dcd3150a1911a9b..e8f7ff45dd8fa263ab070c23526a02c7519adaf7 100644 (file)
@@ -8,10 +8,6 @@
 #include <linux/percpu.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);
 
 #ifdef CONFIG_ARM_SDE_INTERFACE
index 2fd3df50e93ee931d94b243920818ea61d2feb18..6dec390cf154b7b30f9799a3d1f620e18927eb94 100644 (file)
 /* An illegal pointer value to mark the end of the shadow stack. */
 #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_sp(tsk)       (task_thread_info(tsk)->scs_sp)