remove libdss from Makefile
[GitHub/moto-9609/android_kernel_motorola_exynos9610.git] / arch / um / include / asm / thread_info.h
CommitLineData
a5a678c8
JD
1/*
2 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
1da177e4
LT
3 * Licensed under the GPL
4 */
5
6#ifndef __UM_THREAD_INFO_H
7#define __UM_THREAD_INFO_H
8
9#ifndef __ASSEMBLY__
10
1da177e4 11#include <asm/types.h>
8192ab42 12#include <asm/page.h>
f8d65d27 13#include <asm/segment.h>
6f602afd 14#include <sysdep/ptrace_user.h>
1da177e4
LT
15
16struct thread_info {
17 struct task_struct *task; /* main task structure */
1da177e4
LT
18 unsigned long flags; /* low level flags */
19 __u32 cpu; /* current CPU */
dcd497f9 20 int preempt_count; /* 0 => preemptable,
1da177e4
LT
21 <0 => BUG */
22 mm_segment_t addr_limit; /* thread address space:
23 0-0xBFFFFFFF for user
24 0-0xFFFFFFFF for kernel */
c14b8494 25 struct thread_info *real_thread; /* Points to non-IRQ stack */
6f602afd
TM
26 unsigned long aux_fp_regs[FP_SIZE]; /* auxiliary fp_regs to save/restore
27 them out-of-band */
1da177e4
LT
28};
29
30#define INIT_THREAD_INFO(tsk) \
31{ \
4d338e1a 32 .task = &tsk, \
4d338e1a
AV
33 .flags = 0, \
34 .cpu = 0, \
c99e6efe 35 .preempt_count = INIT_PREEMPT_COUNT, \
4d338e1a 36 .addr_limit = KERNEL_DS, \
c14b8494 37 .real_thread = NULL, \
1da177e4
LT
38}
39
40#define init_thread_info (init_thread_union.thread_info)
41#define init_stack (init_thread_union.stack)
42
b3461034 43#define THREAD_SIZE ((1 << CONFIG_KERNEL_STACK_ORDER) * PAGE_SIZE)
1da177e4
LT
44/* how to get the thread information struct from C */
45static inline struct thread_info *current_thread_info(void)
46{
47 struct thread_info *ti;
b3461034 48 unsigned long mask = THREAD_SIZE - 1;
534e3adb
RW
49 void *p;
50
51 asm volatile ("" : "=r" (p) : "0" (&ti));
52 ti = (struct thread_info *) (((unsigned long)p) & ~mask);
1da177e4
LT
53 return ti;
54}
55
b69c49b7 56#define THREAD_SIZE_ORDER CONFIG_KERNEL_STACK_ORDER
1da177e4 57
1da177e4
LT
58#endif
59
1da177e4
LT
60#define TIF_SYSCALL_TRACE 0 /* syscall trace active */
61#define TIF_SIGPENDING 1 /* signal pending */
62#define TIF_NEED_RESCHED 2 /* rescheduling necessary */
0ddc9324
AD
63#define TIF_RESTART_BLOCK 4
64#define TIF_MEMDIE 5 /* is terminating due to OOM killer */
79d20b14 65#define TIF_SYSCALL_AUDIT 6
2fc10620 66#define TIF_RESTORE_SIGMASK 7
d50349b0 67#define TIF_NOTIFY_RESUME 8
c50b4659 68#define TIF_SECCOMP 9 /* secure computing */
1da177e4
LT
69
70#define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
71#define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
72#define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
79d20b14
JD
73#define _TIF_MEMDIE (1 << TIF_MEMDIE)
74#define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT)
c50b4659 75#define _TIF_SECCOMP (1 << TIF_SECCOMP)
1da177e4
LT
76
77#endif