diff options
author | Richard Weinberger <richard@nod.at> | 2014-07-13 09:24:03 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2015-04-12 14:58:24 -0400 |
commit | a4980448ed658db313da3195bcca634c7a5adafa (patch) | |
tree | f3871d68c77b5a823f866f272e61957f38091d9d /arch/arm/include | |
parent | 973f911f55a0e510dd6db8bbb29cd82ff138d3c0 (diff) |
arm: Remove signal translation and exec_domain
As execution domain support is gone we can remove
signal translation from the signal code and remove
exec_domain from thread_info.
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/thread_info.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm/include/asm/thread_info.h b/arch/arm/include/asm/thread_info.h index 72812a1f3d1c..bd32eded3e50 100644 --- a/arch/arm/include/asm/thread_info.h +++ b/arch/arm/include/asm/thread_info.h | |||
@@ -23,7 +23,6 @@ | |||
23 | #ifndef __ASSEMBLY__ | 23 | #ifndef __ASSEMBLY__ |
24 | 24 | ||
25 | struct task_struct; | 25 | struct task_struct; |
26 | struct exec_domain; | ||
27 | 26 | ||
28 | #include <asm/types.h> | 27 | #include <asm/types.h> |
29 | #include <asm/domain.h> | 28 | #include <asm/domain.h> |
@@ -53,7 +52,6 @@ struct thread_info { | |||
53 | int preempt_count; /* 0 => preemptable, <0 => bug */ | 52 | int preempt_count; /* 0 => preemptable, <0 => bug */ |
54 | mm_segment_t addr_limit; /* address limit */ | 53 | mm_segment_t addr_limit; /* address limit */ |
55 | struct task_struct *task; /* main task structure */ | 54 | struct task_struct *task; /* main task structure */ |
56 | struct exec_domain *exec_domain; /* execution domain */ | ||
57 | __u32 cpu; /* cpu */ | 55 | __u32 cpu; /* cpu */ |
58 | __u32 cpu_domain; /* cpu domain */ | 56 | __u32 cpu_domain; /* cpu domain */ |
59 | struct cpu_context_save cpu_context; /* cpu context */ | 57 | struct cpu_context_save cpu_context; /* cpu context */ |
@@ -73,7 +71,6 @@ struct thread_info { | |||
73 | #define INIT_THREAD_INFO(tsk) \ | 71 | #define INIT_THREAD_INFO(tsk) \ |
74 | { \ | 72 | { \ |
75 | .task = &tsk, \ | 73 | .task = &tsk, \ |
76 | .exec_domain = &default_exec_domain, \ | ||
77 | .flags = 0, \ | 74 | .flags = 0, \ |
78 | .preempt_count = INIT_PREEMPT_COUNT, \ | 75 | .preempt_count = INIT_PREEMPT_COUNT, \ |
79 | .addr_limit = KERNEL_DS, \ | 76 | .addr_limit = KERNEL_DS, \ |