diff options
author | Richard Weinberger <richard@nod.at> | 2014-07-13 11:19:34 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2015-04-12 14:58:25 -0400 |
commit | a0075cd1cb79971ed6162e27fdb2ae76fc3008cf (patch) | |
tree | 2163e3c15676216c68886e6571f2db897cba0258 /arch/m68k/include/asm | |
parent | 445a626afb7f8050ac290fee89d4d9d2ce43b3f2 (diff) |
m68k: 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/m68k/include/asm')
-rw-r--r-- | arch/m68k/include/asm/thread_info.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/m68k/include/asm/thread_info.h b/arch/m68k/include/asm/thread_info.h index c54256e69e64..cee13c2e5161 100644 --- a/arch/m68k/include/asm/thread_info.h +++ b/arch/m68k/include/asm/thread_info.h | |||
@@ -26,7 +26,6 @@ | |||
26 | struct thread_info { | 26 | struct thread_info { |
27 | struct task_struct *task; /* main task structure */ | 27 | struct task_struct *task; /* main task structure */ |
28 | unsigned long flags; | 28 | unsigned long flags; |
29 | struct exec_domain *exec_domain; /* execution domain */ | ||
30 | mm_segment_t addr_limit; /* thread address space */ | 29 | mm_segment_t addr_limit; /* thread address space */ |
31 | int preempt_count; /* 0 => preemptable, <0 => BUG */ | 30 | int preempt_count; /* 0 => preemptable, <0 => BUG */ |
32 | __u32 cpu; /* should always be 0 on m68k */ | 31 | __u32 cpu; /* should always be 0 on m68k */ |
@@ -37,7 +36,6 @@ struct thread_info { | |||
37 | #define INIT_THREAD_INFO(tsk) \ | 36 | #define INIT_THREAD_INFO(tsk) \ |
38 | { \ | 37 | { \ |
39 | .task = &tsk, \ | 38 | .task = &tsk, \ |
40 | .exec_domain = &default_exec_domain, \ | ||
41 | .addr_limit = KERNEL_DS, \ | 39 | .addr_limit = KERNEL_DS, \ |
42 | .preempt_count = INIT_PREEMPT_COUNT, \ | 40 | .preempt_count = INIT_PREEMPT_COUNT, \ |
43 | } | 41 | } |