mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
s390/flags: use _BITUL macro
The defines that are used in entry.S have been partially converted to use the _BITUL macro (setup.h). This patch converts the rest. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Reviewed-by: Hendrik Brueckner <brueckner@linux.vnet.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
ac25e790d9
commit
92778b9920
3 changed files with 22 additions and 17 deletions
|
@ -11,17 +11,19 @@
|
||||||
#ifndef __ASM_S390_PROCESSOR_H
|
#ifndef __ASM_S390_PROCESSOR_H
|
||||||
#define __ASM_S390_PROCESSOR_H
|
#define __ASM_S390_PROCESSOR_H
|
||||||
|
|
||||||
|
#include <linux/const.h>
|
||||||
|
|
||||||
#define CIF_MCCK_PENDING 0 /* machine check handling is pending */
|
#define CIF_MCCK_PENDING 0 /* machine check handling is pending */
|
||||||
#define CIF_ASCE 1 /* user asce needs fixup / uaccess */
|
#define CIF_ASCE 1 /* user asce needs fixup / uaccess */
|
||||||
#define CIF_NOHZ_DELAY 2 /* delay HZ disable for a tick */
|
#define CIF_NOHZ_DELAY 2 /* delay HZ disable for a tick */
|
||||||
#define CIF_FPU 3 /* restore vector registers */
|
#define CIF_FPU 3 /* restore vector registers */
|
||||||
#define CIF_IGNORE_IRQ 4 /* ignore interrupt (for udelay) */
|
#define CIF_IGNORE_IRQ 4 /* ignore interrupt (for udelay) */
|
||||||
|
|
||||||
#define _CIF_MCCK_PENDING (1<<CIF_MCCK_PENDING)
|
#define _CIF_MCCK_PENDING _BITUL(CIF_MCCK_PENDING)
|
||||||
#define _CIF_ASCE (1<<CIF_ASCE)
|
#define _CIF_ASCE _BITUL(CIF_ASCE)
|
||||||
#define _CIF_NOHZ_DELAY (1<<CIF_NOHZ_DELAY)
|
#define _CIF_NOHZ_DELAY _BITUL(CIF_NOHZ_DELAY)
|
||||||
#define _CIF_FPU (1<<CIF_FPU)
|
#define _CIF_FPU _BITUL(CIF_FPU)
|
||||||
#define _CIF_IGNORE_IRQ (1<<CIF_IGNORE_IRQ)
|
#define _CIF_IGNORE_IRQ _BITUL(CIF_IGNORE_IRQ)
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
|
|
||||||
|
|
|
@ -6,13 +6,14 @@
|
||||||
#ifndef _S390_PTRACE_H
|
#ifndef _S390_PTRACE_H
|
||||||
#define _S390_PTRACE_H
|
#define _S390_PTRACE_H
|
||||||
|
|
||||||
|
#include <linux/const.h>
|
||||||
#include <uapi/asm/ptrace.h>
|
#include <uapi/asm/ptrace.h>
|
||||||
|
|
||||||
#define PIF_SYSCALL 0 /* inside a system call */
|
#define PIF_SYSCALL 0 /* inside a system call */
|
||||||
#define PIF_PER_TRAP 1 /* deliver sigtrap on return to user */
|
#define PIF_PER_TRAP 1 /* deliver sigtrap on return to user */
|
||||||
|
|
||||||
#define _PIF_SYSCALL (1<<PIF_SYSCALL)
|
#define _PIF_SYSCALL _BITUL(PIF_SYSCALL)
|
||||||
#define _PIF_PER_TRAP (1<<PIF_PER_TRAP)
|
#define _PIF_PER_TRAP _BITUL(PIF_PER_TRAP)
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,8 @@
|
||||||
#ifndef _ASM_THREAD_INFO_H
|
#ifndef _ASM_THREAD_INFO_H
|
||||||
#define _ASM_THREAD_INFO_H
|
#define _ASM_THREAD_INFO_H
|
||||||
|
|
||||||
|
#include <linux/const.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Size of kernel stack for each process
|
* Size of kernel stack for each process
|
||||||
*/
|
*/
|
||||||
|
@ -83,16 +85,16 @@ void arch_release_task_struct(struct task_struct *tsk);
|
||||||
#define TIF_BLOCK_STEP 20 /* This task is block stepped */
|
#define TIF_BLOCK_STEP 20 /* This task is block stepped */
|
||||||
#define TIF_UPROBE_SINGLESTEP 21 /* This task is uprobe single stepped */
|
#define TIF_UPROBE_SINGLESTEP 21 /* This task is uprobe single stepped */
|
||||||
|
|
||||||
#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
|
#define _TIF_NOTIFY_RESUME _BITUL(TIF_NOTIFY_RESUME)
|
||||||
#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
|
#define _TIF_SIGPENDING _BITUL(TIF_SIGPENDING)
|
||||||
#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
|
#define _TIF_NEED_RESCHED _BITUL(TIF_NEED_RESCHED)
|
||||||
#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
|
#define _TIF_SYSCALL_TRACE _BITUL(TIF_SYSCALL_TRACE)
|
||||||
#define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT)
|
#define _TIF_SYSCALL_AUDIT _BITUL(TIF_SYSCALL_AUDIT)
|
||||||
#define _TIF_SECCOMP (1<<TIF_SECCOMP)
|
#define _TIF_SECCOMP _BITUL(TIF_SECCOMP)
|
||||||
#define _TIF_SYSCALL_TRACEPOINT (1<<TIF_SYSCALL_TRACEPOINT)
|
#define _TIF_SYSCALL_TRACEPOINT _BITUL(TIF_SYSCALL_TRACEPOINT)
|
||||||
#define _TIF_UPROBE (1<<TIF_UPROBE)
|
#define _TIF_UPROBE _BITUL(TIF_UPROBE)
|
||||||
#define _TIF_31BIT (1<<TIF_31BIT)
|
#define _TIF_31BIT _BITUL(TIF_31BIT)
|
||||||
#define _TIF_SINGLE_STEP (1<<TIF_SINGLE_STEP)
|
#define _TIF_SINGLE_STEP _BITUL(TIF_SINGLE_STEP)
|
||||||
|
|
||||||
#define is_32bit_task() (test_thread_flag(TIF_31BIT))
|
#define is_32bit_task() (test_thread_flag(TIF_31BIT))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue