diff options
author | Richard Weinberger <richard@nod.at> | 2015-03-30 01:30:38 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2015-04-12 15:03:30 -0400 |
commit | fa41b1c7dfa0453931afb32c9988af67a2ee28ae (patch) | |
tree | 15aedee3674939e96951757ccb56324b76492596 /arch/avr32 | |
parent | e6de3ca91cd7ee252ef271c96a4c480c1f3e071e (diff) |
arch: Remove exec_domain from remaining archs
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/avr32')
-rw-r--r-- | arch/avr32/include/asm/thread_info.h | 3 | ||||
-rw-r--r-- | arch/avr32/kernel/asm-offsets.c | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/arch/avr32/include/asm/thread_info.h b/arch/avr32/include/asm/thread_info.h index d56afa99a514..d4d3079541ea 100644 --- a/arch/avr32/include/asm/thread_info.h +++ b/arch/avr32/include/asm/thread_info.h | |||
@@ -17,11 +17,9 @@ | |||
17 | #include <asm/types.h> | 17 | #include <asm/types.h> |
18 | 18 | ||
19 | struct task_struct; | 19 | struct task_struct; |
20 | struct exec_domain; | ||
21 | 20 | ||
22 | struct thread_info { | 21 | struct thread_info { |
23 | struct task_struct *task; /* main task structure */ | 22 | struct task_struct *task; /* main task structure */ |
24 | struct exec_domain *exec_domain; /* execution domain */ | ||
25 | unsigned long flags; /* low level flags */ | 23 | unsigned long flags; /* low level flags */ |
26 | __u32 cpu; | 24 | __u32 cpu; |
27 | __s32 preempt_count; /* 0 => preemptable, <0 => BUG */ | 25 | __s32 preempt_count; /* 0 => preemptable, <0 => BUG */ |
@@ -36,7 +34,6 @@ struct thread_info { | |||
36 | #define INIT_THREAD_INFO(tsk) \ | 34 | #define INIT_THREAD_INFO(tsk) \ |
37 | { \ | 35 | { \ |
38 | .task = &tsk, \ | 36 | .task = &tsk, \ |
39 | .exec_domain = &default_exec_domain, \ | ||
40 | .flags = 0, \ | 37 | .flags = 0, \ |
41 | .cpu = 0, \ | 38 | .cpu = 0, \ |
42 | .preempt_count = INIT_PREEMPT_COUNT, \ | 39 | .preempt_count = INIT_PREEMPT_COUNT, \ |
diff --git a/arch/avr32/kernel/asm-offsets.c b/arch/avr32/kernel/asm-offsets.c index e41c84516e5d..2c9764fe3532 100644 --- a/arch/avr32/kernel/asm-offsets.c +++ b/arch/avr32/kernel/asm-offsets.c | |||
@@ -12,7 +12,6 @@ | |||
12 | void foo(void) | 12 | void foo(void) |
13 | { | 13 | { |
14 | OFFSET(TI_task, thread_info, task); | 14 | OFFSET(TI_task, thread_info, task); |
15 | OFFSET(TI_exec_domain, thread_info, exec_domain); | ||
16 | OFFSET(TI_flags, thread_info, flags); | 15 | OFFSET(TI_flags, thread_info, flags); |
17 | OFFSET(TI_cpu, thread_info, cpu); | 16 | OFFSET(TI_cpu, thread_info, cpu); |
18 | OFFSET(TI_preempt_count, thread_info, preempt_count); | 17 | OFFSET(TI_preempt_count, thread_info, preempt_count); |