2005-04-16 15:20:36 -07:00
/*
* S390 version
2012-07-20 11:15:04 +02:00
* Copyright IBM Corp . 2002 , 2006
2005-04-16 15:20:36 -07:00
* 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
*/
2012-05-23 16:24:51 +02:00
# ifndef CONFIG_64BIT
2005-04-16 15:20:36 -07:00
# define THREAD_ORDER 1
# define ASYNC_ORDER 1
2012-05-23 16:24:51 +02:00
# else /* CONFIG_64BIT */
2005-04-16 15:20:36 -07:00
# ifndef __SMALL_STACK
# define THREAD_ORDER 2
# define ASYNC_ORDER 2
# else
# define THREAD_ORDER 1
# define ASYNC_ORDER 1
# endif
2012-05-23 16:24:51 +02:00
# endif /* CONFIG_64BIT */
2005-04-16 15:20:36 -07:00
# define THREAD_SIZE (PAGE_SIZE << THREAD_ORDER)
# define ASYNC_SIZE (PAGE_SIZE << ASYNC_ORDER)
# ifndef __ASSEMBLY__
# include <asm/lowcore.h>
2009-04-14 15:36:16 +02:00
# include <asm/page.h>
# include <asm/processor.h>
2005-04-16 15:20:36 -07:00
/*
* 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 */
2005-06-23 00:09:07 -07:00
int preempt_count ; /* 0 => preemptable, <0 => BUG */
2005-04-16 15:20:36 -07:00
struct restart_block restart_block ;
2011-10-30 15:16:47 +01:00
unsigned int system_call ;
2008-12-31 15:11:39 +01:00
__u64 user_timer ;
__u64 system_timer ;
2010-05-17 10:00:05 +02:00
unsigned long last_break ; /* last breaking-event-address. */
2005-04-16 15:20:36 -07:00
} ;
/*
* 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 , \
2009-07-10 14:57:56 +02:00
. preempt_count = INIT_PREEMPT_COUNT , \
2005-04-16 15:20:36 -07:00
. 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 )
{
2011-01-05 12:47:42 +01:00
return ( struct thread_info * ) S390_lowcore . thread_info ;
2005-04-16 15:20:36 -07:00
}
2008-07-25 01:45:40 -07:00
# define THREAD_SIZE_ORDER THREAD_ORDER
2005-04-16 15:20:36 -07:00
# endif
/*
* thread information flags bit numbers
*/
2011-10-30 15:16:49 +01:00
# define TIF_SYSCALL 0 /* inside a system call */
2008-10-10 21:33:20 +02:00
# define TIF_NOTIFY_RESUME 1 /* callback before returning to user */
2005-04-16 15:20:36 -07:00
# define TIF_SIGPENDING 2 /* signal pending */
# define TIF_NEED_RESCHED 3 /* rescheduling necessary */
2011-01-05 12:48:10 +01:00
# define TIF_PER_TRAP 6 /* deliver sigtrap on return to user */
2005-06-25 14:55:30 -07:00
# define TIF_MCCK_PENDING 7 /* machine check handling is pending */
2009-06-12 10:26:26 +02:00
# define TIF_SYSCALL_TRACE 8 /* syscall trace active */
# define TIF_SYSCALL_AUDIT 9 /* syscall auditing active */
# define TIF_SECCOMP 10 /* secure computing */
2009-08-24 14:43:11 -07:00
# define TIF_SYSCALL_TRACEPOINT 11 /* syscall tracepoint instrumentation */
2010-01-13 20:44:28 +01:00
# define TIF_POLLING_NRFLAG 16 / * true if poll_idle() is polling
2005-04-16 15:20:36 -07:00
TIF_NEED_RESCHED */
2010-01-13 20:44:28 +01:00
# define TIF_31BIT 17 /* 32bit process */
2010-05-14 11:13:27 +02:00
# define TIF_MEMDIE 18 /* is terminating due to OOM killer */
2010-01-13 20:44:28 +01:00
# define TIF_RESTORE_SIGMASK 19 /* restore signal mask in do_signal() */
2011-01-05 12:48:10 +01:00
# define TIF_SINGLE_STEP 20 /* This task is single stepped */
2005-04-16 15:20:36 -07:00
2011-10-30 15:16:49 +01:00
# define _TIF_SYSCALL (1<<TIF_SYSCALL)
2008-10-10 21:33:20 +02:00
# define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
2006-02-01 03:06:38 -08:00
# define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK)
2005-04-16 15:20:36 -07:00
# define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
# define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
2011-01-05 12:48:10 +01:00
# define _TIF_PER_TRAP (1<<TIF_PER_TRAP)
2005-06-25 14:55:30 -07:00
# define _TIF_MCCK_PENDING (1<<TIF_MCCK_PENDING)
2009-06-12 10:26:26 +02:00
# define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
# define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT)
# define _TIF_SECCOMP (1<<TIF_SECCOMP)
2009-08-24 14:43:11 -07:00
# define _TIF_SYSCALL_TRACEPOINT (1<<TIF_SYSCALL_TRACEPOINT)
2005-04-16 15:20:36 -07:00
# define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
# define _TIF_31BIT (1<<TIF_31BIT)
2011-10-30 15:16:35 +01:00
# define _TIF_SINGLE_STEP (1<<TIF_SINGLE_STEP)
2005-04-16 15:20:36 -07:00
2011-01-12 09:55:29 +01:00
# ifdef CONFIG_64BIT
# define is_32bit_task() (test_thread_flag(TIF_31BIT))
# else
# define is_32bit_task() (1)
# endif
2005-04-16 15:20:36 -07:00
# define PREEMPT_ACTIVE 0x4000000
# endif /* _ASM_THREAD_INFO_H */