diff options
Diffstat (limited to 'arch/s390/include/asm/thread_info.h')
| -rw-r--r-- | arch/s390/include/asm/thread_info.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/arch/s390/include/asm/thread_info.h b/arch/s390/include/asm/thread_info.h index ce4e17c9aad6..e582fbe59e20 100644 --- a/arch/s390/include/asm/thread_info.h +++ b/arch/s390/include/asm/thread_info.h | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | #ifndef _ASM_THREAD_INFO_H | 8 | #ifndef _ASM_THREAD_INFO_H |
| 9 | #define _ASM_THREAD_INFO_H | 9 | #define _ASM_THREAD_INFO_H |
| 10 | 10 | ||
| 11 | #include <linux/const.h> | 11 | #include <linux/bits.h> |
| 12 | 12 | ||
| 13 | /* | 13 | /* |
| 14 | * General size of kernel stacks | 14 | * General size of kernel stacks |
| @@ -82,21 +82,21 @@ void arch_setup_new_exec(void); | |||
| 82 | #define TIF_SECCOMP 26 /* secure computing */ | 82 | #define TIF_SECCOMP 26 /* secure computing */ |
| 83 | #define TIF_SYSCALL_TRACEPOINT 27 /* syscall tracepoint instrumentation */ | 83 | #define TIF_SYSCALL_TRACEPOINT 27 /* syscall tracepoint instrumentation */ |
| 84 | 84 | ||
| 85 | #define _TIF_NOTIFY_RESUME _BITUL(TIF_NOTIFY_RESUME) | 85 | #define _TIF_NOTIFY_RESUME BIT(TIF_NOTIFY_RESUME) |
| 86 | #define _TIF_SIGPENDING _BITUL(TIF_SIGPENDING) | 86 | #define _TIF_SIGPENDING BIT(TIF_SIGPENDING) |
| 87 | #define _TIF_NEED_RESCHED _BITUL(TIF_NEED_RESCHED) | 87 | #define _TIF_NEED_RESCHED BIT(TIF_NEED_RESCHED) |
| 88 | #define _TIF_UPROBE _BITUL(TIF_UPROBE) | 88 | #define _TIF_UPROBE BIT(TIF_UPROBE) |
| 89 | #define _TIF_GUARDED_STORAGE _BITUL(TIF_GUARDED_STORAGE) | 89 | #define _TIF_GUARDED_STORAGE BIT(TIF_GUARDED_STORAGE) |
| 90 | #define _TIF_PATCH_PENDING _BITUL(TIF_PATCH_PENDING) | 90 | #define _TIF_PATCH_PENDING BIT(TIF_PATCH_PENDING) |
| 91 | #define _TIF_ISOLATE_BP _BITUL(TIF_ISOLATE_BP) | 91 | #define _TIF_ISOLATE_BP BIT(TIF_ISOLATE_BP) |
| 92 | #define _TIF_ISOLATE_BP_GUEST _BITUL(TIF_ISOLATE_BP_GUEST) | 92 | #define _TIF_ISOLATE_BP_GUEST BIT(TIF_ISOLATE_BP_GUEST) |
| 93 | 93 | ||
| 94 | #define _TIF_31BIT _BITUL(TIF_31BIT) | 94 | #define _TIF_31BIT BIT(TIF_31BIT) |
| 95 | #define _TIF_SINGLE_STEP _BITUL(TIF_SINGLE_STEP) | 95 | #define _TIF_SINGLE_STEP BIT(TIF_SINGLE_STEP) |
| 96 | 96 | ||
| 97 | #define _TIF_SYSCALL_TRACE _BITUL(TIF_SYSCALL_TRACE) | 97 | #define _TIF_SYSCALL_TRACE BIT(TIF_SYSCALL_TRACE) |
| 98 | #define _TIF_SYSCALL_AUDIT _BITUL(TIF_SYSCALL_AUDIT) | 98 | #define _TIF_SYSCALL_AUDIT BIT(TIF_SYSCALL_AUDIT) |
| 99 | #define _TIF_SECCOMP _BITUL(TIF_SECCOMP) | 99 | #define _TIF_SECCOMP BIT(TIF_SECCOMP) |
| 100 | #define _TIF_SYSCALL_TRACEPOINT _BITUL(TIF_SYSCALL_TRACEPOINT) | 100 | #define _TIF_SYSCALL_TRACEPOINT BIT(TIF_SYSCALL_TRACEPOINT) |
| 101 | 101 | ||
| 102 | #endif /* _ASM_THREAD_INFO_H */ | 102 | #endif /* _ASM_THREAD_INFO_H */ |
