diff options
author | David Howells <dhowells@redhat.com> | 2008-02-08 07:19:26 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:29 -0500 |
commit | 922a70d327bd4b11342c2afd08e20d35f52064c3 (patch) | |
tree | aff7e43fa600363128c15c4b9a1ceba3869aac15 /include/asm-powerpc/processor.h | |
parent | 3eb056764dd806bbe84eb604e45e7470feeaafd8 (diff) |
aout: move STACK_TOP[_MAX] to asm/processor.h
Move STACK_TOP[_MAX] out of asm/a.out.h and into asm/processor.h as they're
required whether or not A.OUT format is available.
Signed-off-by: David Howells <dhowells@redhat.com>
Cc: <linux-arch@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-powerpc/processor.h')
-rw-r--r-- | include/asm-powerpc/processor.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/asm-powerpc/processor.h b/include/asm-powerpc/processor.h index 1f4765d6546f..fd98ca998b4f 100644 --- a/include/asm-powerpc/processor.h +++ b/include/asm-powerpc/processor.h | |||
@@ -113,6 +113,25 @@ extern struct task_struct *last_task_used_spe; | |||
113 | TASK_UNMAPPED_BASE_USER32 : TASK_UNMAPPED_BASE_USER64 ) | 113 | TASK_UNMAPPED_BASE_USER32 : TASK_UNMAPPED_BASE_USER64 ) |
114 | #endif | 114 | #endif |
115 | 115 | ||
116 | #ifdef __KERNEL__ | ||
117 | #ifdef __powerpc64__ | ||
118 | |||
119 | #define STACK_TOP_USER64 TASK_SIZE_USER64 | ||
120 | #define STACK_TOP_USER32 TASK_SIZE_USER32 | ||
121 | |||
122 | #define STACK_TOP (test_thread_flag(TIF_32BIT) ? \ | ||
123 | STACK_TOP_USER32 : STACK_TOP_USER64) | ||
124 | |||
125 | #define STACK_TOP_MAX STACK_TOP_USER64 | ||
126 | |||
127 | #else /* __powerpc64__ */ | ||
128 | |||
129 | #define STACK_TOP TASK_SIZE | ||
130 | #define STACK_TOP_MAX STACK_TOP | ||
131 | |||
132 | #endif /* __powerpc64__ */ | ||
133 | #endif /* __KERNEL__ */ | ||
134 | |||
116 | typedef struct { | 135 | typedef struct { |
117 | unsigned long seg; | 136 | unsigned long seg; |
118 | } mm_segment_t; | 137 | } mm_segment_t; |