diff options
Diffstat (limited to 'arch/x86/include/asm/thread_info.h')
-rw-r--r-- | arch/x86/include/asm/thread_info.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/x86/include/asm/thread_info.h b/arch/x86/include/asm/thread_info.h index 1d4e4f279a32..2df52baf5228 100644 --- a/arch/x86/include/asm/thread_info.h +++ b/arch/x86/include/asm/thread_info.h | |||
@@ -19,13 +19,11 @@ | |||
19 | */ | 19 | */ |
20 | #ifndef __ASSEMBLY__ | 20 | #ifndef __ASSEMBLY__ |
21 | struct task_struct; | 21 | struct task_struct; |
22 | struct exec_domain; | ||
23 | #include <asm/processor.h> | 22 | #include <asm/processor.h> |
24 | #include <linux/atomic.h> | 23 | #include <linux/atomic.h> |
25 | 24 | ||
26 | struct thread_info { | 25 | struct thread_info { |
27 | struct task_struct *task; /* main task structure */ | 26 | struct task_struct *task; /* main task structure */ |
28 | struct exec_domain *exec_domain; /* execution domain */ | ||
29 | __u32 flags; /* low level flags */ | 27 | __u32 flags; /* low level flags */ |
30 | __u32 status; /* thread synchronous flags */ | 28 | __u32 status; /* thread synchronous flags */ |
31 | __u32 cpu; /* current CPU */ | 29 | __u32 cpu; /* current CPU */ |
@@ -39,7 +37,6 @@ struct thread_info { | |||
39 | #define INIT_THREAD_INFO(tsk) \ | 37 | #define INIT_THREAD_INFO(tsk) \ |
40 | { \ | 38 | { \ |
41 | .task = &tsk, \ | 39 | .task = &tsk, \ |
42 | .exec_domain = &default_exec_domain, \ | ||
43 | .flags = 0, \ | 40 | .flags = 0, \ |
44 | .cpu = 0, \ | 41 | .cpu = 0, \ |
45 | .saved_preempt_count = INIT_PREEMPT_COUNT, \ | 42 | .saved_preempt_count = INIT_PREEMPT_COUNT, \ |