Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6ae384884d936cb39ab20238af34689933e44525
Commit:     6ae384884d936cb39ab20238af34689933e44525
Parent:     e2e6fe7bb6e30621ad4e8a3acb1e711815c239bd
Author:     Robin Holt <[EMAIL PROTECTED]>
AuthorDate: Fri May 18 13:46:52 2007 -0500
Committer:  Tony Luck <[EMAIL PROTECTED]>
CommitDate: Tue May 22 10:16:07 2007 -0700

    [IA64] Only unwind non-running tasks.
    
    Unwinding a running task has proven problematic.
    
    In one instance, the running task was attempting to unwind itself and
    received an interrupt between when get_wchan allocated local variables on
    the stack and when unw_init_from_blocked_task was called which resulted
    in unw_init_frame_info to place this tasks task_struct pointer over the
    switch stack's ar_bspstore entry.
    
    Signed-off-by: Robin Holt <[EMAIL PROTECTED]>
    Signed-off-by: Tony Luck <[EMAIL PROTECTED]>
---
 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 d1c3ed9..af73b8d 100644
--- a/arch/ia64/kernel/process.c
+++ b/arch/ia64/kernel/process.c
@@ -763,6 +763,9 @@ get_wchan (struct task_struct *p)
        unsigned long ip;
        int count = 0;
 
+       if (!p || p == current || p->state == TASK_RUNNING)
+               return 0;
+
        /*
         * Note: p may not be a blocked task (it could be current or
         * another process running on some other CPU.  Rather than
@@ -773,6 +776,8 @@ get_wchan (struct task_struct *p)
         */
        unw_init_from_blocked_task(&info, p);
        do {
+               if (p->state == TASK_RUNNING)
+                       return 0;
                if (unw_unwind(&info) < 0)
                        return 0;
                unw_get_ip(&info, &ip);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to