diff options
Diffstat (limited to 'arch/arm/kernel/process.c')
-rw-r--r-- | arch/arm/kernel/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/kernel/process.c b/arch/arm/kernel/process.c index 91d107d33c8d..ac6ed955ca0f 100644 --- a/arch/arm/kernel/process.c +++ b/arch/arm/kernel/process.c | |||
@@ -459,7 +459,7 @@ unsigned long get_wchan(struct task_struct *p) | |||
459 | if (!p || p == current || p->state == TASK_RUNNING) | 459 | if (!p || p == current || p->state == TASK_RUNNING) |
460 | return 0; | 460 | return 0; |
461 | 461 | ||
462 | stack_start = (unsigned long)(p->thread_info + 1); | 462 | stack_start = (unsigned long)end_of_stack(p); |
463 | stack_end = ((unsigned long)p->thread_info) + THREAD_SIZE; | 463 | stack_end = ((unsigned long)p->thread_info) + THREAD_SIZE; |
464 | 464 | ||
465 | fp = thread_saved_fp(p); | 465 | fp = thread_saved_fp(p); |