aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-arm/processor.h
diff options
context:
space:
mode:
authorAl Viro <viro@ftp.linux.org.uk>2006-01-12 01:05:58 -0800
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-12 09:08:56 -0800
commit32d39a9355780bc9aadcf76a2d2004bdbe0f4665 (patch)
treebd3003a3b13be7d4766e63dbb4c95472bc708125 /include/asm-arm/processor.h
parent[PATCH] arm: end_of_stack() (diff)
downloadlinux-dev-32d39a9355780bc9aadcf76a2d2004bdbe0f4665.tar.xz
linux-dev-32d39a9355780bc9aadcf76a2d2004bdbe0f4665.zip
[PATCH] arm: task_stack_page()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-arm/processor.h')
-rw-r--r--include/asm-arm/processor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-arm/processor.h b/include/asm-arm/processor.h
index fb5877e5a39b..31290694648b 100644
--- a/include/asm-arm/processor.h
+++ b/include/asm-arm/processor.h
@@ -86,7 +86,7 @@ unsigned long get_wchan(struct task_struct *p);
extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
#define task_pt_regs(p) \
- ((struct pt_regs *)(THREAD_START_SP + (void *)(p)->thread_info) - 1)
+ ((struct pt_regs *)(THREAD_START_SP + task_stack_page(p)) - 1)
#define KSTK_EIP(tsk) task_pt_regs(tsk)->ARM_pc
#define KSTK_ESP(tsk) task_pt_regs(tsk)->ARM_sp