mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
[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>
This commit is contained in:
parent
5520582392
commit
32d39a9355
4 changed files with 5 additions and 5 deletions
|
@ -460,7 +460,7 @@ unsigned long get_wchan(struct task_struct *p)
|
|||
return 0;
|
||||
|
||||
stack_start = (unsigned long)end_of_stack(p);
|
||||
stack_end = ((unsigned long)p->thread_info) + THREAD_SIZE;
|
||||
stack_end = (unsigned long)task_stack_page(p) + THREAD_SIZE;
|
||||
|
||||
fp = thread_saved_fp(p);
|
||||
do {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue