diff options
| author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-22 19:46:29 -0400 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-22 19:46:29 -0400 | 
| commit | 5fd52203e1856ad925b1a6adae9a22e533da94e2 (patch) | |
| tree | 9c1943df7bb47a5170a855a301beb69c6ebd6db3 /arch/ia64/kernel/process.c | |
| parent | 5453e7723b95958f4591b2e0063573d8d53e7699 (diff) | |
| parent | a66aa704d6f332b001dfb0e787c92b2c61c75081 (diff) | |
Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6
* 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6:
  [IA64] fix kmalloc(0) in arch/ia64/pci/pci.c
  [IA64] Only unwind non-running tasks.
  [IA64] Improve unwind checking.
  [IA64] Yet another section mismatch warning
  [IA64] Fix bogus messages about system calls not implemented.
Diffstat (limited to 'arch/ia64/kernel/process.c')
| -rw-r--r-- | arch/ia64/kernel/process.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/ia64/kernel/process.c b/arch/ia64/kernel/process.c index d1c3ed9943e5..af73b8dfde28 100644 --- a/arch/ia64/kernel/process.c +++ b/arch/ia64/kernel/process.c  | |||
| @@ -763,6 +763,9 @@ get_wchan (struct task_struct *p) | |||
| 763 | unsigned long ip; | 763 | unsigned long ip; | 
| 764 | int count = 0; | 764 | int count = 0; | 
| 765 | 765 | ||
| 766 | if (!p || p == current || p->state == TASK_RUNNING) | ||
| 767 | return 0; | ||
| 768 | |||
| 766 | /* | 769 | /* | 
| 767 | * Note: p may not be a blocked task (it could be current or | 770 | * Note: p may not be a blocked task (it could be current or | 
| 768 | * another process running on some other CPU. Rather than | 771 | * another process running on some other CPU. Rather than | 
| @@ -773,6 +776,8 @@ get_wchan (struct task_struct *p) | |||
| 773 | */ | 776 | */ | 
| 774 | unw_init_from_blocked_task(&info, p); | 777 | unw_init_from_blocked_task(&info, p); | 
| 775 | do { | 778 | do { | 
| 779 | if (p->state == TASK_RUNNING) | ||
| 780 | return 0; | ||
| 776 | if (unw_unwind(&info) < 0) | 781 | if (unw_unwind(&info) < 0) | 
| 777 | return 0; | 782 | return 0; | 
| 778 | unw_get_ip(&info, &ip); | 783 | unw_get_ip(&info, &ip); | 
