diff options
Diffstat (limited to 'kernel/rtmutex-debug.c')
-rw-r--r-- | kernel/rtmutex-debug.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/kernel/rtmutex-debug.c b/kernel/rtmutex-debug.c index 353a853bc390..0c1faa950af7 100644 --- a/kernel/rtmutex-debug.c +++ b/kernel/rtmutex-debug.c | |||
@@ -96,7 +96,7 @@ void deadlock_trace_off(void) | |||
96 | rt_trace_on = 0; | 96 | rt_trace_on = 0; |
97 | } | 97 | } |
98 | 98 | ||
99 | static void printk_task(task_t *p) | 99 | static void printk_task(struct task_struct *p) |
100 | { | 100 | { |
101 | if (p) | 101 | if (p) |
102 | printk("%16s:%5d [%p, %3d]", p->comm, p->pid, p, p->prio); | 102 | printk("%16s:%5d [%p, %3d]", p->comm, p->pid, p, p->prio); |
@@ -231,7 +231,8 @@ void debug_rt_mutex_init(struct rt_mutex *lock, const char *name) | |||
231 | lock->name = name; | 231 | lock->name = name; |
232 | } | 232 | } |
233 | 233 | ||
234 | void rt_mutex_deadlock_account_lock(struct rt_mutex *lock, task_t *task) | 234 | void |
235 | rt_mutex_deadlock_account_lock(struct rt_mutex *lock, struct task_struct *task) | ||
235 | { | 236 | { |
236 | } | 237 | } |
237 | 238 | ||