Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
David Gibson | 584224e | 2005-11-09 13:04:06 +1100 | [diff] [blame] | 2 | #ifndef _ASM_POWERPC_CURRENT_H |
| 3 | #define _ASM_POWERPC_CURRENT_H |
Arnd Bergmann | 88ced03 | 2005-12-16 22:43:46 +0100 | [diff] [blame] | 4 | #ifdef __KERNEL__ |
David Gibson | 584224e | 2005-11-09 13:04:06 +1100 | [diff] [blame] | 5 | |
| 6 | /* |
David Gibson | 584224e | 2005-11-09 13:04:06 +1100 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | struct task_struct; |
| 10 | |
| 11 | #ifdef __powerpc64__ |
Olaf Hering | dbc11f5 | 2007-02-25 20:04:18 +0100 | [diff] [blame] | 12 | #include <linux/stddef.h> |
David Gibson | 584224e | 2005-11-09 13:04:06 +1100 | [diff] [blame] | 13 | #include <asm/paca.h> |
| 14 | |
Hugh Dickins | 5fe8e8b | 2006-10-31 18:39:31 +0000 | [diff] [blame] | 15 | static inline struct task_struct *get_current(void) |
| 16 | { |
| 17 | struct task_struct *task; |
| 18 | |
Nicholas Piggin | e354d7d | 2019-06-13 00:03:17 +1000 | [diff] [blame] | 19 | /* get_current can be cached by the compiler, so no volatile */ |
| 20 | asm ("ld %0,%1(13)" |
Hugh Dickins | 5fe8e8b | 2006-10-31 18:39:31 +0000 | [diff] [blame] | 21 | : "=r" (task) |
| 22 | : "i" (offsetof(struct paca_struct, __current))); |
| 23 | |
| 24 | return task; |
| 25 | } |
| 26 | #define current get_current() |
David Gibson | 584224e | 2005-11-09 13:04:06 +1100 | [diff] [blame] | 27 | |
| 28 | #else |
| 29 | |
| 30 | /* |
| 31 | * We keep `current' in r2 for speed. |
| 32 | */ |
| 33 | register struct task_struct *current asm ("r2"); |
| 34 | |
| 35 | #endif |
| 36 | |
Arnd Bergmann | 88ced03 | 2005-12-16 22:43:46 +0100 | [diff] [blame] | 37 | #endif /* __KERNEL__ */ |
David Gibson | 584224e | 2005-11-09 13:04:06 +1100 | [diff] [blame] | 38 | #endif /* _ASM_POWERPC_CURRENT_H */ |