blob: 9c4b0256490bd240b37f8811915e873463c88537 [file] [log] [blame]
Ingo Molnarfb1c8f92005-09-10 00:25:56 -07001/*
2 * Copyright 2005, Red Hat, Inc., Ingo Molnar
3 * Released under the General Public License (GPL).
4 *
5 * This file contains the spinlock/rwlock implementations for
6 * DEBUG_SPINLOCK.
7 */
8
Ingo Molnarfb1c8f92005-09-10 00:25:56 -07009#include <linux/spinlock.h>
Andrew Mortonbb81a092006-12-07 02:14:01 +010010#include <linux/nmi.h>
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070011#include <linux/interrupt.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070012#include <linux/debug_locks.h>
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070013#include <linux/delay.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070014#include <linux/module.h>
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070015
Ingo Molnar8a25d5d2006-07-03 00:24:54 -070016void __spin_lock_init(spinlock_t *lock, const char *name,
17 struct lock_class_key *key)
18{
19#ifdef CONFIG_DEBUG_LOCK_ALLOC
20 /*
21 * Make sure we are not reinitializing a held lock:
22 */
23 debug_check_no_locks_freed((void *)lock, sizeof(*lock));
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -040024 lockdep_init_map(&lock->dep_map, name, key, 0);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -070025#endif
26 lock->raw_lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
27 lock->magic = SPINLOCK_MAGIC;
28 lock->owner = SPINLOCK_OWNER_INIT;
29 lock->owner_cpu = -1;
30}
31
32EXPORT_SYMBOL(__spin_lock_init);
33
34void __rwlock_init(rwlock_t *lock, const char *name,
35 struct lock_class_key *key)
36{
37#ifdef CONFIG_DEBUG_LOCK_ALLOC
38 /*
39 * Make sure we are not reinitializing a held lock:
40 */
41 debug_check_no_locks_freed((void *)lock, sizeof(*lock));
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -040042 lockdep_init_map(&lock->dep_map, name, key, 0);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -070043#endif
44 lock->raw_lock = (raw_rwlock_t) __RAW_RW_LOCK_UNLOCKED;
45 lock->magic = RWLOCK_MAGIC;
46 lock->owner = SPINLOCK_OWNER_INIT;
47 lock->owner_cpu = -1;
48}
49
50EXPORT_SYMBOL(__rwlock_init);
51
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070052static void spin_bug(spinlock_t *lock, const char *msg)
53{
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070054 struct task_struct *owner = NULL;
55
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070056 if (!debug_locks_off())
57 return;
58
59 if (lock->owner && lock->owner != SPINLOCK_OWNER_INIT)
60 owner = lock->owner;
61 printk(KERN_EMERG "BUG: spinlock %s on CPU#%d, %s/%d\n",
62 msg, raw_smp_processor_id(),
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -070063 current->comm, task_pid_nr(current));
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070064 printk(KERN_EMERG " lock: %p, .magic: %08x, .owner: %s/%d, "
65 ".owner_cpu: %d\n",
66 lock, lock->magic,
67 owner ? owner->comm : "<none>",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -070068 owner ? task_pid_nr(owner) : -1,
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070069 lock->owner_cpu);
70 dump_stack();
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070071}
72
73#define SPIN_BUG_ON(cond, lock, msg) if (unlikely(cond)) spin_bug(lock, msg)
74
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070075static inline void
76debug_spin_lock_before(spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070077{
78 SPIN_BUG_ON(lock->magic != SPINLOCK_MAGIC, lock, "bad magic");
79 SPIN_BUG_ON(lock->owner == current, lock, "recursion");
80 SPIN_BUG_ON(lock->owner_cpu == raw_smp_processor_id(),
81 lock, "cpu recursion");
82}
83
84static inline void debug_spin_lock_after(spinlock_t *lock)
85{
86 lock->owner_cpu = raw_smp_processor_id();
87 lock->owner = current;
88}
89
90static inline void debug_spin_unlock(spinlock_t *lock)
91{
92 SPIN_BUG_ON(lock->magic != SPINLOCK_MAGIC, lock, "bad magic");
93 SPIN_BUG_ON(!spin_is_locked(lock), lock, "already unlocked");
94 SPIN_BUG_ON(lock->owner != current, lock, "wrong owner");
95 SPIN_BUG_ON(lock->owner_cpu != raw_smp_processor_id(),
96 lock, "wrong CPU");
97 lock->owner = SPINLOCK_OWNER_INIT;
98 lock->owner_cpu = -1;
99}
100
101static void __spin_lock_debug(spinlock_t *lock)
102{
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700103 u64 i;
Chuck Ebbertc22f008b2006-09-29 01:59:14 -0700104 u64 loops = loops_per_jiffy * HZ;
105 int print_once = 1;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700106
107 for (;;) {
Chuck Ebbertc22f008b2006-09-29 01:59:14 -0700108 for (i = 0; i < loops; i++) {
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700109 if (__raw_spin_trylock(&lock->raw_lock))
110 return;
Ingo Molnare0a60292006-02-07 12:58:54 -0800111 __delay(1);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700112 }
113 /* lockup suspected: */
114 if (print_once) {
115 print_once = 0;
Dave Jones51989b92006-01-09 20:51:32 -0800116 printk(KERN_EMERG "BUG: spinlock lockup on CPU#%d, "
117 "%s/%d, %p\n",
Ingo Molnarbb44f112005-12-20 11:54:17 +0100118 raw_smp_processor_id(), current->comm,
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700119 task_pid_nr(current), lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700120 dump_stack();
Andrew Mortonbb81a092006-12-07 02:14:01 +0100121#ifdef CONFIG_SMP
122 trigger_all_cpu_backtrace();
123#endif
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700124 }
125 }
126}
127
128void _raw_spin_lock(spinlock_t *lock)
129{
130 debug_spin_lock_before(lock);
131 if (unlikely(!__raw_spin_trylock(&lock->raw_lock)))
132 __spin_lock_debug(lock);
133 debug_spin_lock_after(lock);
134}
135
136int _raw_spin_trylock(spinlock_t *lock)
137{
138 int ret = __raw_spin_trylock(&lock->raw_lock);
139
140 if (ret)
141 debug_spin_lock_after(lock);
142#ifndef CONFIG_SMP
143 /*
144 * Must not happen on UP:
145 */
146 SPIN_BUG_ON(!ret, lock, "trylock failure on UP");
147#endif
148 return ret;
149}
150
151void _raw_spin_unlock(spinlock_t *lock)
152{
153 debug_spin_unlock(lock);
154 __raw_spin_unlock(&lock->raw_lock);
155}
156
157static void rwlock_bug(rwlock_t *lock, const char *msg)
158{
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700159 if (!debug_locks_off())
160 return;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700161
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700162 printk(KERN_EMERG "BUG: rwlock %s on CPU#%d, %s/%d, %p\n",
163 msg, raw_smp_processor_id(), current->comm,
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700164 task_pid_nr(current), lock);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700165 dump_stack();
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700166}
167
168#define RWLOCK_BUG_ON(cond, lock, msg) if (unlikely(cond)) rwlock_bug(lock, msg)
169
Andrew Morton72f0b4e2006-08-05 12:13:47 -0700170#if 0 /* __write_lock_debug() can lock up - maybe this can too? */
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700171static void __read_lock_debug(rwlock_t *lock)
172{
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700173 u64 i;
Chuck Ebbertc22f008b2006-09-29 01:59:14 -0700174 u64 loops = loops_per_jiffy * HZ;
175 int print_once = 1;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700176
177 for (;;) {
Chuck Ebbertc22f008b2006-09-29 01:59:14 -0700178 for (i = 0; i < loops; i++) {
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700179 if (__raw_read_trylock(&lock->raw_lock))
180 return;
Ingo Molnare0a60292006-02-07 12:58:54 -0800181 __delay(1);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700182 }
183 /* lockup suspected: */
184 if (print_once) {
185 print_once = 0;
Dave Jones51989b92006-01-09 20:51:32 -0800186 printk(KERN_EMERG "BUG: read-lock lockup on CPU#%d, "
187 "%s/%d, %p\n",
Ingo Molnarbb44f112005-12-20 11:54:17 +0100188 raw_smp_processor_id(), current->comm,
189 current->pid, lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700190 dump_stack();
191 }
192 }
193}
Andrew Morton72f0b4e2006-08-05 12:13:47 -0700194#endif
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700195
196void _raw_read_lock(rwlock_t *lock)
197{
198 RWLOCK_BUG_ON(lock->magic != RWLOCK_MAGIC, lock, "bad magic");
Andrew Morton72f0b4e2006-08-05 12:13:47 -0700199 __raw_read_lock(&lock->raw_lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700200}
201
202int _raw_read_trylock(rwlock_t *lock)
203{
204 int ret = __raw_read_trylock(&lock->raw_lock);
205
206#ifndef CONFIG_SMP
207 /*
208 * Must not happen on UP:
209 */
210 RWLOCK_BUG_ON(!ret, lock, "trylock failure on UP");
211#endif
212 return ret;
213}
214
215void _raw_read_unlock(rwlock_t *lock)
216{
217 RWLOCK_BUG_ON(lock->magic != RWLOCK_MAGIC, lock, "bad magic");
218 __raw_read_unlock(&lock->raw_lock);
219}
220
221static inline void debug_write_lock_before(rwlock_t *lock)
222{
223 RWLOCK_BUG_ON(lock->magic != RWLOCK_MAGIC, lock, "bad magic");
224 RWLOCK_BUG_ON(lock->owner == current, lock, "recursion");
225 RWLOCK_BUG_ON(lock->owner_cpu == raw_smp_processor_id(),
226 lock, "cpu recursion");
227}
228
229static inline void debug_write_lock_after(rwlock_t *lock)
230{
231 lock->owner_cpu = raw_smp_processor_id();
232 lock->owner = current;
233}
234
235static inline void debug_write_unlock(rwlock_t *lock)
236{
237 RWLOCK_BUG_ON(lock->magic != RWLOCK_MAGIC, lock, "bad magic");
238 RWLOCK_BUG_ON(lock->owner != current, lock, "wrong owner");
239 RWLOCK_BUG_ON(lock->owner_cpu != raw_smp_processor_id(),
240 lock, "wrong CPU");
241 lock->owner = SPINLOCK_OWNER_INIT;
242 lock->owner_cpu = -1;
243}
244
Andrew Morton72f0b4e2006-08-05 12:13:47 -0700245#if 0 /* This can cause lockups */
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700246static void __write_lock_debug(rwlock_t *lock)
247{
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700248 u64 i;
Chuck Ebbertc22f008b2006-09-29 01:59:14 -0700249 u64 loops = loops_per_jiffy * HZ;
250 int print_once = 1;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700251
252 for (;;) {
Chuck Ebbertc22f008b2006-09-29 01:59:14 -0700253 for (i = 0; i < loops; i++) {
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700254 if (__raw_write_trylock(&lock->raw_lock))
255 return;
Ingo Molnare0a60292006-02-07 12:58:54 -0800256 __delay(1);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700257 }
258 /* lockup suspected: */
259 if (print_once) {
260 print_once = 0;
Dave Jones51989b92006-01-09 20:51:32 -0800261 printk(KERN_EMERG "BUG: write-lock lockup on CPU#%d, "
262 "%s/%d, %p\n",
Ingo Molnarbb44f112005-12-20 11:54:17 +0100263 raw_smp_processor_id(), current->comm,
264 current->pid, lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700265 dump_stack();
266 }
267 }
268}
Andrew Morton72f0b4e2006-08-05 12:13:47 -0700269#endif
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700270
271void _raw_write_lock(rwlock_t *lock)
272{
273 debug_write_lock_before(lock);
Andrew Morton72f0b4e2006-08-05 12:13:47 -0700274 __raw_write_lock(&lock->raw_lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700275 debug_write_lock_after(lock);
276}
277
278int _raw_write_trylock(rwlock_t *lock)
279{
280 int ret = __raw_write_trylock(&lock->raw_lock);
281
282 if (ret)
283 debug_write_lock_after(lock);
284#ifndef CONFIG_SMP
285 /*
286 * Must not happen on UP:
287 */
288 RWLOCK_BUG_ON(!ret, lock, "trylock failure on UP");
289#endif
290 return ret;
291}
292
293void _raw_write_unlock(rwlock_t *lock)
294{
295 debug_write_unlock(lock);
296 __raw_write_unlock(&lock->raw_lock);
297}