Print the information of the current task rather than some random picked task information. Signed-off-by: Thomas Gleixner Signed-off-by: Ingo Molnar kernel/rtmutex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6.17-rc1-mm3/kernel/rtmutex.c =================================================================== --- linux-2.6.17-rc1-mm3.orig/kernel/rtmutex.c +++ linux-2.6.17-rc1-mm3/kernel/rtmutex.c @@ -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); --