]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - kernel/locking/rtmutex-debug.c
UBUNTU: [Config] CONFIG_SENSORS_IR35221=m
[mirror_ubuntu-artful-kernel.git] / kernel / locking / rtmutex-debug.c
CommitLineData
e7eebaf6
IM
1/*
2 * RT-Mutexes: blocking mutual exclusion locks with PI support
3 *
4 * started by Ingo Molnar and Thomas Gleixner:
5 *
6 * Copyright (C) 2004-2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
7 * Copyright (C) 2006 Timesys Corp., Thomas Gleixner <tglx@timesys.com>
8 *
9 * This code is based on the rt.c implementation in the preempt-rt tree.
10 * Portions of said code are
11 *
12 * Copyright (C) 2004 LynuxWorks, Inc., Igor Manyilov, Bill Huey
13 * Copyright (C) 2006 Esben Nielsen
14 * Copyright (C) 2006 Kihon Technologies Inc.,
15 * Steven Rostedt <rostedt@goodmis.org>
16 *
17 * See rt.c in preempt-rt for proper credits and further information
18 */
e7eebaf6 19#include <linux/sched.h>
8bd75c77 20#include <linux/sched/rt.h>
b17b0153 21#include <linux/sched/debug.h>
e7eebaf6 22#include <linux/delay.h>
9984de1a 23#include <linux/export.h>
e7eebaf6
IM
24#include <linux/spinlock.h>
25#include <linux/kallsyms.h>
26#include <linux/syscalls.h>
27#include <linux/interrupt.h>
fb00aca4 28#include <linux/rbtree.h>
e7eebaf6 29#include <linux/fs.h>
9a11b49a 30#include <linux/debug_locks.h>
e7eebaf6
IM
31
32#include "rtmutex_common.h"
33
36c8b586 34static void printk_task(struct task_struct *p)
e7eebaf6
IM
35{
36 if (p)
ba25f9dc 37 printk("%16s:%5d [%p, %3d]", p->comm, task_pid_nr(p), p, p->prio);
e7eebaf6
IM
38 else
39 printk("<none>");
40}
41
e7eebaf6
IM
42static void printk_lock(struct rt_mutex *lock, int print_owner)
43{
44 if (lock->name)
45 printk(" [%p] {%s}\n",
46 lock, lock->name);
47 else
48 printk(" [%p] {%s:%d}\n",
49 lock, lock->file, lock->line);
50
51 if (print_owner && rt_mutex_owner(lock)) {
52 printk(".. ->owner: %p\n", lock->owner);
53 printk(".. held by: ");
54 printk_task(rt_mutex_owner(lock));
55 printk("\n");
56 }
e7eebaf6
IM
57}
58
59void rt_mutex_debug_task_free(struct task_struct *task)
60{
fb00aca4 61 DEBUG_LOCKS_WARN_ON(!RB_EMPTY_ROOT(&task->pi_waiters));
0fa914c6 62 DEBUG_LOCKS_WARN_ON(task->pi_blocked_on);
e7eebaf6
IM
63}
64
65/*
66 * We fill out the fields in the waiter to store the information about
67 * the deadlock. We print when we return. act_waiter can be NULL in
68 * case of a remove waiter operation.
69 */
8930ed80
TG
70void debug_rt_mutex_deadlock(enum rtmutex_chainwalk chwalk,
71 struct rt_mutex_waiter *act_waiter,
e7eebaf6
IM
72 struct rt_mutex *lock)
73{
74 struct task_struct *task;
75
8930ed80 76 if (!debug_locks || chwalk == RT_MUTEX_FULL_CHAINWALK || !act_waiter)
e7eebaf6
IM
77 return;
78
79 task = rt_mutex_owner(act_waiter->lock);
80 if (task && task != current) {
48d13e48 81 act_waiter->deadlock_task_pid = get_pid(task_pid(task));
e7eebaf6
IM
82 act_waiter->deadlock_lock = lock;
83 }
84}
85
86void debug_rt_mutex_print_deadlock(struct rt_mutex_waiter *waiter)
87{
88 struct task_struct *task;
89
0fa914c6 90 if (!waiter->deadlock_lock || !debug_locks)
e7eebaf6
IM
91 return;
92
48d13e48
PE
93 rcu_read_lock();
94 task = pid_task(waiter->deadlock_task_pid, PIDTYPE_PID);
95 if (!task) {
96 rcu_read_unlock();
e7eebaf6 97 return;
48d13e48 98 }
e7eebaf6 99
68cc3990
TG
100 if (!debug_locks_off()) {
101 rcu_read_unlock();
0fa914c6 102 return;
68cc3990 103 }
e7eebaf6 104
a5dd63ef
PM
105 pr_warn("\n");
106 pr_warn("============================================\n");
107 pr_warn("WARNING: circular locking deadlock detected!\n");
108 pr_warn("%s\n", print_tainted());
109 pr_warn("--------------------------------------------\n");
e7eebaf6 110 printk("%s/%d is deadlocking current task %s/%d\n\n",
ba25f9dc
PE
111 task->comm, task_pid_nr(task),
112 current->comm, task_pid_nr(current));
e7eebaf6
IM
113
114 printk("\n1) %s/%d is trying to acquire this lock:\n",
ba25f9dc 115 current->comm, task_pid_nr(current));
e7eebaf6
IM
116 printk_lock(waiter->lock, 1);
117
ba25f9dc
PE
118 printk("\n2) %s/%d is blocked on this lock:\n",
119 task->comm, task_pid_nr(task));
e7eebaf6
IM
120 printk_lock(waiter->deadlock_lock, 1);
121
9a11b49a
IM
122 debug_show_held_locks(current);
123 debug_show_held_locks(task);
e7eebaf6 124
ba25f9dc
PE
125 printk("\n%s/%d's [blocked] stackdump:\n\n",
126 task->comm, task_pid_nr(task));
e7eebaf6
IM
127 show_stack(task, NULL);
128 printk("\n%s/%d's [current] stackdump:\n\n",
ba25f9dc 129 current->comm, task_pid_nr(current));
e7eebaf6 130 dump_stack();
9a11b49a 131 debug_show_all_locks();
48d13e48 132 rcu_read_unlock();
9a11b49a 133
e7eebaf6
IM
134 printk("[ turning off deadlock detection."
135 "Please report this trace. ]\n\n");
e7eebaf6
IM
136}
137
9a11b49a 138void debug_rt_mutex_lock(struct rt_mutex *lock)
e7eebaf6 139{
e7eebaf6
IM
140}
141
142void debug_rt_mutex_unlock(struct rt_mutex *lock)
143{
0fa914c6 144 DEBUG_LOCKS_WARN_ON(rt_mutex_owner(lock) != current);
e7eebaf6
IM
145}
146
9a11b49a
IM
147void
148debug_rt_mutex_proxy_lock(struct rt_mutex *lock, struct task_struct *powner)
e7eebaf6 149{
e7eebaf6
IM
150}
151
152void debug_rt_mutex_proxy_unlock(struct rt_mutex *lock)
153{
0fa914c6 154 DEBUG_LOCKS_WARN_ON(!rt_mutex_owner(lock));
e7eebaf6
IM
155}
156
157void debug_rt_mutex_init_waiter(struct rt_mutex_waiter *waiter)
158{
159 memset(waiter, 0x11, sizeof(*waiter));
48d13e48 160 waiter->deadlock_task_pid = NULL;
e7eebaf6
IM
161}
162
163void debug_rt_mutex_free_waiter(struct rt_mutex_waiter *waiter)
164{
48d13e48 165 put_pid(waiter->deadlock_task_pid);
e7eebaf6
IM
166 memset(waiter, 0x22, sizeof(*waiter));
167}
168
f5694788 169void debug_rt_mutex_init(struct rt_mutex *lock, const char *name, struct lock_class_key *key)
e7eebaf6 170{
9a11b49a
IM
171 /*
172 * Make sure we are not reinitializing a held lock:
173 */
174 debug_check_no_locks_freed((void *)lock, sizeof(*lock));
175 lock->name = name;
f5694788
PZ
176
177#ifdef CONFIG_DEBUG_LOCK_ALLOC
178 lockdep_init_map(&lock->dep_map, name, key, 0);
179#endif
e7eebaf6
IM
180}
181