diff options
Diffstat (limited to 'arch/x86/include')
-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 ea2dbe82cba3..b4bdec3e9523 100644 --- a/arch/x86/include/asm/thread_info.h +++ b/arch/x86/include/asm/thread_info.h | |||
@@ -46,13 +46,11 @@ | |||
46 | */ | 46 | */ |
47 | #ifndef __ASSEMBLY__ | 47 | #ifndef __ASSEMBLY__ |
48 | struct task_struct; | 48 | struct task_struct; |
49 | struct exec_domain; | ||
50 | #include <asm/processor.h> | 49 | #include <asm/processor.h> |
51 | #include <linux/atomic.h> | 50 | #include <linux/atomic.h> |
52 | 51 | ||
53 | struct thread_info { | 52 | struct thread_info { |
54 | struct task_struct *task; /* main task structure */ | 53 | struct task_struct *task; /* main task structure */ |
55 | struct exec_domain *exec_domain; /* execution domain */ | ||
56 | __u32 flags; /* low level flags */ | 54 | __u32 flags; /* low level flags */ |
57 | __u32 status; /* thread synchronous flags */ | 55 | __u32 status; /* thread synchronous flags */ |
58 | __u32 cpu; /* current CPU */ | 56 | __u32 cpu; /* current CPU */ |
@@ -66,7 +64,6 @@ struct thread_info { | |||
66 | #define INIT_THREAD_INFO(tsk) \ | 64 | #define INIT_THREAD_INFO(tsk) \ |
67 | { \ | 65 | { \ |
68 | .task = &tsk, \ | 66 | .task = &tsk, \ |
69 | .exec_domain = &default_exec_domain, \ | ||
70 | .flags = 0, \ | 67 | .flags = 0, \ |
71 | .cpu = 0, \ | 68 | .cpu = 0, \ |
72 | .saved_preempt_count = INIT_PREEMPT_COUNT, \ | 69 | .saved_preempt_count = INIT_PREEMPT_COUNT, \ |