[PATCH] ZVC/zone_reclaim: Leave 1% of unmapped pagecache pages for file I/O
[linux-2.6/x86.git] / lib / spinlock_debug.c
blob93c15ee3f8ea7f71aa41ea9c81aee8d514c7f530
1 /*
2 * Copyright 2005, Red Hat, Inc., Ingo Molnar
3 * Released under the General Public License (GPL).
5 * This file contains the spinlock/rwlock implementations for
6 * DEBUG_SPINLOCK.
7 */
9 #include <linux/spinlock.h>
10 #include <linux/interrupt.h>
11 #include <linux/delay.h>
13 static void spin_bug(spinlock_t *lock, const char *msg)
15 static long print_once = 1;
16 struct task_struct *owner = NULL;
18 if (xchg(&print_once, 0)) {
19 if (lock->owner && lock->owner != SPINLOCK_OWNER_INIT)
20 owner = lock->owner;
21 printk(KERN_EMERG "BUG: spinlock %s on CPU#%d, %s/%d\n",
22 msg, raw_smp_processor_id(),
23 current->comm, current->pid);
24 printk(KERN_EMERG " lock: %p, .magic: %08x, .owner: %s/%d, "
25 ".owner_cpu: %d\n",
26 lock, lock->magic,
27 owner ? owner->comm : "<none>",
28 owner ? owner->pid : -1,
29 lock->owner_cpu);
30 dump_stack();
31 #ifdef CONFIG_SMP
33 * We cannot continue on SMP:
35 // panic("bad locking");
36 #endif
40 #define SPIN_BUG_ON(cond, lock, msg) if (unlikely(cond)) spin_bug(lock, msg)
42 static inline void debug_spin_lock_before(spinlock_t *lock)
44 SPIN_BUG_ON(lock->magic != SPINLOCK_MAGIC, lock, "bad magic");
45 SPIN_BUG_ON(lock->owner == current, lock, "recursion");
46 SPIN_BUG_ON(lock->owner_cpu == raw_smp_processor_id(),
47 lock, "cpu recursion");
50 static inline void debug_spin_lock_after(spinlock_t *lock)
52 lock->owner_cpu = raw_smp_processor_id();
53 lock->owner = current;
56 static inline void debug_spin_unlock(spinlock_t *lock)
58 SPIN_BUG_ON(lock->magic != SPINLOCK_MAGIC, lock, "bad magic");
59 SPIN_BUG_ON(!spin_is_locked(lock), lock, "already unlocked");
60 SPIN_BUG_ON(lock->owner != current, lock, "wrong owner");
61 SPIN_BUG_ON(lock->owner_cpu != raw_smp_processor_id(),
62 lock, "wrong CPU");
63 lock->owner = SPINLOCK_OWNER_INIT;
64 lock->owner_cpu = -1;
67 static void __spin_lock_debug(spinlock_t *lock)
69 int print_once = 1;
70 u64 i;
72 for (;;) {
73 for (i = 0; i < loops_per_jiffy * HZ; i++) {
74 if (__raw_spin_trylock(&lock->raw_lock))
75 return;
76 __delay(1);
78 /* lockup suspected: */
79 if (print_once) {
80 print_once = 0;
81 printk(KERN_EMERG "BUG: spinlock lockup on CPU#%d, "
82 "%s/%d, %p\n",
83 raw_smp_processor_id(), current->comm,
84 current->pid, lock);
85 dump_stack();
90 void _raw_spin_lock(spinlock_t *lock)
92 debug_spin_lock_before(lock);
93 if (unlikely(!__raw_spin_trylock(&lock->raw_lock)))
94 __spin_lock_debug(lock);
95 debug_spin_lock_after(lock);
98 int _raw_spin_trylock(spinlock_t *lock)
100 int ret = __raw_spin_trylock(&lock->raw_lock);
102 if (ret)
103 debug_spin_lock_after(lock);
104 #ifndef CONFIG_SMP
106 * Must not happen on UP:
108 SPIN_BUG_ON(!ret, lock, "trylock failure on UP");
109 #endif
110 return ret;
113 void _raw_spin_unlock(spinlock_t *lock)
115 debug_spin_unlock(lock);
116 __raw_spin_unlock(&lock->raw_lock);
119 static void rwlock_bug(rwlock_t *lock, const char *msg)
121 static long print_once = 1;
123 if (xchg(&print_once, 0)) {
124 printk(KERN_EMERG "BUG: rwlock %s on CPU#%d, %s/%d, %p\n",
125 msg, raw_smp_processor_id(), current->comm,
126 current->pid, lock);
127 dump_stack();
128 #ifdef CONFIG_SMP
130 * We cannot continue on SMP:
132 panic("bad locking");
133 #endif
137 #define RWLOCK_BUG_ON(cond, lock, msg) if (unlikely(cond)) rwlock_bug(lock, msg)
139 static void __read_lock_debug(rwlock_t *lock)
141 int print_once = 1;
142 u64 i;
144 for (;;) {
145 for (i = 0; i < loops_per_jiffy * HZ; i++) {
146 if (__raw_read_trylock(&lock->raw_lock))
147 return;
148 __delay(1);
150 /* lockup suspected: */
151 if (print_once) {
152 print_once = 0;
153 printk(KERN_EMERG "BUG: read-lock lockup on CPU#%d, "
154 "%s/%d, %p\n",
155 raw_smp_processor_id(), current->comm,
156 current->pid, lock);
157 dump_stack();
162 void _raw_read_lock(rwlock_t *lock)
164 RWLOCK_BUG_ON(lock->magic != RWLOCK_MAGIC, lock, "bad magic");
165 if (unlikely(!__raw_read_trylock(&lock->raw_lock)))
166 __read_lock_debug(lock);
169 int _raw_read_trylock(rwlock_t *lock)
171 int ret = __raw_read_trylock(&lock->raw_lock);
173 #ifndef CONFIG_SMP
175 * Must not happen on UP:
177 RWLOCK_BUG_ON(!ret, lock, "trylock failure on UP");
178 #endif
179 return ret;
182 void _raw_read_unlock(rwlock_t *lock)
184 RWLOCK_BUG_ON(lock->magic != RWLOCK_MAGIC, lock, "bad magic");
185 __raw_read_unlock(&lock->raw_lock);
188 static inline void debug_write_lock_before(rwlock_t *lock)
190 RWLOCK_BUG_ON(lock->magic != RWLOCK_MAGIC, lock, "bad magic");
191 RWLOCK_BUG_ON(lock->owner == current, lock, "recursion");
192 RWLOCK_BUG_ON(lock->owner_cpu == raw_smp_processor_id(),
193 lock, "cpu recursion");
196 static inline void debug_write_lock_after(rwlock_t *lock)
198 lock->owner_cpu = raw_smp_processor_id();
199 lock->owner = current;
202 static inline void debug_write_unlock(rwlock_t *lock)
204 RWLOCK_BUG_ON(lock->magic != RWLOCK_MAGIC, lock, "bad magic");
205 RWLOCK_BUG_ON(lock->owner != current, lock, "wrong owner");
206 RWLOCK_BUG_ON(lock->owner_cpu != raw_smp_processor_id(),
207 lock, "wrong CPU");
208 lock->owner = SPINLOCK_OWNER_INIT;
209 lock->owner_cpu = -1;
212 static void __write_lock_debug(rwlock_t *lock)
214 int print_once = 1;
215 u64 i;
217 for (;;) {
218 for (i = 0; i < loops_per_jiffy * HZ; i++) {
219 if (__raw_write_trylock(&lock->raw_lock))
220 return;
221 __delay(1);
223 /* lockup suspected: */
224 if (print_once) {
225 print_once = 0;
226 printk(KERN_EMERG "BUG: write-lock lockup on CPU#%d, "
227 "%s/%d, %p\n",
228 raw_smp_processor_id(), current->comm,
229 current->pid, lock);
230 dump_stack();
235 void _raw_write_lock(rwlock_t *lock)
237 debug_write_lock_before(lock);
238 if (unlikely(!__raw_write_trylock(&lock->raw_lock)))
239 __write_lock_debug(lock);
240 debug_write_lock_after(lock);
243 int _raw_write_trylock(rwlock_t *lock)
245 int ret = __raw_write_trylock(&lock->raw_lock);
247 if (ret)
248 debug_write_lock_after(lock);
249 #ifndef CONFIG_SMP
251 * Must not happen on UP:
253 RWLOCK_BUG_ON(!ret, lock, "trylock failure on UP");
254 #endif
255 return ret;
258 void _raw_write_unlock(rwlock_t *lock)
260 debug_write_unlock(lock);
261 __raw_write_unlock(&lock->raw_lock);