diff options
author | Kees Cook <keescook@chromium.org> | 2022-02-19 17:26:00 -0800 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2022-02-25 18:21:23 -0800 |
commit | 92652cf986441b18282db6e5bd82afc74e8ed5e9 (patch) | |
tree | 7d2cab1235f3216501ef6a499575872083bab455 /arch/xtensa/include/asm/current.h | |
parent | 2792d84e6da5e0fd7d3b22fd70bc69b7ee263609 (diff) |
xtensa: Implement "current_stack_pointer"
To follow the existing per-arch conventions replace open-coded uses
of asm "sp" as "current_stack_pointer". This will let it be used in
non-arch places (like HARDENED_USERCOPY).
Cc: Chris Zankel <chris@zankel.net>
Cc: Marc Zyngier <maz@kernel.org>
Cc: linux-xtensa@linux-xtensa.org
Signed-off-by: Kees Cook <keescook@chromium.org>
Acked-by: Max Filippov <jcmvbkbc@gmail.com>
Link: https://lore.kernel.org/lkml/CAMo8BfJFJE-n3=AF+pb9_6oF3gzxX7a+7aBrASHjjNX5byqDqw@mail.gmail.com
Diffstat (limited to 'arch/xtensa/include/asm/current.h')
-rw-r--r-- | arch/xtensa/include/asm/current.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/xtensa/include/asm/current.h b/arch/xtensa/include/asm/current.h index 5d98a7ad4251..08010dbf5e09 100644 --- a/arch/xtensa/include/asm/current.h +++ b/arch/xtensa/include/asm/current.h @@ -26,6 +26,8 @@ static inline struct task_struct *get_current(void) #define current get_current() +register unsigned long current_stack_pointer __asm__("a1"); + #else #define GET_CURRENT(reg,sp) \ |