diff options
author | Richard Weinberger <richard@nod.at> | 2014-07-13 11:45:11 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2015-04-12 15:03:29 -0400 |
commit | 3e66701cbda2e04bb62e0afe2f3d86c9d3d76b24 (patch) | |
tree | cf928b14a34caee9e4d65b8e72366a267cd65b8d /arch/xtensa/include | |
parent | cb418fdb33feba951187f6e01e9f78d3cd2dacbb (diff) |
xtensa: 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/xtensa/include')
-rw-r--r-- | arch/xtensa/include/asm/thread_info.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/xtensa/include/asm/thread_info.h b/arch/xtensa/include/asm/thread_info.h index baa1f279f59f..9ad12c617184 100644 --- a/arch/xtensa/include/asm/thread_info.h +++ b/arch/xtensa/include/asm/thread_info.h | |||
@@ -44,7 +44,6 @@ typedef struct xtregs_coprocessor { | |||
44 | 44 | ||
45 | struct thread_info { | 45 | struct thread_info { |
46 | struct task_struct *task; /* main task structure */ | 46 | struct task_struct *task; /* main task structure */ |
47 | struct exec_domain *exec_domain; /* execution domain */ | ||
48 | unsigned long flags; /* low level flags */ | 47 | unsigned long flags; /* low level flags */ |
49 | unsigned long status; /* thread-synchronous flags */ | 48 | unsigned long status; /* thread-synchronous flags */ |
50 | __u32 cpu; /* current CPU */ | 49 | __u32 cpu; /* current CPU */ |
@@ -72,7 +71,6 @@ struct thread_info { | |||
72 | #define INIT_THREAD_INFO(tsk) \ | 71 | #define INIT_THREAD_INFO(tsk) \ |
73 | { \ | 72 | { \ |
74 | .task = &tsk, \ | 73 | .task = &tsk, \ |
75 | .exec_domain = &default_exec_domain, \ | ||
76 | .flags = 0, \ | 74 | .flags = 0, \ |
77 | .cpu = 0, \ | 75 | .cpu = 0, \ |
78 | .preempt_count = INIT_PREEMPT_COUNT, \ | 76 | .preempt_count = INIT_PREEMPT_COUNT, \ |