diff options
author | Tim Abbott <tabbott@ksplice.com> | 2009-09-18 16:32:45 -0400 |
---|---|---|
committer | Hirokazu Takata <takata@linux-m32r.org> | 2009-09-22 11:29:38 -0400 |
commit | a7efb879ab5b07726873ace8305373bdf68be8a8 (patch) | |
tree | cfa26dbf4bb2ca0fbf431239aa2f9ce9a325d519 /arch/m32r | |
parent | 8b1c9befbfbd443bd95e77db01c70f1741aa2511 (diff) |
m32r: Define THREAD_SIZE only once.
Previously, m32r's asm/thread_info.h defined THREAD_SIZE differently
for assembly and C code; now that PAGE_SIZE is usable from assembly,
these can be combined. Also, m32r's asm/processor.h redefines
THREAD_SIZE to the same value; remove this redundant definition.
Signed-off-by: Tim Abbott <tabbott@ksplice.com>
Signed-off-by: Hirokazu Takata <takata@linux-m32r.org>
Diffstat (limited to 'arch/m32r')
-rw-r--r-- | arch/m32r/include/asm/processor.h | 2 | ||||
-rw-r--r-- | arch/m32r/include/asm/thread_info.h | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/arch/m32r/include/asm/processor.h b/arch/m32r/include/asm/processor.h index 1a997fc148a2..8397c249989b 100644 --- a/arch/m32r/include/asm/processor.h +++ b/arch/m32r/include/asm/processor.h | |||
@@ -140,8 +140,6 @@ unsigned long get_wchan(struct task_struct *p); | |||
140 | #define KSTK_EIP(tsk) ((tsk)->thread.lr) | 140 | #define KSTK_EIP(tsk) ((tsk)->thread.lr) |
141 | #define KSTK_ESP(tsk) ((tsk)->thread.sp) | 141 | #define KSTK_ESP(tsk) ((tsk)->thread.sp) |
142 | 142 | ||
143 | #define THREAD_SIZE (2*PAGE_SIZE) | ||
144 | |||
145 | #define cpu_relax() barrier() | 143 | #define cpu_relax() barrier() |
146 | 144 | ||
147 | #endif /* _ASM_M32R_PROCESSOR_H */ | 145 | #endif /* _ASM_M32R_PROCESSOR_H */ |
diff --git a/arch/m32r/include/asm/thread_info.h b/arch/m32r/include/asm/thread_info.h index 71578151a403..4d6616936c36 100644 --- a/arch/m32r/include/asm/thread_info.h +++ b/arch/m32r/include/asm/thread_info.h | |||
@@ -55,6 +55,8 @@ struct thread_info { | |||
55 | 55 | ||
56 | #define PREEMPT_ACTIVE 0x10000000 | 56 | #define PREEMPT_ACTIVE 0x10000000 |
57 | 57 | ||
58 | #define THREAD_SIZE (PAGE_SIZE << 1) | ||
59 | |||
58 | /* | 60 | /* |
59 | * macros/functions for gaining access to the thread information structure | 61 | * macros/functions for gaining access to the thread information structure |
60 | */ | 62 | */ |
@@ -76,8 +78,6 @@ struct thread_info { | |||
76 | #define init_thread_info (init_thread_union.thread_info) | 78 | #define init_thread_info (init_thread_union.thread_info) |
77 | #define init_stack (init_thread_union.stack) | 79 | #define init_stack (init_thread_union.stack) |
78 | 80 | ||
79 | #define THREAD_SIZE (2*PAGE_SIZE) | ||
80 | |||
81 | /* how to get the thread information struct from C */ | 81 | /* how to get the thread information struct from C */ |
82 | static inline struct thread_info *current_thread_info(void) | 82 | static inline struct thread_info *current_thread_info(void) |
83 | { | 83 | { |
@@ -127,8 +127,6 @@ static inline unsigned int get_thread_fault_code(void) | |||
127 | 127 | ||
128 | #else /* !__ASSEMBLY__ */ | 128 | #else /* !__ASSEMBLY__ */ |
129 | 129 | ||
130 | #define THREAD_SIZE 8192 | ||
131 | |||
132 | /* how to get the thread information struct from ASM */ | 130 | /* how to get the thread information struct from ASM */ |
133 | #define GET_THREAD_INFO(reg) GET_THREAD_INFO reg | 131 | #define GET_THREAD_INFO(reg) GET_THREAD_INFO reg |
134 | .macro GET_THREAD_INFO reg | 132 | .macro GET_THREAD_INFO reg |