diff options
Diffstat (limited to 'arch/arm64/include')
-rw-r--r-- | arch/arm64/include/asm/thread_info.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm64/include/asm/thread_info.h b/arch/arm64/include/asm/thread_info.h index 702e1e6a0d80..dcd06d18a42a 100644 --- a/arch/arm64/include/asm/thread_info.h +++ b/arch/arm64/include/asm/thread_info.h | |||
@@ -33,7 +33,6 @@ | |||
33 | #ifndef __ASSEMBLY__ | 33 | #ifndef __ASSEMBLY__ |
34 | 34 | ||
35 | struct task_struct; | 35 | struct task_struct; |
36 | struct exec_domain; | ||
37 | 36 | ||
38 | #include <asm/types.h> | 37 | #include <asm/types.h> |
39 | 38 | ||
@@ -47,7 +46,6 @@ struct thread_info { | |||
47 | unsigned long flags; /* low level flags */ | 46 | unsigned long flags; /* low level flags */ |
48 | mm_segment_t addr_limit; /* address limit */ | 47 | mm_segment_t addr_limit; /* address limit */ |
49 | struct task_struct *task; /* main task structure */ | 48 | struct task_struct *task; /* main task structure */ |
50 | struct exec_domain *exec_domain; /* execution domain */ | ||
51 | int preempt_count; /* 0 => preemptable, <0 => bug */ | 49 | int preempt_count; /* 0 => preemptable, <0 => bug */ |
52 | int cpu; /* cpu */ | 50 | int cpu; /* cpu */ |
53 | }; | 51 | }; |
@@ -55,7 +53,6 @@ struct thread_info { | |||
55 | #define INIT_THREAD_INFO(tsk) \ | 53 | #define INIT_THREAD_INFO(tsk) \ |
56 | { \ | 54 | { \ |
57 | .task = &tsk, \ | 55 | .task = &tsk, \ |
58 | .exec_domain = &default_exec_domain, \ | ||
59 | .flags = 0, \ | 56 | .flags = 0, \ |
60 | .preempt_count = INIT_PREEMPT_COUNT, \ | 57 | .preempt_count = INIT_PREEMPT_COUNT, \ |
61 | .addr_limit = KERNEL_DS, \ | 58 | .addr_limit = KERNEL_DS, \ |