thread_info.h 3.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 *  S390 version
3
 *    Copyright IBM Corp. 2002, 2006
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12
 *    Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
 */

#ifndef _ASM_THREAD_INFO_H
#define _ASM_THREAD_INFO_H

/*
 * Size of kernel stack for each process
 */
13
#ifndef CONFIG_64BIT
L
Linus Torvalds 已提交
14 15
#define THREAD_ORDER 1
#define ASYNC_ORDER  1
16
#else /* CONFIG_64BIT */
L
Linus Torvalds 已提交
17 18 19 20 21 22 23
#ifndef __SMALL_STACK
#define THREAD_ORDER 2
#define ASYNC_ORDER  2
#else
#define THREAD_ORDER 1
#define ASYNC_ORDER  1
#endif
24
#endif /* CONFIG_64BIT */
L
Linus Torvalds 已提交
25 26 27 28 29 30

#define THREAD_SIZE (PAGE_SIZE << THREAD_ORDER)
#define ASYNC_SIZE  (PAGE_SIZE << ASYNC_ORDER)

#ifndef __ASSEMBLY__
#include <asm/lowcore.h>
31 32
#include <asm/page.h>
#include <asm/processor.h>
L
Linus Torvalds 已提交
33 34 35 36 37 38 39 40 41 42 43 44

/*
 * low level task data that entry.S needs immediate access to
 * - this struct should fit entirely inside of one cache line
 * - this struct shares the supervisor stack pages
 * - if the contents of this structure are changed, the assembly constants must also be changed
 */
struct thread_info {
	struct task_struct	*task;		/* main task structure */
	struct exec_domain	*exec_domain;	/* execution domain */
	unsigned long		flags;		/* low level flags */
	unsigned int		cpu;		/* current CPU */
45
	int			preempt_count;	/* 0 => preemptable, <0 => BUG */
L
Linus Torvalds 已提交
46
	struct restart_block	restart_block;
47
	unsigned int		system_call;
48 49
	__u64			user_timer;
	__u64			system_timer;
50
	unsigned long		last_break;	/* last breaking-event-address. */
L
Linus Torvalds 已提交
51 52 53 54 55 56 57 58 59 60 61
};

/*
 * macros/functions for gaining access to the thread information structure
 */
#define INIT_THREAD_INFO(tsk)			\
{						\
	.task		= &tsk,			\
	.exec_domain	= &default_exec_domain,	\
	.flags		= 0,			\
	.cpu		= 0,			\
P
Peter Zijlstra 已提交
62
	.preempt_count	= INIT_PREEMPT_COUNT,	\
L
Linus Torvalds 已提交
63 64 65 66 67 68 69 70 71 72 73
	.restart_block	= {			\
		.fn = do_no_restart_syscall,	\
	},					\
}

#define init_thread_info	(init_thread_union.thread_info)
#define init_stack		(init_thread_union.stack)

/* how to get the thread information struct from C */
static inline struct thread_info *current_thread_info(void)
{
74
	return (struct thread_info *) S390_lowcore.thread_info;
L
Linus Torvalds 已提交
75 76
}

77
#define THREAD_SIZE_ORDER THREAD_ORDER
L
Linus Torvalds 已提交
78 79 80 81 82 83

#endif

/*
 * thread information flags bit numbers
 */
84
#define TIF_SYSCALL		0	/* inside a system call */
M
Martin Schwidefsky 已提交
85
#define TIF_NOTIFY_RESUME	1	/* callback before returning to user */
L
Linus Torvalds 已提交
86 87
#define TIF_SIGPENDING		2	/* signal pending */
#define TIF_NEED_RESCHED	3	/* rescheduling necessary */
M
Martin Schwidefsky 已提交
88
#define TIF_PER_TRAP		6	/* deliver sigtrap on return to user */
89
#define TIF_MCCK_PENDING	7	/* machine check handling is pending */
90 91 92
#define TIF_SYSCALL_TRACE	8	/* syscall trace active */
#define TIF_SYSCALL_AUDIT	9	/* syscall auditing active */
#define TIF_SECCOMP		10	/* secure computing */
93
#define TIF_SYSCALL_TRACEPOINT	11	/* syscall tracepoint instrumentation */
94
#define TIF_POLLING_NRFLAG	16	/* true if poll_idle() is polling
L
Linus Torvalds 已提交
95
					   TIF_NEED_RESCHED */
96
#define TIF_31BIT		17	/* 32bit process */
97
#define TIF_MEMDIE		18	/* is terminating due to OOM killer */
98
#define TIF_RESTORE_SIGMASK	19	/* restore signal mask in do_signal() */
M
Martin Schwidefsky 已提交
99
#define TIF_SINGLE_STEP		20	/* This task is single stepped */
L
Linus Torvalds 已提交
100

101
#define _TIF_SYSCALL		(1<<TIF_SYSCALL)
M
Martin Schwidefsky 已提交
102
#define _TIF_NOTIFY_RESUME	(1<<TIF_NOTIFY_RESUME)
103
#define _TIF_RESTORE_SIGMASK	(1<<TIF_RESTORE_SIGMASK)
L
Linus Torvalds 已提交
104 105
#define _TIF_SIGPENDING		(1<<TIF_SIGPENDING)
#define _TIF_NEED_RESCHED	(1<<TIF_NEED_RESCHED)
M
Martin Schwidefsky 已提交
106
#define _TIF_PER_TRAP		(1<<TIF_PER_TRAP)
107
#define _TIF_MCCK_PENDING	(1<<TIF_MCCK_PENDING)
108 109 110
#define _TIF_SYSCALL_TRACE	(1<<TIF_SYSCALL_TRACE)
#define _TIF_SYSCALL_AUDIT	(1<<TIF_SYSCALL_AUDIT)
#define _TIF_SECCOMP		(1<<TIF_SECCOMP)
111
#define _TIF_SYSCALL_TRACEPOINT	(1<<TIF_SYSCALL_TRACEPOINT)
L
Linus Torvalds 已提交
112 113
#define _TIF_POLLING_NRFLAG	(1<<TIF_POLLING_NRFLAG)
#define _TIF_31BIT		(1<<TIF_31BIT)
T
Tejun Heo 已提交
114
#define _TIF_SINGLE_STEP	(1<<TIF_SINGLE_STEP)
L
Linus Torvalds 已提交
115

116 117 118 119 120 121
#ifdef CONFIG_64BIT
#define is_32bit_task()		(test_thread_flag(TIF_31BIT))
#else
#define is_32bit_task()		(1)
#endif

L
Linus Torvalds 已提交
122 123 124
#define PREEMPT_ACTIVE		0x4000000

#endif /* _ASM_THREAD_INFO_H */