Commit 65e0fdff authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

[PATCH] i386: task_stack_page()

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 07b047fc
...@@ -771,7 +771,7 @@ unsigned long get_wchan(struct task_struct *p) ...@@ -771,7 +771,7 @@ unsigned long get_wchan(struct task_struct *p)
int count = 0; int count = 0;
if (!p || p == current || p->state == TASK_RUNNING) if (!p || p == current || p->state == TASK_RUNNING)
return 0; return 0;
stack_page = (unsigned long)p->thread_info; stack_page = (unsigned long)task_stack_page(p);
esp = p->thread.esp; esp = p->thread.esp;
if (!stack_page || esp < stack_page || esp > top_esp+stack_page) if (!stack_page || esp < stack_page || esp > top_esp+stack_page)
return 0; return 0;
......
...@@ -574,7 +574,7 @@ unsigned long get_wchan(struct task_struct *p); ...@@ -574,7 +574,7 @@ unsigned long get_wchan(struct task_struct *p);
#define task_pt_regs(task) \ #define task_pt_regs(task) \
({ \ ({ \
struct pt_regs *__regs__; \ struct pt_regs *__regs__; \
__regs__ = (struct pt_regs *)(KSTK_TOP((task)->thread_info)-8); \ __regs__ = (struct pt_regs *)(KSTK_TOP(task_stack_page(task))-8); \
__regs__ - 1; \ __regs__ - 1; \
}) })
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment