From: Thomas Gleixner Print the information of the current task rather than some random picked task information. Signed-off-by: Thomas Gleixner Signed-off-by: Ingo Molnar Signed-off-by: Andrew Morton --- kernel/rtmutex.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/rtmutex.c~rtmutex-debug-printk-correct-task-information kernel/rtmutex.c --- 25/kernel/rtmutex.c~rtmutex-debug-printk-correct-task-information Wed Apr 26 14:24:26 2006 +++ 25-akpm/kernel/rtmutex.c Wed Apr 26 14:24:26 2006 @@ -180,7 +180,7 @@ static int rt_mutex_adjust_prio_chain(ta prev_max = max_lock_depth; printk(KERN_WARNING "Maximum lock depth %d reached " "task: %s (%d)\n", max_lock_depth, - task->comm, task->pid); + current->comm, current->pid); } put_task_struct(task); _