USB: Obscure Maxon BP3-USB Device Support 16d8:6280 for option driver
[linux-2.6/s3c2410-cpufreq.git] / kernel / lockdep.c
blob81a4e4a3f087adfc650eb6baf2c05147f209e062
1 /*
2 * kernel/lockdep.c
4 * Runtime locking correctness validator
6 * Started by Ingo Molnar:
8 * Copyright (C) 2006,2007 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
9 * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
11 * this code maps all the lock dependencies as they occur in a live kernel
12 * and will warn about the following classes of locking bugs:
14 * - lock inversion scenarios
15 * - circular lock dependencies
16 * - hardirq/softirq safe/unsafe locking bugs
18 * Bugs are reported even if the current locking scenario does not cause
19 * any deadlock at this point.
21 * I.e. if anytime in the past two locks were taken in a different order,
22 * even if it happened for another task, even if those were different
23 * locks (but of the same class as this lock), this code will detect it.
25 * Thanks to Arjan van de Ven for coming up with the initial idea of
26 * mapping lock dependencies runtime.
28 #include <linux/mutex.h>
29 #include <linux/sched.h>
30 #include <linux/delay.h>
31 #include <linux/module.h>
32 #include <linux/proc_fs.h>
33 #include <linux/seq_file.h>
34 #include <linux/spinlock.h>
35 #include <linux/kallsyms.h>
36 #include <linux/interrupt.h>
37 #include <linux/stacktrace.h>
38 #include <linux/debug_locks.h>
39 #include <linux/irqflags.h>
40 #include <linux/utsname.h>
41 #include <linux/hash.h>
43 #include <asm/sections.h>
45 #include "lockdep_internals.h"
47 #ifdef CONFIG_PROVE_LOCKING
48 int prove_locking = 1;
49 module_param(prove_locking, int, 0644);
50 #else
51 #define prove_locking 0
52 #endif
54 #ifdef CONFIG_LOCK_STAT
55 int lock_stat = 1;
56 module_param(lock_stat, int, 0644);
57 #else
58 #define lock_stat 0
59 #endif
62 * lockdep_lock: protects the lockdep graph, the hashes and the
63 * class/list/hash allocators.
65 * This is one of the rare exceptions where it's justified
66 * to use a raw spinlock - we really dont want the spinlock
67 * code to recurse back into the lockdep code...
69 static raw_spinlock_t lockdep_lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
71 static int graph_lock(void)
73 __raw_spin_lock(&lockdep_lock);
75 * Make sure that if another CPU detected a bug while
76 * walking the graph we dont change it (while the other
77 * CPU is busy printing out stuff with the graph lock
78 * dropped already)
80 if (!debug_locks) {
81 __raw_spin_unlock(&lockdep_lock);
82 return 0;
84 return 1;
87 static inline int graph_unlock(void)
89 if (debug_locks && !__raw_spin_is_locked(&lockdep_lock))
90 return DEBUG_LOCKS_WARN_ON(1);
92 __raw_spin_unlock(&lockdep_lock);
93 return 0;
97 * Turn lock debugging off and return with 0 if it was off already,
98 * and also release the graph lock:
100 static inline int debug_locks_off_graph_unlock(void)
102 int ret = debug_locks_off();
104 __raw_spin_unlock(&lockdep_lock);
106 return ret;
109 static int lockdep_initialized;
111 unsigned long nr_list_entries;
112 static struct lock_list list_entries[MAX_LOCKDEP_ENTRIES];
115 * All data structures here are protected by the global debug_lock.
117 * Mutex key structs only get allocated, once during bootup, and never
118 * get freed - this significantly simplifies the debugging code.
120 unsigned long nr_lock_classes;
121 static struct lock_class lock_classes[MAX_LOCKDEP_KEYS];
123 #ifdef CONFIG_LOCK_STAT
124 static DEFINE_PER_CPU(struct lock_class_stats[MAX_LOCKDEP_KEYS], lock_stats);
126 static int lock_contention_point(struct lock_class *class, unsigned long ip)
128 int i;
130 for (i = 0; i < ARRAY_SIZE(class->contention_point); i++) {
131 if (class->contention_point[i] == 0) {
132 class->contention_point[i] = ip;
133 break;
135 if (class->contention_point[i] == ip)
136 break;
139 return i;
142 static void lock_time_inc(struct lock_time *lt, s64 time)
144 if (time > lt->max)
145 lt->max = time;
147 if (time < lt->min || !lt->min)
148 lt->min = time;
150 lt->total += time;
151 lt->nr++;
154 static inline void lock_time_add(struct lock_time *src, struct lock_time *dst)
156 dst->min += src->min;
157 dst->max += src->max;
158 dst->total += src->total;
159 dst->nr += src->nr;
162 struct lock_class_stats lock_stats(struct lock_class *class)
164 struct lock_class_stats stats;
165 int cpu, i;
167 memset(&stats, 0, sizeof(struct lock_class_stats));
168 for_each_possible_cpu(cpu) {
169 struct lock_class_stats *pcs =
170 &per_cpu(lock_stats, cpu)[class - lock_classes];
172 for (i = 0; i < ARRAY_SIZE(stats.contention_point); i++)
173 stats.contention_point[i] += pcs->contention_point[i];
175 lock_time_add(&pcs->read_waittime, &stats.read_waittime);
176 lock_time_add(&pcs->write_waittime, &stats.write_waittime);
178 lock_time_add(&pcs->read_holdtime, &stats.read_holdtime);
179 lock_time_add(&pcs->write_holdtime, &stats.write_holdtime);
181 for (i = 0; i < ARRAY_SIZE(stats.bounces); i++)
182 stats.bounces[i] += pcs->bounces[i];
185 return stats;
188 void clear_lock_stats(struct lock_class *class)
190 int cpu;
192 for_each_possible_cpu(cpu) {
193 struct lock_class_stats *cpu_stats =
194 &per_cpu(lock_stats, cpu)[class - lock_classes];
196 memset(cpu_stats, 0, sizeof(struct lock_class_stats));
198 memset(class->contention_point, 0, sizeof(class->contention_point));
201 static struct lock_class_stats *get_lock_stats(struct lock_class *class)
203 return &get_cpu_var(lock_stats)[class - lock_classes];
206 static void put_lock_stats(struct lock_class_stats *stats)
208 put_cpu_var(lock_stats);
211 static void lock_release_holdtime(struct held_lock *hlock)
213 struct lock_class_stats *stats;
214 s64 holdtime;
216 if (!lock_stat)
217 return;
219 holdtime = sched_clock() - hlock->holdtime_stamp;
221 stats = get_lock_stats(hlock->class);
222 if (hlock->read)
223 lock_time_inc(&stats->read_holdtime, holdtime);
224 else
225 lock_time_inc(&stats->write_holdtime, holdtime);
226 put_lock_stats(stats);
228 #else
229 static inline void lock_release_holdtime(struct held_lock *hlock)
232 #endif
235 * We keep a global list of all lock classes. The list only grows,
236 * never shrinks. The list is only accessed with the lockdep
237 * spinlock lock held.
239 LIST_HEAD(all_lock_classes);
242 * The lockdep classes are in a hash-table as well, for fast lookup:
244 #define CLASSHASH_BITS (MAX_LOCKDEP_KEYS_BITS - 1)
245 #define CLASSHASH_SIZE (1UL << CLASSHASH_BITS)
246 #define __classhashfn(key) hash_long((unsigned long)key, CLASSHASH_BITS)
247 #define classhashentry(key) (classhash_table + __classhashfn((key)))
249 static struct list_head classhash_table[CLASSHASH_SIZE];
252 * We put the lock dependency chains into a hash-table as well, to cache
253 * their existence:
255 #define CHAINHASH_BITS (MAX_LOCKDEP_CHAINS_BITS-1)
256 #define CHAINHASH_SIZE (1UL << CHAINHASH_BITS)
257 #define __chainhashfn(chain) hash_long(chain, CHAINHASH_BITS)
258 #define chainhashentry(chain) (chainhash_table + __chainhashfn((chain)))
260 static struct list_head chainhash_table[CHAINHASH_SIZE];
263 * The hash key of the lock dependency chains is a hash itself too:
264 * it's a hash of all locks taken up to that lock, including that lock.
265 * It's a 64-bit hash, because it's important for the keys to be
266 * unique.
268 #define iterate_chain_key(key1, key2) \
269 (((key1) << MAX_LOCKDEP_KEYS_BITS) ^ \
270 ((key1) >> (64-MAX_LOCKDEP_KEYS_BITS)) ^ \
271 (key2))
273 void lockdep_off(void)
275 current->lockdep_recursion++;
278 EXPORT_SYMBOL(lockdep_off);
280 void lockdep_on(void)
282 current->lockdep_recursion--;
285 EXPORT_SYMBOL(lockdep_on);
288 * Debugging switches:
291 #define VERBOSE 0
292 #define VERY_VERBOSE 0
294 #if VERBOSE
295 # define HARDIRQ_VERBOSE 1
296 # define SOFTIRQ_VERBOSE 1
297 #else
298 # define HARDIRQ_VERBOSE 0
299 # define SOFTIRQ_VERBOSE 0
300 #endif
302 #if VERBOSE || HARDIRQ_VERBOSE || SOFTIRQ_VERBOSE
304 * Quick filtering for interesting events:
306 static int class_filter(struct lock_class *class)
308 #if 0
309 /* Example */
310 if (class->name_version == 1 &&
311 !strcmp(class->name, "lockname"))
312 return 1;
313 if (class->name_version == 1 &&
314 !strcmp(class->name, "&struct->lockfield"))
315 return 1;
316 #endif
317 /* Filter everything else. 1 would be to allow everything else */
318 return 0;
320 #endif
322 static int verbose(struct lock_class *class)
324 #if VERBOSE
325 return class_filter(class);
326 #endif
327 return 0;
331 * Stack-trace: tightly packed array of stack backtrace
332 * addresses. Protected by the graph_lock.
334 unsigned long nr_stack_trace_entries;
335 static unsigned long stack_trace[MAX_STACK_TRACE_ENTRIES];
337 static int save_trace(struct stack_trace *trace)
339 trace->nr_entries = 0;
340 trace->max_entries = MAX_STACK_TRACE_ENTRIES - nr_stack_trace_entries;
341 trace->entries = stack_trace + nr_stack_trace_entries;
343 trace->skip = 3;
345 save_stack_trace(trace);
347 trace->max_entries = trace->nr_entries;
349 nr_stack_trace_entries += trace->nr_entries;
351 if (nr_stack_trace_entries == MAX_STACK_TRACE_ENTRIES) {
352 if (!debug_locks_off_graph_unlock())
353 return 0;
355 printk("BUG: MAX_STACK_TRACE_ENTRIES too low!\n");
356 printk("turning off the locking correctness validator.\n");
357 dump_stack();
359 return 0;
362 return 1;
365 unsigned int nr_hardirq_chains;
366 unsigned int nr_softirq_chains;
367 unsigned int nr_process_chains;
368 unsigned int max_lockdep_depth;
369 unsigned int max_recursion_depth;
371 #ifdef CONFIG_DEBUG_LOCKDEP
373 * We cannot printk in early bootup code. Not even early_printk()
374 * might work. So we mark any initialization errors and printk
375 * about it later on, in lockdep_info().
377 static int lockdep_init_error;
378 static unsigned long lockdep_init_trace_data[20];
379 static struct stack_trace lockdep_init_trace = {
380 .max_entries = ARRAY_SIZE(lockdep_init_trace_data),
381 .entries = lockdep_init_trace_data,
385 * Various lockdep statistics:
387 atomic_t chain_lookup_hits;
388 atomic_t chain_lookup_misses;
389 atomic_t hardirqs_on_events;
390 atomic_t hardirqs_off_events;
391 atomic_t redundant_hardirqs_on;
392 atomic_t redundant_hardirqs_off;
393 atomic_t softirqs_on_events;
394 atomic_t softirqs_off_events;
395 atomic_t redundant_softirqs_on;
396 atomic_t redundant_softirqs_off;
397 atomic_t nr_unused_locks;
398 atomic_t nr_cyclic_checks;
399 atomic_t nr_cyclic_check_recursions;
400 atomic_t nr_find_usage_forwards_checks;
401 atomic_t nr_find_usage_forwards_recursions;
402 atomic_t nr_find_usage_backwards_checks;
403 atomic_t nr_find_usage_backwards_recursions;
404 # define debug_atomic_inc(ptr) atomic_inc(ptr)
405 # define debug_atomic_dec(ptr) atomic_dec(ptr)
406 # define debug_atomic_read(ptr) atomic_read(ptr)
407 #else
408 # define debug_atomic_inc(ptr) do { } while (0)
409 # define debug_atomic_dec(ptr) do { } while (0)
410 # define debug_atomic_read(ptr) 0
411 #endif
414 * Locking printouts:
417 static const char *usage_str[] =
419 [LOCK_USED] = "initial-use ",
420 [LOCK_USED_IN_HARDIRQ] = "in-hardirq-W",
421 [LOCK_USED_IN_SOFTIRQ] = "in-softirq-W",
422 [LOCK_ENABLED_SOFTIRQS] = "softirq-on-W",
423 [LOCK_ENABLED_HARDIRQS] = "hardirq-on-W",
424 [LOCK_USED_IN_HARDIRQ_READ] = "in-hardirq-R",
425 [LOCK_USED_IN_SOFTIRQ_READ] = "in-softirq-R",
426 [LOCK_ENABLED_SOFTIRQS_READ] = "softirq-on-R",
427 [LOCK_ENABLED_HARDIRQS_READ] = "hardirq-on-R",
430 const char * __get_key_name(struct lockdep_subclass_key *key, char *str)
432 return kallsyms_lookup((unsigned long)key, NULL, NULL, NULL, str);
435 void
436 get_usage_chars(struct lock_class *class, char *c1, char *c2, char *c3, char *c4)
438 *c1 = '.', *c2 = '.', *c3 = '.', *c4 = '.';
440 if (class->usage_mask & LOCKF_USED_IN_HARDIRQ)
441 *c1 = '+';
442 else
443 if (class->usage_mask & LOCKF_ENABLED_HARDIRQS)
444 *c1 = '-';
446 if (class->usage_mask & LOCKF_USED_IN_SOFTIRQ)
447 *c2 = '+';
448 else
449 if (class->usage_mask & LOCKF_ENABLED_SOFTIRQS)
450 *c2 = '-';
452 if (class->usage_mask & LOCKF_ENABLED_HARDIRQS_READ)
453 *c3 = '-';
454 if (class->usage_mask & LOCKF_USED_IN_HARDIRQ_READ) {
455 *c3 = '+';
456 if (class->usage_mask & LOCKF_ENABLED_HARDIRQS_READ)
457 *c3 = '?';
460 if (class->usage_mask & LOCKF_ENABLED_SOFTIRQS_READ)
461 *c4 = '-';
462 if (class->usage_mask & LOCKF_USED_IN_SOFTIRQ_READ) {
463 *c4 = '+';
464 if (class->usage_mask & LOCKF_ENABLED_SOFTIRQS_READ)
465 *c4 = '?';
469 static void print_lock_name(struct lock_class *class)
471 char str[KSYM_NAME_LEN], c1, c2, c3, c4;
472 const char *name;
474 get_usage_chars(class, &c1, &c2, &c3, &c4);
476 name = class->name;
477 if (!name) {
478 name = __get_key_name(class->key, str);
479 printk(" (%s", name);
480 } else {
481 printk(" (%s", name);
482 if (class->name_version > 1)
483 printk("#%d", class->name_version);
484 if (class->subclass)
485 printk("/%d", class->subclass);
487 printk("){%c%c%c%c}", c1, c2, c3, c4);
490 static void print_lockdep_cache(struct lockdep_map *lock)
492 const char *name;
493 char str[KSYM_NAME_LEN];
495 name = lock->name;
496 if (!name)
497 name = __get_key_name(lock->key->subkeys, str);
499 printk("%s", name);
502 static void print_lock(struct held_lock *hlock)
504 print_lock_name(hlock->class);
505 printk(", at: ");
506 print_ip_sym(hlock->acquire_ip);
509 static void lockdep_print_held_locks(struct task_struct *curr)
511 int i, depth = curr->lockdep_depth;
513 if (!depth) {
514 printk("no locks held by %s/%d.\n", curr->comm, task_pid_nr(curr));
515 return;
517 printk("%d lock%s held by %s/%d:\n",
518 depth, depth > 1 ? "s" : "", curr->comm, task_pid_nr(curr));
520 for (i = 0; i < depth; i++) {
521 printk(" #%d: ", i);
522 print_lock(curr->held_locks + i);
526 static void print_lock_class_header(struct lock_class *class, int depth)
528 int bit;
530 printk("%*s->", depth, "");
531 print_lock_name(class);
532 printk(" ops: %lu", class->ops);
533 printk(" {\n");
535 for (bit = 0; bit < LOCK_USAGE_STATES; bit++) {
536 if (class->usage_mask & (1 << bit)) {
537 int len = depth;
539 len += printk("%*s %s", depth, "", usage_str[bit]);
540 len += printk(" at:\n");
541 print_stack_trace(class->usage_traces + bit, len);
544 printk("%*s }\n", depth, "");
546 printk("%*s ... key at: ",depth,"");
547 print_ip_sym((unsigned long)class->key);
551 * printk all lock dependencies starting at <entry>:
553 static void print_lock_dependencies(struct lock_class *class, int depth)
555 struct lock_list *entry;
557 if (DEBUG_LOCKS_WARN_ON(depth >= 20))
558 return;
560 print_lock_class_header(class, depth);
562 list_for_each_entry(entry, &class->locks_after, entry) {
563 if (DEBUG_LOCKS_WARN_ON(!entry->class))
564 return;
566 print_lock_dependencies(entry->class, depth + 1);
568 printk("%*s ... acquired at:\n",depth,"");
569 print_stack_trace(&entry->trace, 2);
570 printk("\n");
574 static void print_kernel_version(void)
576 printk("%s %.*s\n", init_utsname()->release,
577 (int)strcspn(init_utsname()->version, " "),
578 init_utsname()->version);
581 static int very_verbose(struct lock_class *class)
583 #if VERY_VERBOSE
584 return class_filter(class);
585 #endif
586 return 0;
590 * Is this the address of a static object:
592 static int static_obj(void *obj)
594 unsigned long start = (unsigned long) &_stext,
595 end = (unsigned long) &_end,
596 addr = (unsigned long) obj;
597 #ifdef CONFIG_SMP
598 int i;
599 #endif
602 * static variable?
604 if ((addr >= start) && (addr < end))
605 return 1;
607 #ifdef CONFIG_SMP
609 * percpu var?
611 for_each_possible_cpu(i) {
612 start = (unsigned long) &__per_cpu_start + per_cpu_offset(i);
613 end = (unsigned long) &__per_cpu_start + PERCPU_ENOUGH_ROOM
614 + per_cpu_offset(i);
616 if ((addr >= start) && (addr < end))
617 return 1;
619 #endif
622 * module var?
624 return is_module_address(addr);
628 * To make lock name printouts unique, we calculate a unique
629 * class->name_version generation counter:
631 static int count_matching_names(struct lock_class *new_class)
633 struct lock_class *class;
634 int count = 0;
636 if (!new_class->name)
637 return 0;
639 list_for_each_entry(class, &all_lock_classes, lock_entry) {
640 if (new_class->key - new_class->subclass == class->key)
641 return class->name_version;
642 if (class->name && !strcmp(class->name, new_class->name))
643 count = max(count, class->name_version);
646 return count + 1;
650 * Register a lock's class in the hash-table, if the class is not present
651 * yet. Otherwise we look it up. We cache the result in the lock object
652 * itself, so actual lookup of the hash should be once per lock object.
654 static inline struct lock_class *
655 look_up_lock_class(struct lockdep_map *lock, unsigned int subclass)
657 struct lockdep_subclass_key *key;
658 struct list_head *hash_head;
659 struct lock_class *class;
661 #ifdef CONFIG_DEBUG_LOCKDEP
663 * If the architecture calls into lockdep before initializing
664 * the hashes then we'll warn about it later. (we cannot printk
665 * right now)
667 if (unlikely(!lockdep_initialized)) {
668 lockdep_init();
669 lockdep_init_error = 1;
670 save_stack_trace(&lockdep_init_trace);
672 #endif
675 * Static locks do not have their class-keys yet - for them the key
676 * is the lock object itself:
678 if (unlikely(!lock->key))
679 lock->key = (void *)lock;
682 * NOTE: the class-key must be unique. For dynamic locks, a static
683 * lock_class_key variable is passed in through the mutex_init()
684 * (or spin_lock_init()) call - which acts as the key. For static
685 * locks we use the lock object itself as the key.
687 BUILD_BUG_ON(sizeof(struct lock_class_key) >
688 sizeof(struct lockdep_map));
690 key = lock->key->subkeys + subclass;
692 hash_head = classhashentry(key);
695 * We can walk the hash lockfree, because the hash only
696 * grows, and we are careful when adding entries to the end:
698 list_for_each_entry(class, hash_head, hash_entry) {
699 if (class->key == key) {
700 WARN_ON_ONCE(class->name != lock->name);
701 return class;
705 return NULL;
709 * Register a lock's class in the hash-table, if the class is not present
710 * yet. Otherwise we look it up. We cache the result in the lock object
711 * itself, so actual lookup of the hash should be once per lock object.
713 static inline struct lock_class *
714 register_lock_class(struct lockdep_map *lock, unsigned int subclass, int force)
716 struct lockdep_subclass_key *key;
717 struct list_head *hash_head;
718 struct lock_class *class;
719 unsigned long flags;
721 class = look_up_lock_class(lock, subclass);
722 if (likely(class))
723 return class;
726 * Debug-check: all keys must be persistent!
728 if (!static_obj(lock->key)) {
729 debug_locks_off();
730 printk("INFO: trying to register non-static key.\n");
731 printk("the code is fine but needs lockdep annotation.\n");
732 printk("turning off the locking correctness validator.\n");
733 dump_stack();
735 return NULL;
738 key = lock->key->subkeys + subclass;
739 hash_head = classhashentry(key);
741 raw_local_irq_save(flags);
742 if (!graph_lock()) {
743 raw_local_irq_restore(flags);
744 return NULL;
747 * We have to do the hash-walk again, to avoid races
748 * with another CPU:
750 list_for_each_entry(class, hash_head, hash_entry)
751 if (class->key == key)
752 goto out_unlock_set;
754 * Allocate a new key from the static array, and add it to
755 * the hash:
757 if (nr_lock_classes >= MAX_LOCKDEP_KEYS) {
758 if (!debug_locks_off_graph_unlock()) {
759 raw_local_irq_restore(flags);
760 return NULL;
762 raw_local_irq_restore(flags);
764 printk("BUG: MAX_LOCKDEP_KEYS too low!\n");
765 printk("turning off the locking correctness validator.\n");
766 return NULL;
768 class = lock_classes + nr_lock_classes++;
769 debug_atomic_inc(&nr_unused_locks);
770 class->key = key;
771 class->name = lock->name;
772 class->subclass = subclass;
773 INIT_LIST_HEAD(&class->lock_entry);
774 INIT_LIST_HEAD(&class->locks_before);
775 INIT_LIST_HEAD(&class->locks_after);
776 class->name_version = count_matching_names(class);
778 * We use RCU's safe list-add method to make
779 * parallel walking of the hash-list safe:
781 list_add_tail_rcu(&class->hash_entry, hash_head);
783 * Add it to the global list of classes:
785 list_add_tail_rcu(&class->lock_entry, &all_lock_classes);
787 if (verbose(class)) {
788 graph_unlock();
789 raw_local_irq_restore(flags);
791 printk("\nnew class %p: %s", class->key, class->name);
792 if (class->name_version > 1)
793 printk("#%d", class->name_version);
794 printk("\n");
795 dump_stack();
797 raw_local_irq_save(flags);
798 if (!graph_lock()) {
799 raw_local_irq_restore(flags);
800 return NULL;
803 out_unlock_set:
804 graph_unlock();
805 raw_local_irq_restore(flags);
807 if (!subclass || force)
808 lock->class_cache = class;
810 if (DEBUG_LOCKS_WARN_ON(class->subclass != subclass))
811 return NULL;
813 return class;
816 #ifdef CONFIG_PROVE_LOCKING
818 * Allocate a lockdep entry. (assumes the graph_lock held, returns
819 * with NULL on failure)
821 static struct lock_list *alloc_list_entry(void)
823 if (nr_list_entries >= MAX_LOCKDEP_ENTRIES) {
824 if (!debug_locks_off_graph_unlock())
825 return NULL;
827 printk("BUG: MAX_LOCKDEP_ENTRIES too low!\n");
828 printk("turning off the locking correctness validator.\n");
829 return NULL;
831 return list_entries + nr_list_entries++;
835 * Add a new dependency to the head of the list:
837 static int add_lock_to_list(struct lock_class *class, struct lock_class *this,
838 struct list_head *head, unsigned long ip, int distance)
840 struct lock_list *entry;
842 * Lock not present yet - get a new dependency struct and
843 * add it to the list:
845 entry = alloc_list_entry();
846 if (!entry)
847 return 0;
849 entry->class = this;
850 entry->distance = distance;
851 if (!save_trace(&entry->trace))
852 return 0;
855 * Since we never remove from the dependency list, the list can
856 * be walked lockless by other CPUs, it's only allocation
857 * that must be protected by the spinlock. But this also means
858 * we must make new entries visible only once writes to the
859 * entry become visible - hence the RCU op:
861 list_add_tail_rcu(&entry->entry, head);
863 return 1;
867 * Recursive, forwards-direction lock-dependency checking, used for
868 * both noncyclic checking and for hardirq-unsafe/softirq-unsafe
869 * checking.
871 * (to keep the stackframe of the recursive functions small we
872 * use these global variables, and we also mark various helper
873 * functions as noinline.)
875 static struct held_lock *check_source, *check_target;
878 * Print a dependency chain entry (this is only done when a deadlock
879 * has been detected):
881 static noinline int
882 print_circular_bug_entry(struct lock_list *target, unsigned int depth)
884 if (debug_locks_silent)
885 return 0;
886 printk("\n-> #%u", depth);
887 print_lock_name(target->class);
888 printk(":\n");
889 print_stack_trace(&target->trace, 6);
891 return 0;
895 * When a circular dependency is detected, print the
896 * header first:
898 static noinline int
899 print_circular_bug_header(struct lock_list *entry, unsigned int depth)
901 struct task_struct *curr = current;
903 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
904 return 0;
906 printk("\n=======================================================\n");
907 printk( "[ INFO: possible circular locking dependency detected ]\n");
908 print_kernel_version();
909 printk( "-------------------------------------------------------\n");
910 printk("%s/%d is trying to acquire lock:\n",
911 curr->comm, task_pid_nr(curr));
912 print_lock(check_source);
913 printk("\nbut task is already holding lock:\n");
914 print_lock(check_target);
915 printk("\nwhich lock already depends on the new lock.\n\n");
916 printk("\nthe existing dependency chain (in reverse order) is:\n");
918 print_circular_bug_entry(entry, depth);
920 return 0;
923 static noinline int print_circular_bug_tail(void)
925 struct task_struct *curr = current;
926 struct lock_list this;
928 if (debug_locks_silent)
929 return 0;
931 this.class = check_source->class;
932 if (!save_trace(&this.trace))
933 return 0;
935 print_circular_bug_entry(&this, 0);
937 printk("\nother info that might help us debug this:\n\n");
938 lockdep_print_held_locks(curr);
940 printk("\nstack backtrace:\n");
941 dump_stack();
943 return 0;
946 #define RECURSION_LIMIT 40
948 static int noinline print_infinite_recursion_bug(void)
950 if (!debug_locks_off_graph_unlock())
951 return 0;
953 WARN_ON(1);
955 return 0;
959 * Prove that the dependency graph starting at <entry> can not
960 * lead to <target>. Print an error and return 0 if it does.
962 static noinline int
963 check_noncircular(struct lock_class *source, unsigned int depth)
965 struct lock_list *entry;
967 debug_atomic_inc(&nr_cyclic_check_recursions);
968 if (depth > max_recursion_depth)
969 max_recursion_depth = depth;
970 if (depth >= RECURSION_LIMIT)
971 return print_infinite_recursion_bug();
973 * Check this lock's dependency list:
975 list_for_each_entry(entry, &source->locks_after, entry) {
976 if (entry->class == check_target->class)
977 return print_circular_bug_header(entry, depth+1);
978 debug_atomic_inc(&nr_cyclic_checks);
979 if (!check_noncircular(entry->class, depth+1))
980 return print_circular_bug_entry(entry, depth+1);
982 return 1;
985 #ifdef CONFIG_TRACE_IRQFLAGS
987 * Forwards and backwards subgraph searching, for the purposes of
988 * proving that two subgraphs can be connected by a new dependency
989 * without creating any illegal irq-safe -> irq-unsafe lock dependency.
991 static enum lock_usage_bit find_usage_bit;
992 static struct lock_class *forwards_match, *backwards_match;
995 * Find a node in the forwards-direction dependency sub-graph starting
996 * at <source> that matches <find_usage_bit>.
998 * Return 2 if such a node exists in the subgraph, and put that node
999 * into <forwards_match>.
1001 * Return 1 otherwise and keep <forwards_match> unchanged.
1002 * Return 0 on error.
1004 static noinline int
1005 find_usage_forwards(struct lock_class *source, unsigned int depth)
1007 struct lock_list *entry;
1008 int ret;
1010 if (depth > max_recursion_depth)
1011 max_recursion_depth = depth;
1012 if (depth >= RECURSION_LIMIT)
1013 return print_infinite_recursion_bug();
1015 debug_atomic_inc(&nr_find_usage_forwards_checks);
1016 if (source->usage_mask & (1 << find_usage_bit)) {
1017 forwards_match = source;
1018 return 2;
1022 * Check this lock's dependency list:
1024 list_for_each_entry(entry, &source->locks_after, entry) {
1025 debug_atomic_inc(&nr_find_usage_forwards_recursions);
1026 ret = find_usage_forwards(entry->class, depth+1);
1027 if (ret == 2 || ret == 0)
1028 return ret;
1030 return 1;
1034 * Find a node in the backwards-direction dependency sub-graph starting
1035 * at <source> that matches <find_usage_bit>.
1037 * Return 2 if such a node exists in the subgraph, and put that node
1038 * into <backwards_match>.
1040 * Return 1 otherwise and keep <backwards_match> unchanged.
1041 * Return 0 on error.
1043 static noinline int
1044 find_usage_backwards(struct lock_class *source, unsigned int depth)
1046 struct lock_list *entry;
1047 int ret;
1049 if (!__raw_spin_is_locked(&lockdep_lock))
1050 return DEBUG_LOCKS_WARN_ON(1);
1052 if (depth > max_recursion_depth)
1053 max_recursion_depth = depth;
1054 if (depth >= RECURSION_LIMIT)
1055 return print_infinite_recursion_bug();
1057 debug_atomic_inc(&nr_find_usage_backwards_checks);
1058 if (source->usage_mask & (1 << find_usage_bit)) {
1059 backwards_match = source;
1060 return 2;
1064 * Check this lock's dependency list:
1066 list_for_each_entry(entry, &source->locks_before, entry) {
1067 debug_atomic_inc(&nr_find_usage_backwards_recursions);
1068 ret = find_usage_backwards(entry->class, depth+1);
1069 if (ret == 2 || ret == 0)
1070 return ret;
1072 return 1;
1075 static int
1076 print_bad_irq_dependency(struct task_struct *curr,
1077 struct held_lock *prev,
1078 struct held_lock *next,
1079 enum lock_usage_bit bit1,
1080 enum lock_usage_bit bit2,
1081 const char *irqclass)
1083 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1084 return 0;
1086 printk("\n======================================================\n");
1087 printk( "[ INFO: %s-safe -> %s-unsafe lock order detected ]\n",
1088 irqclass, irqclass);
1089 print_kernel_version();
1090 printk( "------------------------------------------------------\n");
1091 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] is trying to acquire:\n",
1092 curr->comm, task_pid_nr(curr),
1093 curr->hardirq_context, hardirq_count() >> HARDIRQ_SHIFT,
1094 curr->softirq_context, softirq_count() >> SOFTIRQ_SHIFT,
1095 curr->hardirqs_enabled,
1096 curr->softirqs_enabled);
1097 print_lock(next);
1099 printk("\nand this task is already holding:\n");
1100 print_lock(prev);
1101 printk("which would create a new lock dependency:\n");
1102 print_lock_name(prev->class);
1103 printk(" ->");
1104 print_lock_name(next->class);
1105 printk("\n");
1107 printk("\nbut this new dependency connects a %s-irq-safe lock:\n",
1108 irqclass);
1109 print_lock_name(backwards_match);
1110 printk("\n... which became %s-irq-safe at:\n", irqclass);
1112 print_stack_trace(backwards_match->usage_traces + bit1, 1);
1114 printk("\nto a %s-irq-unsafe lock:\n", irqclass);
1115 print_lock_name(forwards_match);
1116 printk("\n... which became %s-irq-unsafe at:\n", irqclass);
1117 printk("...");
1119 print_stack_trace(forwards_match->usage_traces + bit2, 1);
1121 printk("\nother info that might help us debug this:\n\n");
1122 lockdep_print_held_locks(curr);
1124 printk("\nthe %s-irq-safe lock's dependencies:\n", irqclass);
1125 print_lock_dependencies(backwards_match, 0);
1127 printk("\nthe %s-irq-unsafe lock's dependencies:\n", irqclass);
1128 print_lock_dependencies(forwards_match, 0);
1130 printk("\nstack backtrace:\n");
1131 dump_stack();
1133 return 0;
1136 static int
1137 check_usage(struct task_struct *curr, struct held_lock *prev,
1138 struct held_lock *next, enum lock_usage_bit bit_backwards,
1139 enum lock_usage_bit bit_forwards, const char *irqclass)
1141 int ret;
1143 find_usage_bit = bit_backwards;
1144 /* fills in <backwards_match> */
1145 ret = find_usage_backwards(prev->class, 0);
1146 if (!ret || ret == 1)
1147 return ret;
1149 find_usage_bit = bit_forwards;
1150 ret = find_usage_forwards(next->class, 0);
1151 if (!ret || ret == 1)
1152 return ret;
1153 /* ret == 2 */
1154 return print_bad_irq_dependency(curr, prev, next,
1155 bit_backwards, bit_forwards, irqclass);
1158 static int
1159 check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1160 struct held_lock *next)
1163 * Prove that the new dependency does not connect a hardirq-safe
1164 * lock with a hardirq-unsafe lock - to achieve this we search
1165 * the backwards-subgraph starting at <prev>, and the
1166 * forwards-subgraph starting at <next>:
1168 if (!check_usage(curr, prev, next, LOCK_USED_IN_HARDIRQ,
1169 LOCK_ENABLED_HARDIRQS, "hard"))
1170 return 0;
1173 * Prove that the new dependency does not connect a hardirq-safe-read
1174 * lock with a hardirq-unsafe lock - to achieve this we search
1175 * the backwards-subgraph starting at <prev>, and the
1176 * forwards-subgraph starting at <next>:
1178 if (!check_usage(curr, prev, next, LOCK_USED_IN_HARDIRQ_READ,
1179 LOCK_ENABLED_HARDIRQS, "hard-read"))
1180 return 0;
1183 * Prove that the new dependency does not connect a softirq-safe
1184 * lock with a softirq-unsafe lock - to achieve this we search
1185 * the backwards-subgraph starting at <prev>, and the
1186 * forwards-subgraph starting at <next>:
1188 if (!check_usage(curr, prev, next, LOCK_USED_IN_SOFTIRQ,
1189 LOCK_ENABLED_SOFTIRQS, "soft"))
1190 return 0;
1192 * Prove that the new dependency does not connect a softirq-safe-read
1193 * lock with a softirq-unsafe lock - to achieve this we search
1194 * the backwards-subgraph starting at <prev>, and the
1195 * forwards-subgraph starting at <next>:
1197 if (!check_usage(curr, prev, next, LOCK_USED_IN_SOFTIRQ_READ,
1198 LOCK_ENABLED_SOFTIRQS, "soft"))
1199 return 0;
1201 return 1;
1204 static void inc_chains(void)
1206 if (current->hardirq_context)
1207 nr_hardirq_chains++;
1208 else {
1209 if (current->softirq_context)
1210 nr_softirq_chains++;
1211 else
1212 nr_process_chains++;
1216 #else
1218 static inline int
1219 check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1220 struct held_lock *next)
1222 return 1;
1225 static inline void inc_chains(void)
1227 nr_process_chains++;
1230 #endif
1232 static int
1233 print_deadlock_bug(struct task_struct *curr, struct held_lock *prev,
1234 struct held_lock *next)
1236 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1237 return 0;
1239 printk("\n=============================================\n");
1240 printk( "[ INFO: possible recursive locking detected ]\n");
1241 print_kernel_version();
1242 printk( "---------------------------------------------\n");
1243 printk("%s/%d is trying to acquire lock:\n",
1244 curr->comm, task_pid_nr(curr));
1245 print_lock(next);
1246 printk("\nbut task is already holding lock:\n");
1247 print_lock(prev);
1249 printk("\nother info that might help us debug this:\n");
1250 lockdep_print_held_locks(curr);
1252 printk("\nstack backtrace:\n");
1253 dump_stack();
1255 return 0;
1259 * Check whether we are holding such a class already.
1261 * (Note that this has to be done separately, because the graph cannot
1262 * detect such classes of deadlocks.)
1264 * Returns: 0 on deadlock detected, 1 on OK, 2 on recursive read
1266 static int
1267 check_deadlock(struct task_struct *curr, struct held_lock *next,
1268 struct lockdep_map *next_instance, int read)
1270 struct held_lock *prev;
1271 int i;
1273 for (i = 0; i < curr->lockdep_depth; i++) {
1274 prev = curr->held_locks + i;
1275 if (prev->class != next->class)
1276 continue;
1278 * Allow read-after-read recursion of the same
1279 * lock class (i.e. read_lock(lock)+read_lock(lock)):
1281 if ((read == 2) && prev->read)
1282 return 2;
1283 return print_deadlock_bug(curr, prev, next);
1285 return 1;
1289 * There was a chain-cache miss, and we are about to add a new dependency
1290 * to a previous lock. We recursively validate the following rules:
1292 * - would the adding of the <prev> -> <next> dependency create a
1293 * circular dependency in the graph? [== circular deadlock]
1295 * - does the new prev->next dependency connect any hardirq-safe lock
1296 * (in the full backwards-subgraph starting at <prev>) with any
1297 * hardirq-unsafe lock (in the full forwards-subgraph starting at
1298 * <next>)? [== illegal lock inversion with hardirq contexts]
1300 * - does the new prev->next dependency connect any softirq-safe lock
1301 * (in the full backwards-subgraph starting at <prev>) with any
1302 * softirq-unsafe lock (in the full forwards-subgraph starting at
1303 * <next>)? [== illegal lock inversion with softirq contexts]
1305 * any of these scenarios could lead to a deadlock.
1307 * Then if all the validations pass, we add the forwards and backwards
1308 * dependency.
1310 static int
1311 check_prev_add(struct task_struct *curr, struct held_lock *prev,
1312 struct held_lock *next, int distance)
1314 struct lock_list *entry;
1315 int ret;
1318 * Prove that the new <prev> -> <next> dependency would not
1319 * create a circular dependency in the graph. (We do this by
1320 * forward-recursing into the graph starting at <next>, and
1321 * checking whether we can reach <prev>.)
1323 * We are using global variables to control the recursion, to
1324 * keep the stackframe size of the recursive functions low:
1326 check_source = next;
1327 check_target = prev;
1328 if (!(check_noncircular(next->class, 0)))
1329 return print_circular_bug_tail();
1331 if (!check_prev_add_irq(curr, prev, next))
1332 return 0;
1335 * For recursive read-locks we do all the dependency checks,
1336 * but we dont store read-triggered dependencies (only
1337 * write-triggered dependencies). This ensures that only the
1338 * write-side dependencies matter, and that if for example a
1339 * write-lock never takes any other locks, then the reads are
1340 * equivalent to a NOP.
1342 if (next->read == 2 || prev->read == 2)
1343 return 1;
1345 * Is the <prev> -> <next> dependency already present?
1347 * (this may occur even though this is a new chain: consider
1348 * e.g. the L1 -> L2 -> L3 -> L4 and the L5 -> L1 -> L2 -> L3
1349 * chains - the second one will be new, but L1 already has
1350 * L2 added to its dependency list, due to the first chain.)
1352 list_for_each_entry(entry, &prev->class->locks_after, entry) {
1353 if (entry->class == next->class) {
1354 if (distance == 1)
1355 entry->distance = 1;
1356 return 2;
1361 * Ok, all validations passed, add the new lock
1362 * to the previous lock's dependency list:
1364 ret = add_lock_to_list(prev->class, next->class,
1365 &prev->class->locks_after, next->acquire_ip, distance);
1367 if (!ret)
1368 return 0;
1370 ret = add_lock_to_list(next->class, prev->class,
1371 &next->class->locks_before, next->acquire_ip, distance);
1372 if (!ret)
1373 return 0;
1376 * Debugging printouts:
1378 if (verbose(prev->class) || verbose(next->class)) {
1379 graph_unlock();
1380 printk("\n new dependency: ");
1381 print_lock_name(prev->class);
1382 printk(" => ");
1383 print_lock_name(next->class);
1384 printk("\n");
1385 dump_stack();
1386 return graph_lock();
1388 return 1;
1392 * Add the dependency to all directly-previous locks that are 'relevant'.
1393 * The ones that are relevant are (in increasing distance from curr):
1394 * all consecutive trylock entries and the final non-trylock entry - or
1395 * the end of this context's lock-chain - whichever comes first.
1397 static int
1398 check_prevs_add(struct task_struct *curr, struct held_lock *next)
1400 int depth = curr->lockdep_depth;
1401 struct held_lock *hlock;
1404 * Debugging checks.
1406 * Depth must not be zero for a non-head lock:
1408 if (!depth)
1409 goto out_bug;
1411 * At least two relevant locks must exist for this
1412 * to be a head:
1414 if (curr->held_locks[depth].irq_context !=
1415 curr->held_locks[depth-1].irq_context)
1416 goto out_bug;
1418 for (;;) {
1419 int distance = curr->lockdep_depth - depth + 1;
1420 hlock = curr->held_locks + depth-1;
1422 * Only non-recursive-read entries get new dependencies
1423 * added:
1425 if (hlock->read != 2) {
1426 if (!check_prev_add(curr, hlock, next, distance))
1427 return 0;
1429 * Stop after the first non-trylock entry,
1430 * as non-trylock entries have added their
1431 * own direct dependencies already, so this
1432 * lock is connected to them indirectly:
1434 if (!hlock->trylock)
1435 break;
1437 depth--;
1439 * End of lock-stack?
1441 if (!depth)
1442 break;
1444 * Stop the search if we cross into another context:
1446 if (curr->held_locks[depth].irq_context !=
1447 curr->held_locks[depth-1].irq_context)
1448 break;
1450 return 1;
1451 out_bug:
1452 if (!debug_locks_off_graph_unlock())
1453 return 0;
1455 WARN_ON(1);
1457 return 0;
1460 unsigned long nr_lock_chains;
1461 static struct lock_chain lock_chains[MAX_LOCKDEP_CHAINS];
1464 * Look up a dependency chain. If the key is not present yet then
1465 * add it and return 1 - in this case the new dependency chain is
1466 * validated. If the key is already hashed, return 0.
1467 * (On return with 1 graph_lock is held.)
1469 static inline int lookup_chain_cache(u64 chain_key, struct lock_class *class)
1471 struct list_head *hash_head = chainhashentry(chain_key);
1472 struct lock_chain *chain;
1474 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1475 return 0;
1477 * We can walk it lock-free, because entries only get added
1478 * to the hash:
1480 list_for_each_entry(chain, hash_head, entry) {
1481 if (chain->chain_key == chain_key) {
1482 cache_hit:
1483 debug_atomic_inc(&chain_lookup_hits);
1484 if (very_verbose(class))
1485 printk("\nhash chain already cached, key: "
1486 "%016Lx tail class: [%p] %s\n",
1487 (unsigned long long)chain_key,
1488 class->key, class->name);
1489 return 0;
1492 if (very_verbose(class))
1493 printk("\nnew hash chain, key: %016Lx tail class: [%p] %s\n",
1494 (unsigned long long)chain_key, class->key, class->name);
1496 * Allocate a new chain entry from the static array, and add
1497 * it to the hash:
1499 if (!graph_lock())
1500 return 0;
1502 * We have to walk the chain again locked - to avoid duplicates:
1504 list_for_each_entry(chain, hash_head, entry) {
1505 if (chain->chain_key == chain_key) {
1506 graph_unlock();
1507 goto cache_hit;
1510 if (unlikely(nr_lock_chains >= MAX_LOCKDEP_CHAINS)) {
1511 if (!debug_locks_off_graph_unlock())
1512 return 0;
1514 printk("BUG: MAX_LOCKDEP_CHAINS too low!\n");
1515 printk("turning off the locking correctness validator.\n");
1516 return 0;
1518 chain = lock_chains + nr_lock_chains++;
1519 chain->chain_key = chain_key;
1520 list_add_tail_rcu(&chain->entry, hash_head);
1521 debug_atomic_inc(&chain_lookup_misses);
1522 inc_chains();
1524 return 1;
1527 static int validate_chain(struct task_struct *curr, struct lockdep_map *lock,
1528 struct held_lock *hlock, int chain_head, u64 chain_key)
1531 * Trylock needs to maintain the stack of held locks, but it
1532 * does not add new dependencies, because trylock can be done
1533 * in any order.
1535 * We look up the chain_key and do the O(N^2) check and update of
1536 * the dependencies only if this is a new dependency chain.
1537 * (If lookup_chain_cache() returns with 1 it acquires
1538 * graph_lock for us)
1540 if (!hlock->trylock && (hlock->check == 2) &&
1541 lookup_chain_cache(chain_key, hlock->class)) {
1543 * Check whether last held lock:
1545 * - is irq-safe, if this lock is irq-unsafe
1546 * - is softirq-safe, if this lock is hardirq-unsafe
1548 * And check whether the new lock's dependency graph
1549 * could lead back to the previous lock.
1551 * any of these scenarios could lead to a deadlock. If
1552 * All validations
1554 int ret = check_deadlock(curr, hlock, lock, hlock->read);
1556 if (!ret)
1557 return 0;
1559 * Mark recursive read, as we jump over it when
1560 * building dependencies (just like we jump over
1561 * trylock entries):
1563 if (ret == 2)
1564 hlock->read = 2;
1566 * Add dependency only if this lock is not the head
1567 * of the chain, and if it's not a secondary read-lock:
1569 if (!chain_head && ret != 2)
1570 if (!check_prevs_add(curr, hlock))
1571 return 0;
1572 graph_unlock();
1573 } else
1574 /* after lookup_chain_cache(): */
1575 if (unlikely(!debug_locks))
1576 return 0;
1578 return 1;
1580 #else
1581 static inline int validate_chain(struct task_struct *curr,
1582 struct lockdep_map *lock, struct held_lock *hlock,
1583 int chain_head, u64 chain_key)
1585 return 1;
1587 #endif
1590 * We are building curr_chain_key incrementally, so double-check
1591 * it from scratch, to make sure that it's done correctly:
1593 static void check_chain_key(struct task_struct *curr)
1595 #ifdef CONFIG_DEBUG_LOCKDEP
1596 struct held_lock *hlock, *prev_hlock = NULL;
1597 unsigned int i, id;
1598 u64 chain_key = 0;
1600 for (i = 0; i < curr->lockdep_depth; i++) {
1601 hlock = curr->held_locks + i;
1602 if (chain_key != hlock->prev_chain_key) {
1603 debug_locks_off();
1604 printk("hm#1, depth: %u [%u], %016Lx != %016Lx\n",
1605 curr->lockdep_depth, i,
1606 (unsigned long long)chain_key,
1607 (unsigned long long)hlock->prev_chain_key);
1608 WARN_ON(1);
1609 return;
1611 id = hlock->class - lock_classes;
1612 if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS))
1613 return;
1615 if (prev_hlock && (prev_hlock->irq_context !=
1616 hlock->irq_context))
1617 chain_key = 0;
1618 chain_key = iterate_chain_key(chain_key, id);
1619 prev_hlock = hlock;
1621 if (chain_key != curr->curr_chain_key) {
1622 debug_locks_off();
1623 printk("hm#2, depth: %u [%u], %016Lx != %016Lx\n",
1624 curr->lockdep_depth, i,
1625 (unsigned long long)chain_key,
1626 (unsigned long long)curr->curr_chain_key);
1627 WARN_ON(1);
1629 #endif
1632 static int
1633 print_usage_bug(struct task_struct *curr, struct held_lock *this,
1634 enum lock_usage_bit prev_bit, enum lock_usage_bit new_bit)
1636 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1637 return 0;
1639 printk("\n=================================\n");
1640 printk( "[ INFO: inconsistent lock state ]\n");
1641 print_kernel_version();
1642 printk( "---------------------------------\n");
1644 printk("inconsistent {%s} -> {%s} usage.\n",
1645 usage_str[prev_bit], usage_str[new_bit]);
1647 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] takes:\n",
1648 curr->comm, task_pid_nr(curr),
1649 trace_hardirq_context(curr), hardirq_count() >> HARDIRQ_SHIFT,
1650 trace_softirq_context(curr), softirq_count() >> SOFTIRQ_SHIFT,
1651 trace_hardirqs_enabled(curr),
1652 trace_softirqs_enabled(curr));
1653 print_lock(this);
1655 printk("{%s} state was registered at:\n", usage_str[prev_bit]);
1656 print_stack_trace(this->class->usage_traces + prev_bit, 1);
1658 print_irqtrace_events(curr);
1659 printk("\nother info that might help us debug this:\n");
1660 lockdep_print_held_locks(curr);
1662 printk("\nstack backtrace:\n");
1663 dump_stack();
1665 return 0;
1669 * Print out an error if an invalid bit is set:
1671 static inline int
1672 valid_state(struct task_struct *curr, struct held_lock *this,
1673 enum lock_usage_bit new_bit, enum lock_usage_bit bad_bit)
1675 if (unlikely(this->class->usage_mask & (1 << bad_bit)))
1676 return print_usage_bug(curr, this, bad_bit, new_bit);
1677 return 1;
1680 static int mark_lock(struct task_struct *curr, struct held_lock *this,
1681 enum lock_usage_bit new_bit);
1683 #ifdef CONFIG_TRACE_IRQFLAGS
1686 * print irq inversion bug:
1688 static int
1689 print_irq_inversion_bug(struct task_struct *curr, struct lock_class *other,
1690 struct held_lock *this, int forwards,
1691 const char *irqclass)
1693 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1694 return 0;
1696 printk("\n=========================================================\n");
1697 printk( "[ INFO: possible irq lock inversion dependency detected ]\n");
1698 print_kernel_version();
1699 printk( "---------------------------------------------------------\n");
1700 printk("%s/%d just changed the state of lock:\n",
1701 curr->comm, task_pid_nr(curr));
1702 print_lock(this);
1703 if (forwards)
1704 printk("but this lock took another, %s-irq-unsafe lock in the past:\n", irqclass);
1705 else
1706 printk("but this lock was taken by another, %s-irq-safe lock in the past:\n", irqclass);
1707 print_lock_name(other);
1708 printk("\n\nand interrupts could create inverse lock ordering between them.\n\n");
1710 printk("\nother info that might help us debug this:\n");
1711 lockdep_print_held_locks(curr);
1713 printk("\nthe first lock's dependencies:\n");
1714 print_lock_dependencies(this->class, 0);
1716 printk("\nthe second lock's dependencies:\n");
1717 print_lock_dependencies(other, 0);
1719 printk("\nstack backtrace:\n");
1720 dump_stack();
1722 return 0;
1726 * Prove that in the forwards-direction subgraph starting at <this>
1727 * there is no lock matching <mask>:
1729 static int
1730 check_usage_forwards(struct task_struct *curr, struct held_lock *this,
1731 enum lock_usage_bit bit, const char *irqclass)
1733 int ret;
1735 find_usage_bit = bit;
1736 /* fills in <forwards_match> */
1737 ret = find_usage_forwards(this->class, 0);
1738 if (!ret || ret == 1)
1739 return ret;
1741 return print_irq_inversion_bug(curr, forwards_match, this, 1, irqclass);
1745 * Prove that in the backwards-direction subgraph starting at <this>
1746 * there is no lock matching <mask>:
1748 static int
1749 check_usage_backwards(struct task_struct *curr, struct held_lock *this,
1750 enum lock_usage_bit bit, const char *irqclass)
1752 int ret;
1754 find_usage_bit = bit;
1755 /* fills in <backwards_match> */
1756 ret = find_usage_backwards(this->class, 0);
1757 if (!ret || ret == 1)
1758 return ret;
1760 return print_irq_inversion_bug(curr, backwards_match, this, 0, irqclass);
1763 void print_irqtrace_events(struct task_struct *curr)
1765 printk("irq event stamp: %u\n", curr->irq_events);
1766 printk("hardirqs last enabled at (%u): ", curr->hardirq_enable_event);
1767 print_ip_sym(curr->hardirq_enable_ip);
1768 printk("hardirqs last disabled at (%u): ", curr->hardirq_disable_event);
1769 print_ip_sym(curr->hardirq_disable_ip);
1770 printk("softirqs last enabled at (%u): ", curr->softirq_enable_event);
1771 print_ip_sym(curr->softirq_enable_ip);
1772 printk("softirqs last disabled at (%u): ", curr->softirq_disable_event);
1773 print_ip_sym(curr->softirq_disable_ip);
1776 static int hardirq_verbose(struct lock_class *class)
1778 #if HARDIRQ_VERBOSE
1779 return class_filter(class);
1780 #endif
1781 return 0;
1784 static int softirq_verbose(struct lock_class *class)
1786 #if SOFTIRQ_VERBOSE
1787 return class_filter(class);
1788 #endif
1789 return 0;
1792 #define STRICT_READ_CHECKS 1
1794 static int mark_lock_irq(struct task_struct *curr, struct held_lock *this,
1795 enum lock_usage_bit new_bit)
1797 int ret = 1;
1799 switch(new_bit) {
1800 case LOCK_USED_IN_HARDIRQ:
1801 if (!valid_state(curr, this, new_bit, LOCK_ENABLED_HARDIRQS))
1802 return 0;
1803 if (!valid_state(curr, this, new_bit,
1804 LOCK_ENABLED_HARDIRQS_READ))
1805 return 0;
1807 * just marked it hardirq-safe, check that this lock
1808 * took no hardirq-unsafe lock in the past:
1810 if (!check_usage_forwards(curr, this,
1811 LOCK_ENABLED_HARDIRQS, "hard"))
1812 return 0;
1813 #if STRICT_READ_CHECKS
1815 * just marked it hardirq-safe, check that this lock
1816 * took no hardirq-unsafe-read lock in the past:
1818 if (!check_usage_forwards(curr, this,
1819 LOCK_ENABLED_HARDIRQS_READ, "hard-read"))
1820 return 0;
1821 #endif
1822 if (hardirq_verbose(this->class))
1823 ret = 2;
1824 break;
1825 case LOCK_USED_IN_SOFTIRQ:
1826 if (!valid_state(curr, this, new_bit, LOCK_ENABLED_SOFTIRQS))
1827 return 0;
1828 if (!valid_state(curr, this, new_bit,
1829 LOCK_ENABLED_SOFTIRQS_READ))
1830 return 0;
1832 * just marked it softirq-safe, check that this lock
1833 * took no softirq-unsafe lock in the past:
1835 if (!check_usage_forwards(curr, this,
1836 LOCK_ENABLED_SOFTIRQS, "soft"))
1837 return 0;
1838 #if STRICT_READ_CHECKS
1840 * just marked it softirq-safe, check that this lock
1841 * took no softirq-unsafe-read lock in the past:
1843 if (!check_usage_forwards(curr, this,
1844 LOCK_ENABLED_SOFTIRQS_READ, "soft-read"))
1845 return 0;
1846 #endif
1847 if (softirq_verbose(this->class))
1848 ret = 2;
1849 break;
1850 case LOCK_USED_IN_HARDIRQ_READ:
1851 if (!valid_state(curr, this, new_bit, LOCK_ENABLED_HARDIRQS))
1852 return 0;
1854 * just marked it hardirq-read-safe, check that this lock
1855 * took no hardirq-unsafe lock in the past:
1857 if (!check_usage_forwards(curr, this,
1858 LOCK_ENABLED_HARDIRQS, "hard"))
1859 return 0;
1860 if (hardirq_verbose(this->class))
1861 ret = 2;
1862 break;
1863 case LOCK_USED_IN_SOFTIRQ_READ:
1864 if (!valid_state(curr, this, new_bit, LOCK_ENABLED_SOFTIRQS))
1865 return 0;
1867 * just marked it softirq-read-safe, check that this lock
1868 * took no softirq-unsafe lock in the past:
1870 if (!check_usage_forwards(curr, this,
1871 LOCK_ENABLED_SOFTIRQS, "soft"))
1872 return 0;
1873 if (softirq_verbose(this->class))
1874 ret = 2;
1875 break;
1876 case LOCK_ENABLED_HARDIRQS:
1877 if (!valid_state(curr, this, new_bit, LOCK_USED_IN_HARDIRQ))
1878 return 0;
1879 if (!valid_state(curr, this, new_bit,
1880 LOCK_USED_IN_HARDIRQ_READ))
1881 return 0;
1883 * just marked it hardirq-unsafe, check that no hardirq-safe
1884 * lock in the system ever took it in the past:
1886 if (!check_usage_backwards(curr, this,
1887 LOCK_USED_IN_HARDIRQ, "hard"))
1888 return 0;
1889 #if STRICT_READ_CHECKS
1891 * just marked it hardirq-unsafe, check that no
1892 * hardirq-safe-read lock in the system ever took
1893 * it in the past:
1895 if (!check_usage_backwards(curr, this,
1896 LOCK_USED_IN_HARDIRQ_READ, "hard-read"))
1897 return 0;
1898 #endif
1899 if (hardirq_verbose(this->class))
1900 ret = 2;
1901 break;
1902 case LOCK_ENABLED_SOFTIRQS:
1903 if (!valid_state(curr, this, new_bit, LOCK_USED_IN_SOFTIRQ))
1904 return 0;
1905 if (!valid_state(curr, this, new_bit,
1906 LOCK_USED_IN_SOFTIRQ_READ))
1907 return 0;
1909 * just marked it softirq-unsafe, check that no softirq-safe
1910 * lock in the system ever took it in the past:
1912 if (!check_usage_backwards(curr, this,
1913 LOCK_USED_IN_SOFTIRQ, "soft"))
1914 return 0;
1915 #if STRICT_READ_CHECKS
1917 * just marked it softirq-unsafe, check that no
1918 * softirq-safe-read lock in the system ever took
1919 * it in the past:
1921 if (!check_usage_backwards(curr, this,
1922 LOCK_USED_IN_SOFTIRQ_READ, "soft-read"))
1923 return 0;
1924 #endif
1925 if (softirq_verbose(this->class))
1926 ret = 2;
1927 break;
1928 case LOCK_ENABLED_HARDIRQS_READ:
1929 if (!valid_state(curr, this, new_bit, LOCK_USED_IN_HARDIRQ))
1930 return 0;
1931 #if STRICT_READ_CHECKS
1933 * just marked it hardirq-read-unsafe, check that no
1934 * hardirq-safe lock in the system ever took it in the past:
1936 if (!check_usage_backwards(curr, this,
1937 LOCK_USED_IN_HARDIRQ, "hard"))
1938 return 0;
1939 #endif
1940 if (hardirq_verbose(this->class))
1941 ret = 2;
1942 break;
1943 case LOCK_ENABLED_SOFTIRQS_READ:
1944 if (!valid_state(curr, this, new_bit, LOCK_USED_IN_SOFTIRQ))
1945 return 0;
1946 #if STRICT_READ_CHECKS
1948 * just marked it softirq-read-unsafe, check that no
1949 * softirq-safe lock in the system ever took it in the past:
1951 if (!check_usage_backwards(curr, this,
1952 LOCK_USED_IN_SOFTIRQ, "soft"))
1953 return 0;
1954 #endif
1955 if (softirq_verbose(this->class))
1956 ret = 2;
1957 break;
1958 default:
1959 WARN_ON(1);
1960 break;
1963 return ret;
1967 * Mark all held locks with a usage bit:
1969 static int
1970 mark_held_locks(struct task_struct *curr, int hardirq)
1972 enum lock_usage_bit usage_bit;
1973 struct held_lock *hlock;
1974 int i;
1976 for (i = 0; i < curr->lockdep_depth; i++) {
1977 hlock = curr->held_locks + i;
1979 if (hardirq) {
1980 if (hlock->read)
1981 usage_bit = LOCK_ENABLED_HARDIRQS_READ;
1982 else
1983 usage_bit = LOCK_ENABLED_HARDIRQS;
1984 } else {
1985 if (hlock->read)
1986 usage_bit = LOCK_ENABLED_SOFTIRQS_READ;
1987 else
1988 usage_bit = LOCK_ENABLED_SOFTIRQS;
1990 if (!mark_lock(curr, hlock, usage_bit))
1991 return 0;
1994 return 1;
1998 * Debugging helper: via this flag we know that we are in
1999 * 'early bootup code', and will warn about any invalid irqs-on event:
2001 static int early_boot_irqs_enabled;
2003 void early_boot_irqs_off(void)
2005 early_boot_irqs_enabled = 0;
2008 void early_boot_irqs_on(void)
2010 early_boot_irqs_enabled = 1;
2014 * Hardirqs will be enabled:
2016 void trace_hardirqs_on(void)
2018 struct task_struct *curr = current;
2019 unsigned long ip;
2021 if (unlikely(!debug_locks || current->lockdep_recursion))
2022 return;
2024 if (DEBUG_LOCKS_WARN_ON(unlikely(!early_boot_irqs_enabled)))
2025 return;
2027 if (unlikely(curr->hardirqs_enabled)) {
2028 debug_atomic_inc(&redundant_hardirqs_on);
2029 return;
2031 /* we'll do an OFF -> ON transition: */
2032 curr->hardirqs_enabled = 1;
2033 ip = (unsigned long) __builtin_return_address(0);
2035 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2036 return;
2037 if (DEBUG_LOCKS_WARN_ON(current->hardirq_context))
2038 return;
2040 * We are going to turn hardirqs on, so set the
2041 * usage bit for all held locks:
2043 if (!mark_held_locks(curr, 1))
2044 return;
2046 * If we have softirqs enabled, then set the usage
2047 * bit for all held locks. (disabled hardirqs prevented
2048 * this bit from being set before)
2050 if (curr->softirqs_enabled)
2051 if (!mark_held_locks(curr, 0))
2052 return;
2054 curr->hardirq_enable_ip = ip;
2055 curr->hardirq_enable_event = ++curr->irq_events;
2056 debug_atomic_inc(&hardirqs_on_events);
2059 EXPORT_SYMBOL(trace_hardirqs_on);
2062 * Hardirqs were disabled:
2064 void trace_hardirqs_off(void)
2066 struct task_struct *curr = current;
2068 if (unlikely(!debug_locks || current->lockdep_recursion))
2069 return;
2071 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2072 return;
2074 if (curr->hardirqs_enabled) {
2076 * We have done an ON -> OFF transition:
2078 curr->hardirqs_enabled = 0;
2079 curr->hardirq_disable_ip = _RET_IP_;
2080 curr->hardirq_disable_event = ++curr->irq_events;
2081 debug_atomic_inc(&hardirqs_off_events);
2082 } else
2083 debug_atomic_inc(&redundant_hardirqs_off);
2086 EXPORT_SYMBOL(trace_hardirqs_off);
2089 * Softirqs will be enabled:
2091 void trace_softirqs_on(unsigned long ip)
2093 struct task_struct *curr = current;
2095 if (unlikely(!debug_locks))
2096 return;
2098 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2099 return;
2101 if (curr->softirqs_enabled) {
2102 debug_atomic_inc(&redundant_softirqs_on);
2103 return;
2107 * We'll do an OFF -> ON transition:
2109 curr->softirqs_enabled = 1;
2110 curr->softirq_enable_ip = ip;
2111 curr->softirq_enable_event = ++curr->irq_events;
2112 debug_atomic_inc(&softirqs_on_events);
2114 * We are going to turn softirqs on, so set the
2115 * usage bit for all held locks, if hardirqs are
2116 * enabled too:
2118 if (curr->hardirqs_enabled)
2119 mark_held_locks(curr, 0);
2123 * Softirqs were disabled:
2125 void trace_softirqs_off(unsigned long ip)
2127 struct task_struct *curr = current;
2129 if (unlikely(!debug_locks))
2130 return;
2132 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2133 return;
2135 if (curr->softirqs_enabled) {
2137 * We have done an ON -> OFF transition:
2139 curr->softirqs_enabled = 0;
2140 curr->softirq_disable_ip = ip;
2141 curr->softirq_disable_event = ++curr->irq_events;
2142 debug_atomic_inc(&softirqs_off_events);
2143 DEBUG_LOCKS_WARN_ON(!softirq_count());
2144 } else
2145 debug_atomic_inc(&redundant_softirqs_off);
2148 static int mark_irqflags(struct task_struct *curr, struct held_lock *hlock)
2151 * If non-trylock use in a hardirq or softirq context, then
2152 * mark the lock as used in these contexts:
2154 if (!hlock->trylock) {
2155 if (hlock->read) {
2156 if (curr->hardirq_context)
2157 if (!mark_lock(curr, hlock,
2158 LOCK_USED_IN_HARDIRQ_READ))
2159 return 0;
2160 if (curr->softirq_context)
2161 if (!mark_lock(curr, hlock,
2162 LOCK_USED_IN_SOFTIRQ_READ))
2163 return 0;
2164 } else {
2165 if (curr->hardirq_context)
2166 if (!mark_lock(curr, hlock, LOCK_USED_IN_HARDIRQ))
2167 return 0;
2168 if (curr->softirq_context)
2169 if (!mark_lock(curr, hlock, LOCK_USED_IN_SOFTIRQ))
2170 return 0;
2173 if (!hlock->hardirqs_off) {
2174 if (hlock->read) {
2175 if (!mark_lock(curr, hlock,
2176 LOCK_ENABLED_HARDIRQS_READ))
2177 return 0;
2178 if (curr->softirqs_enabled)
2179 if (!mark_lock(curr, hlock,
2180 LOCK_ENABLED_SOFTIRQS_READ))
2181 return 0;
2182 } else {
2183 if (!mark_lock(curr, hlock,
2184 LOCK_ENABLED_HARDIRQS))
2185 return 0;
2186 if (curr->softirqs_enabled)
2187 if (!mark_lock(curr, hlock,
2188 LOCK_ENABLED_SOFTIRQS))
2189 return 0;
2193 return 1;
2196 static int separate_irq_context(struct task_struct *curr,
2197 struct held_lock *hlock)
2199 unsigned int depth = curr->lockdep_depth;
2202 * Keep track of points where we cross into an interrupt context:
2204 hlock->irq_context = 2*(curr->hardirq_context ? 1 : 0) +
2205 curr->softirq_context;
2206 if (depth) {
2207 struct held_lock *prev_hlock;
2209 prev_hlock = curr->held_locks + depth-1;
2211 * If we cross into another context, reset the
2212 * hash key (this also prevents the checking and the
2213 * adding of the dependency to 'prev'):
2215 if (prev_hlock->irq_context != hlock->irq_context)
2216 return 1;
2218 return 0;
2221 #else
2223 static inline
2224 int mark_lock_irq(struct task_struct *curr, struct held_lock *this,
2225 enum lock_usage_bit new_bit)
2227 WARN_ON(1);
2228 return 1;
2231 static inline int mark_irqflags(struct task_struct *curr,
2232 struct held_lock *hlock)
2234 return 1;
2237 static inline int separate_irq_context(struct task_struct *curr,
2238 struct held_lock *hlock)
2240 return 0;
2243 #endif
2246 * Mark a lock with a usage bit, and validate the state transition:
2248 static int mark_lock(struct task_struct *curr, struct held_lock *this,
2249 enum lock_usage_bit new_bit)
2251 unsigned int new_mask = 1 << new_bit, ret = 1;
2254 * If already set then do not dirty the cacheline,
2255 * nor do any checks:
2257 if (likely(this->class->usage_mask & new_mask))
2258 return 1;
2260 if (!graph_lock())
2261 return 0;
2263 * Make sure we didnt race:
2265 if (unlikely(this->class->usage_mask & new_mask)) {
2266 graph_unlock();
2267 return 1;
2270 this->class->usage_mask |= new_mask;
2272 if (!save_trace(this->class->usage_traces + new_bit))
2273 return 0;
2275 switch (new_bit) {
2276 case LOCK_USED_IN_HARDIRQ:
2277 case LOCK_USED_IN_SOFTIRQ:
2278 case LOCK_USED_IN_HARDIRQ_READ:
2279 case LOCK_USED_IN_SOFTIRQ_READ:
2280 case LOCK_ENABLED_HARDIRQS:
2281 case LOCK_ENABLED_SOFTIRQS:
2282 case LOCK_ENABLED_HARDIRQS_READ:
2283 case LOCK_ENABLED_SOFTIRQS_READ:
2284 ret = mark_lock_irq(curr, this, new_bit);
2285 if (!ret)
2286 return 0;
2287 break;
2288 case LOCK_USED:
2289 debug_atomic_dec(&nr_unused_locks);
2290 break;
2291 default:
2292 if (!debug_locks_off_graph_unlock())
2293 return 0;
2294 WARN_ON(1);
2295 return 0;
2298 graph_unlock();
2301 * We must printk outside of the graph_lock:
2303 if (ret == 2) {
2304 printk("\nmarked lock as {%s}:\n", usage_str[new_bit]);
2305 print_lock(this);
2306 print_irqtrace_events(curr);
2307 dump_stack();
2310 return ret;
2314 * Initialize a lock instance's lock-class mapping info:
2316 void lockdep_init_map(struct lockdep_map *lock, const char *name,
2317 struct lock_class_key *key, int subclass)
2319 if (unlikely(!debug_locks))
2320 return;
2322 if (DEBUG_LOCKS_WARN_ON(!key))
2323 return;
2324 if (DEBUG_LOCKS_WARN_ON(!name))
2325 return;
2327 * Sanity check, the lock-class key must be persistent:
2329 if (!static_obj(key)) {
2330 printk("BUG: key %p not in .data!\n", key);
2331 DEBUG_LOCKS_WARN_ON(1);
2332 return;
2334 lock->name = name;
2335 lock->key = key;
2336 lock->class_cache = NULL;
2337 #ifdef CONFIG_LOCK_STAT
2338 lock->cpu = raw_smp_processor_id();
2339 #endif
2340 if (subclass)
2341 register_lock_class(lock, subclass, 1);
2344 EXPORT_SYMBOL_GPL(lockdep_init_map);
2347 * This gets called for every mutex_lock*()/spin_lock*() operation.
2348 * We maintain the dependency maps and validate the locking attempt:
2350 static int __lock_acquire(struct lockdep_map *lock, unsigned int subclass,
2351 int trylock, int read, int check, int hardirqs_off,
2352 unsigned long ip)
2354 struct task_struct *curr = current;
2355 struct lock_class *class = NULL;
2356 struct held_lock *hlock;
2357 unsigned int depth, id;
2358 int chain_head = 0;
2359 u64 chain_key;
2361 if (!prove_locking)
2362 check = 1;
2364 if (unlikely(!debug_locks))
2365 return 0;
2367 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2368 return 0;
2370 if (unlikely(subclass >= MAX_LOCKDEP_SUBCLASSES)) {
2371 debug_locks_off();
2372 printk("BUG: MAX_LOCKDEP_SUBCLASSES too low!\n");
2373 printk("turning off the locking correctness validator.\n");
2374 return 0;
2377 if (!subclass)
2378 class = lock->class_cache;
2380 * Not cached yet or subclass?
2382 if (unlikely(!class)) {
2383 class = register_lock_class(lock, subclass, 0);
2384 if (!class)
2385 return 0;
2387 debug_atomic_inc((atomic_t *)&class->ops);
2388 if (very_verbose(class)) {
2389 printk("\nacquire class [%p] %s", class->key, class->name);
2390 if (class->name_version > 1)
2391 printk("#%d", class->name_version);
2392 printk("\n");
2393 dump_stack();
2397 * Add the lock to the list of currently held locks.
2398 * (we dont increase the depth just yet, up until the
2399 * dependency checks are done)
2401 depth = curr->lockdep_depth;
2402 if (DEBUG_LOCKS_WARN_ON(depth >= MAX_LOCK_DEPTH))
2403 return 0;
2405 hlock = curr->held_locks + depth;
2407 hlock->class = class;
2408 hlock->acquire_ip = ip;
2409 hlock->instance = lock;
2410 hlock->trylock = trylock;
2411 hlock->read = read;
2412 hlock->check = check;
2413 hlock->hardirqs_off = hardirqs_off;
2414 #ifdef CONFIG_LOCK_STAT
2415 hlock->waittime_stamp = 0;
2416 hlock->holdtime_stamp = sched_clock();
2417 #endif
2419 if (check == 2 && !mark_irqflags(curr, hlock))
2420 return 0;
2422 /* mark it as used: */
2423 if (!mark_lock(curr, hlock, LOCK_USED))
2424 return 0;
2427 * Calculate the chain hash: it's the combined hash of all the
2428 * lock keys along the dependency chain. We save the hash value
2429 * at every step so that we can get the current hash easily
2430 * after unlock. The chain hash is then used to cache dependency
2431 * results.
2433 * The 'key ID' is what is the most compact key value to drive
2434 * the hash, not class->key.
2436 id = class - lock_classes;
2437 if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS))
2438 return 0;
2440 chain_key = curr->curr_chain_key;
2441 if (!depth) {
2442 if (DEBUG_LOCKS_WARN_ON(chain_key != 0))
2443 return 0;
2444 chain_head = 1;
2447 hlock->prev_chain_key = chain_key;
2448 if (separate_irq_context(curr, hlock)) {
2449 chain_key = 0;
2450 chain_head = 1;
2452 chain_key = iterate_chain_key(chain_key, id);
2454 if (!validate_chain(curr, lock, hlock, chain_head, chain_key))
2455 return 0;
2457 curr->curr_chain_key = chain_key;
2458 curr->lockdep_depth++;
2459 check_chain_key(curr);
2460 #ifdef CONFIG_DEBUG_LOCKDEP
2461 if (unlikely(!debug_locks))
2462 return 0;
2463 #endif
2464 if (unlikely(curr->lockdep_depth >= MAX_LOCK_DEPTH)) {
2465 debug_locks_off();
2466 printk("BUG: MAX_LOCK_DEPTH too low!\n");
2467 printk("turning off the locking correctness validator.\n");
2468 return 0;
2471 if (unlikely(curr->lockdep_depth > max_lockdep_depth))
2472 max_lockdep_depth = curr->lockdep_depth;
2474 return 1;
2477 static int
2478 print_unlock_inbalance_bug(struct task_struct *curr, struct lockdep_map *lock,
2479 unsigned long ip)
2481 if (!debug_locks_off())
2482 return 0;
2483 if (debug_locks_silent)
2484 return 0;
2486 printk("\n=====================================\n");
2487 printk( "[ BUG: bad unlock balance detected! ]\n");
2488 printk( "-------------------------------------\n");
2489 printk("%s/%d is trying to release lock (",
2490 curr->comm, task_pid_nr(curr));
2491 print_lockdep_cache(lock);
2492 printk(") at:\n");
2493 print_ip_sym(ip);
2494 printk("but there are no more locks to release!\n");
2495 printk("\nother info that might help us debug this:\n");
2496 lockdep_print_held_locks(curr);
2498 printk("\nstack backtrace:\n");
2499 dump_stack();
2501 return 0;
2505 * Common debugging checks for both nested and non-nested unlock:
2507 static int check_unlock(struct task_struct *curr, struct lockdep_map *lock,
2508 unsigned long ip)
2510 if (unlikely(!debug_locks))
2511 return 0;
2512 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2513 return 0;
2515 if (curr->lockdep_depth <= 0)
2516 return print_unlock_inbalance_bug(curr, lock, ip);
2518 return 1;
2522 * Remove the lock to the list of currently held locks in a
2523 * potentially non-nested (out of order) manner. This is a
2524 * relatively rare operation, as all the unlock APIs default
2525 * to nested mode (which uses lock_release()):
2527 static int
2528 lock_release_non_nested(struct task_struct *curr,
2529 struct lockdep_map *lock, unsigned long ip)
2531 struct held_lock *hlock, *prev_hlock;
2532 unsigned int depth;
2533 int i;
2536 * Check whether the lock exists in the current stack
2537 * of held locks:
2539 depth = curr->lockdep_depth;
2540 if (DEBUG_LOCKS_WARN_ON(!depth))
2541 return 0;
2543 prev_hlock = NULL;
2544 for (i = depth-1; i >= 0; i--) {
2545 hlock = curr->held_locks + i;
2547 * We must not cross into another context:
2549 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
2550 break;
2551 if (hlock->instance == lock)
2552 goto found_it;
2553 prev_hlock = hlock;
2555 return print_unlock_inbalance_bug(curr, lock, ip);
2557 found_it:
2558 lock_release_holdtime(hlock);
2561 * We have the right lock to unlock, 'hlock' points to it.
2562 * Now we remove it from the stack, and add back the other
2563 * entries (if any), recalculating the hash along the way:
2565 curr->lockdep_depth = i;
2566 curr->curr_chain_key = hlock->prev_chain_key;
2568 for (i++; i < depth; i++) {
2569 hlock = curr->held_locks + i;
2570 if (!__lock_acquire(hlock->instance,
2571 hlock->class->subclass, hlock->trylock,
2572 hlock->read, hlock->check, hlock->hardirqs_off,
2573 hlock->acquire_ip))
2574 return 0;
2577 if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth - 1))
2578 return 0;
2579 return 1;
2583 * Remove the lock to the list of currently held locks - this gets
2584 * called on mutex_unlock()/spin_unlock*() (or on a failed
2585 * mutex_lock_interruptible()). This is done for unlocks that nest
2586 * perfectly. (i.e. the current top of the lock-stack is unlocked)
2588 static int lock_release_nested(struct task_struct *curr,
2589 struct lockdep_map *lock, unsigned long ip)
2591 struct held_lock *hlock;
2592 unsigned int depth;
2595 * Pop off the top of the lock stack:
2597 depth = curr->lockdep_depth - 1;
2598 hlock = curr->held_locks + depth;
2601 * Is the unlock non-nested:
2603 if (hlock->instance != lock)
2604 return lock_release_non_nested(curr, lock, ip);
2605 curr->lockdep_depth--;
2607 if (DEBUG_LOCKS_WARN_ON(!depth && (hlock->prev_chain_key != 0)))
2608 return 0;
2610 curr->curr_chain_key = hlock->prev_chain_key;
2612 lock_release_holdtime(hlock);
2614 #ifdef CONFIG_DEBUG_LOCKDEP
2615 hlock->prev_chain_key = 0;
2616 hlock->class = NULL;
2617 hlock->acquire_ip = 0;
2618 hlock->irq_context = 0;
2619 #endif
2620 return 1;
2624 * Remove the lock to the list of currently held locks - this gets
2625 * called on mutex_unlock()/spin_unlock*() (or on a failed
2626 * mutex_lock_interruptible()). This is done for unlocks that nest
2627 * perfectly. (i.e. the current top of the lock-stack is unlocked)
2629 static void
2630 __lock_release(struct lockdep_map *lock, int nested, unsigned long ip)
2632 struct task_struct *curr = current;
2634 if (!check_unlock(curr, lock, ip))
2635 return;
2637 if (nested) {
2638 if (!lock_release_nested(curr, lock, ip))
2639 return;
2640 } else {
2641 if (!lock_release_non_nested(curr, lock, ip))
2642 return;
2645 check_chain_key(curr);
2649 * Check whether we follow the irq-flags state precisely:
2651 static void check_flags(unsigned long flags)
2653 #if defined(CONFIG_DEBUG_LOCKDEP) && defined(CONFIG_TRACE_IRQFLAGS)
2654 if (!debug_locks)
2655 return;
2657 if (irqs_disabled_flags(flags)) {
2658 if (DEBUG_LOCKS_WARN_ON(current->hardirqs_enabled)) {
2659 printk("possible reason: unannotated irqs-off.\n");
2661 } else {
2662 if (DEBUG_LOCKS_WARN_ON(!current->hardirqs_enabled)) {
2663 printk("possible reason: unannotated irqs-on.\n");
2668 * We dont accurately track softirq state in e.g.
2669 * hardirq contexts (such as on 4KSTACKS), so only
2670 * check if not in hardirq contexts:
2672 if (!hardirq_count()) {
2673 if (softirq_count())
2674 DEBUG_LOCKS_WARN_ON(current->softirqs_enabled);
2675 else
2676 DEBUG_LOCKS_WARN_ON(!current->softirqs_enabled);
2679 if (!debug_locks)
2680 print_irqtrace_events(current);
2681 #endif
2685 * We are not always called with irqs disabled - do that here,
2686 * and also avoid lockdep recursion:
2688 void lock_acquire(struct lockdep_map *lock, unsigned int subclass,
2689 int trylock, int read, int check, unsigned long ip)
2691 unsigned long flags;
2693 if (unlikely(!lock_stat && !prove_locking))
2694 return;
2696 if (unlikely(current->lockdep_recursion))
2697 return;
2699 raw_local_irq_save(flags);
2700 check_flags(flags);
2702 current->lockdep_recursion = 1;
2703 __lock_acquire(lock, subclass, trylock, read, check,
2704 irqs_disabled_flags(flags), ip);
2705 current->lockdep_recursion = 0;
2706 raw_local_irq_restore(flags);
2709 EXPORT_SYMBOL_GPL(lock_acquire);
2711 void lock_release(struct lockdep_map *lock, int nested, unsigned long ip)
2713 unsigned long flags;
2715 if (unlikely(!lock_stat && !prove_locking))
2716 return;
2718 if (unlikely(current->lockdep_recursion))
2719 return;
2721 raw_local_irq_save(flags);
2722 check_flags(flags);
2723 current->lockdep_recursion = 1;
2724 __lock_release(lock, nested, ip);
2725 current->lockdep_recursion = 0;
2726 raw_local_irq_restore(flags);
2729 EXPORT_SYMBOL_GPL(lock_release);
2731 #ifdef CONFIG_LOCK_STAT
2732 static int
2733 print_lock_contention_bug(struct task_struct *curr, struct lockdep_map *lock,
2734 unsigned long ip)
2736 if (!debug_locks_off())
2737 return 0;
2738 if (debug_locks_silent)
2739 return 0;
2741 printk("\n=================================\n");
2742 printk( "[ BUG: bad contention detected! ]\n");
2743 printk( "---------------------------------\n");
2744 printk("%s/%d is trying to contend lock (",
2745 curr->comm, task_pid_nr(curr));
2746 print_lockdep_cache(lock);
2747 printk(") at:\n");
2748 print_ip_sym(ip);
2749 printk("but there are no locks held!\n");
2750 printk("\nother info that might help us debug this:\n");
2751 lockdep_print_held_locks(curr);
2753 printk("\nstack backtrace:\n");
2754 dump_stack();
2756 return 0;
2759 static void
2760 __lock_contended(struct lockdep_map *lock, unsigned long ip)
2762 struct task_struct *curr = current;
2763 struct held_lock *hlock, *prev_hlock;
2764 struct lock_class_stats *stats;
2765 unsigned int depth;
2766 int i, point;
2768 depth = curr->lockdep_depth;
2769 if (DEBUG_LOCKS_WARN_ON(!depth))
2770 return;
2772 prev_hlock = NULL;
2773 for (i = depth-1; i >= 0; i--) {
2774 hlock = curr->held_locks + i;
2776 * We must not cross into another context:
2778 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
2779 break;
2780 if (hlock->instance == lock)
2781 goto found_it;
2782 prev_hlock = hlock;
2784 print_lock_contention_bug(curr, lock, ip);
2785 return;
2787 found_it:
2788 hlock->waittime_stamp = sched_clock();
2790 point = lock_contention_point(hlock->class, ip);
2792 stats = get_lock_stats(hlock->class);
2793 if (point < ARRAY_SIZE(stats->contention_point))
2794 stats->contention_point[i]++;
2795 if (lock->cpu != smp_processor_id())
2796 stats->bounces[bounce_contended + !!hlock->read]++;
2797 put_lock_stats(stats);
2800 static void
2801 __lock_acquired(struct lockdep_map *lock)
2803 struct task_struct *curr = current;
2804 struct held_lock *hlock, *prev_hlock;
2805 struct lock_class_stats *stats;
2806 unsigned int depth;
2807 u64 now;
2808 s64 waittime = 0;
2809 int i, cpu;
2811 depth = curr->lockdep_depth;
2812 if (DEBUG_LOCKS_WARN_ON(!depth))
2813 return;
2815 prev_hlock = NULL;
2816 for (i = depth-1; i >= 0; i--) {
2817 hlock = curr->held_locks + i;
2819 * We must not cross into another context:
2821 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
2822 break;
2823 if (hlock->instance == lock)
2824 goto found_it;
2825 prev_hlock = hlock;
2827 print_lock_contention_bug(curr, lock, _RET_IP_);
2828 return;
2830 found_it:
2831 cpu = smp_processor_id();
2832 if (hlock->waittime_stamp) {
2833 now = sched_clock();
2834 waittime = now - hlock->waittime_stamp;
2835 hlock->holdtime_stamp = now;
2838 stats = get_lock_stats(hlock->class);
2839 if (waittime) {
2840 if (hlock->read)
2841 lock_time_inc(&stats->read_waittime, waittime);
2842 else
2843 lock_time_inc(&stats->write_waittime, waittime);
2845 if (lock->cpu != cpu)
2846 stats->bounces[bounce_acquired + !!hlock->read]++;
2847 put_lock_stats(stats);
2849 lock->cpu = cpu;
2852 void lock_contended(struct lockdep_map *lock, unsigned long ip)
2854 unsigned long flags;
2856 if (unlikely(!lock_stat))
2857 return;
2859 if (unlikely(current->lockdep_recursion))
2860 return;
2862 raw_local_irq_save(flags);
2863 check_flags(flags);
2864 current->lockdep_recursion = 1;
2865 __lock_contended(lock, ip);
2866 current->lockdep_recursion = 0;
2867 raw_local_irq_restore(flags);
2869 EXPORT_SYMBOL_GPL(lock_contended);
2871 void lock_acquired(struct lockdep_map *lock)
2873 unsigned long flags;
2875 if (unlikely(!lock_stat))
2876 return;
2878 if (unlikely(current->lockdep_recursion))
2879 return;
2881 raw_local_irq_save(flags);
2882 check_flags(flags);
2883 current->lockdep_recursion = 1;
2884 __lock_acquired(lock);
2885 current->lockdep_recursion = 0;
2886 raw_local_irq_restore(flags);
2888 EXPORT_SYMBOL_GPL(lock_acquired);
2889 #endif
2892 * Used by the testsuite, sanitize the validator state
2893 * after a simulated failure:
2896 void lockdep_reset(void)
2898 unsigned long flags;
2899 int i;
2901 raw_local_irq_save(flags);
2902 current->curr_chain_key = 0;
2903 current->lockdep_depth = 0;
2904 current->lockdep_recursion = 0;
2905 memset(current->held_locks, 0, MAX_LOCK_DEPTH*sizeof(struct held_lock));
2906 nr_hardirq_chains = 0;
2907 nr_softirq_chains = 0;
2908 nr_process_chains = 0;
2909 debug_locks = 1;
2910 for (i = 0; i < CHAINHASH_SIZE; i++)
2911 INIT_LIST_HEAD(chainhash_table + i);
2912 raw_local_irq_restore(flags);
2915 static void zap_class(struct lock_class *class)
2917 int i;
2920 * Remove all dependencies this lock is
2921 * involved in:
2923 for (i = 0; i < nr_list_entries; i++) {
2924 if (list_entries[i].class == class)
2925 list_del_rcu(&list_entries[i].entry);
2928 * Unhash the class and remove it from the all_lock_classes list:
2930 list_del_rcu(&class->hash_entry);
2931 list_del_rcu(&class->lock_entry);
2935 static inline int within(const void *addr, void *start, unsigned long size)
2937 return addr >= start && addr < start + size;
2940 void lockdep_free_key_range(void *start, unsigned long size)
2942 struct lock_class *class, *next;
2943 struct list_head *head;
2944 unsigned long flags;
2945 int i;
2946 int locked;
2948 raw_local_irq_save(flags);
2949 locked = graph_lock();
2952 * Unhash all classes that were created by this module:
2954 for (i = 0; i < CLASSHASH_SIZE; i++) {
2955 head = classhash_table + i;
2956 if (list_empty(head))
2957 continue;
2958 list_for_each_entry_safe(class, next, head, hash_entry) {
2959 if (within(class->key, start, size))
2960 zap_class(class);
2961 else if (within(class->name, start, size))
2962 zap_class(class);
2966 if (locked)
2967 graph_unlock();
2968 raw_local_irq_restore(flags);
2971 void lockdep_reset_lock(struct lockdep_map *lock)
2973 struct lock_class *class, *next;
2974 struct list_head *head;
2975 unsigned long flags;
2976 int i, j;
2977 int locked;
2979 raw_local_irq_save(flags);
2982 * Remove all classes this lock might have:
2984 for (j = 0; j < MAX_LOCKDEP_SUBCLASSES; j++) {
2986 * If the class exists we look it up and zap it:
2988 class = look_up_lock_class(lock, j);
2989 if (class)
2990 zap_class(class);
2993 * Debug check: in the end all mapped classes should
2994 * be gone.
2996 locked = graph_lock();
2997 for (i = 0; i < CLASSHASH_SIZE; i++) {
2998 head = classhash_table + i;
2999 if (list_empty(head))
3000 continue;
3001 list_for_each_entry_safe(class, next, head, hash_entry) {
3002 if (unlikely(class == lock->class_cache)) {
3003 if (debug_locks_off_graph_unlock())
3004 WARN_ON(1);
3005 goto out_restore;
3009 if (locked)
3010 graph_unlock();
3012 out_restore:
3013 raw_local_irq_restore(flags);
3016 void lockdep_init(void)
3018 int i;
3021 * Some architectures have their own start_kernel()
3022 * code which calls lockdep_init(), while we also
3023 * call lockdep_init() from the start_kernel() itself,
3024 * and we want to initialize the hashes only once:
3026 if (lockdep_initialized)
3027 return;
3029 for (i = 0; i < CLASSHASH_SIZE; i++)
3030 INIT_LIST_HEAD(classhash_table + i);
3032 for (i = 0; i < CHAINHASH_SIZE; i++)
3033 INIT_LIST_HEAD(chainhash_table + i);
3035 lockdep_initialized = 1;
3038 void __init lockdep_info(void)
3040 printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n");
3042 printk("... MAX_LOCKDEP_SUBCLASSES: %lu\n", MAX_LOCKDEP_SUBCLASSES);
3043 printk("... MAX_LOCK_DEPTH: %lu\n", MAX_LOCK_DEPTH);
3044 printk("... MAX_LOCKDEP_KEYS: %lu\n", MAX_LOCKDEP_KEYS);
3045 printk("... CLASSHASH_SIZE: %lu\n", CLASSHASH_SIZE);
3046 printk("... MAX_LOCKDEP_ENTRIES: %lu\n", MAX_LOCKDEP_ENTRIES);
3047 printk("... MAX_LOCKDEP_CHAINS: %lu\n", MAX_LOCKDEP_CHAINS);
3048 printk("... CHAINHASH_SIZE: %lu\n", CHAINHASH_SIZE);
3050 printk(" memory used by lock dependency info: %lu kB\n",
3051 (sizeof(struct lock_class) * MAX_LOCKDEP_KEYS +
3052 sizeof(struct list_head) * CLASSHASH_SIZE +
3053 sizeof(struct lock_list) * MAX_LOCKDEP_ENTRIES +
3054 sizeof(struct lock_chain) * MAX_LOCKDEP_CHAINS +
3055 sizeof(struct list_head) * CHAINHASH_SIZE) / 1024);
3057 printk(" per task-struct memory footprint: %lu bytes\n",
3058 sizeof(struct held_lock) * MAX_LOCK_DEPTH);
3060 #ifdef CONFIG_DEBUG_LOCKDEP
3061 if (lockdep_init_error) {
3062 printk("WARNING: lockdep init error! Arch code didn't call lockdep_init() early enough?\n");
3063 printk("Call stack leading to lockdep invocation was:\n");
3064 print_stack_trace(&lockdep_init_trace, 0);
3066 #endif
3069 static void
3070 print_freed_lock_bug(struct task_struct *curr, const void *mem_from,
3071 const void *mem_to, struct held_lock *hlock)
3073 if (!debug_locks_off())
3074 return;
3075 if (debug_locks_silent)
3076 return;
3078 printk("\n=========================\n");
3079 printk( "[ BUG: held lock freed! ]\n");
3080 printk( "-------------------------\n");
3081 printk("%s/%d is freeing memory %p-%p, with a lock still held there!\n",
3082 curr->comm, task_pid_nr(curr), mem_from, mem_to-1);
3083 print_lock(hlock);
3084 lockdep_print_held_locks(curr);
3086 printk("\nstack backtrace:\n");
3087 dump_stack();
3090 static inline int not_in_range(const void* mem_from, unsigned long mem_len,
3091 const void* lock_from, unsigned long lock_len)
3093 return lock_from + lock_len <= mem_from ||
3094 mem_from + mem_len <= lock_from;
3098 * Called when kernel memory is freed (or unmapped), or if a lock
3099 * is destroyed or reinitialized - this code checks whether there is
3100 * any held lock in the memory range of <from> to <to>:
3102 void debug_check_no_locks_freed(const void *mem_from, unsigned long mem_len)
3104 struct task_struct *curr = current;
3105 struct held_lock *hlock;
3106 unsigned long flags;
3107 int i;
3109 if (unlikely(!debug_locks))
3110 return;
3112 local_irq_save(flags);
3113 for (i = 0; i < curr->lockdep_depth; i++) {
3114 hlock = curr->held_locks + i;
3116 if (not_in_range(mem_from, mem_len, hlock->instance,
3117 sizeof(*hlock->instance)))
3118 continue;
3120 print_freed_lock_bug(curr, mem_from, mem_from + mem_len, hlock);
3121 break;
3123 local_irq_restore(flags);
3125 EXPORT_SYMBOL_GPL(debug_check_no_locks_freed);
3127 static void print_held_locks_bug(struct task_struct *curr)
3129 if (!debug_locks_off())
3130 return;
3131 if (debug_locks_silent)
3132 return;
3134 printk("\n=====================================\n");
3135 printk( "[ BUG: lock held at task exit time! ]\n");
3136 printk( "-------------------------------------\n");
3137 printk("%s/%d is exiting with locks still held!\n",
3138 curr->comm, task_pid_nr(curr));
3139 lockdep_print_held_locks(curr);
3141 printk("\nstack backtrace:\n");
3142 dump_stack();
3145 void debug_check_no_locks_held(struct task_struct *task)
3147 if (unlikely(task->lockdep_depth > 0))
3148 print_held_locks_bug(task);
3151 void debug_show_all_locks(void)
3153 struct task_struct *g, *p;
3154 int count = 10;
3155 int unlock = 1;
3157 if (unlikely(!debug_locks)) {
3158 printk("INFO: lockdep is turned off.\n");
3159 return;
3161 printk("\nShowing all locks held in the system:\n");
3164 * Here we try to get the tasklist_lock as hard as possible,
3165 * if not successful after 2 seconds we ignore it (but keep
3166 * trying). This is to enable a debug printout even if a
3167 * tasklist_lock-holding task deadlocks or crashes.
3169 retry:
3170 if (!read_trylock(&tasklist_lock)) {
3171 if (count == 10)
3172 printk("hm, tasklist_lock locked, retrying... ");
3173 if (count) {
3174 count--;
3175 printk(" #%d", 10-count);
3176 mdelay(200);
3177 goto retry;
3179 printk(" ignoring it.\n");
3180 unlock = 0;
3182 if (count != 10)
3183 printk(" locked it.\n");
3185 do_each_thread(g, p) {
3187 * It's not reliable to print a task's held locks
3188 * if it's not sleeping (or if it's not the current
3189 * task):
3191 if (p->state == TASK_RUNNING && p != current)
3192 continue;
3193 if (p->lockdep_depth)
3194 lockdep_print_held_locks(p);
3195 if (!unlock)
3196 if (read_trylock(&tasklist_lock))
3197 unlock = 1;
3198 } while_each_thread(g, p);
3200 printk("\n");
3201 printk("=============================================\n\n");
3203 if (unlock)
3204 read_unlock(&tasklist_lock);
3207 EXPORT_SYMBOL_GPL(debug_show_all_locks);
3210 * Careful: only use this function if you are sure that
3211 * the task cannot run in parallel!
3213 void __debug_show_held_locks(struct task_struct *task)
3215 if (unlikely(!debug_locks)) {
3216 printk("INFO: lockdep is turned off.\n");
3217 return;
3219 lockdep_print_held_locks(task);
3221 EXPORT_SYMBOL_GPL(__debug_show_held_locks);
3223 void debug_show_held_locks(struct task_struct *task)
3225 __debug_show_held_locks(task);
3228 EXPORT_SYMBOL_GPL(debug_show_held_locks);
3230 void lockdep_sys_exit(void)
3232 struct task_struct *curr = current;
3234 if (unlikely(curr->lockdep_depth)) {
3235 if (!debug_locks_off())
3236 return;
3237 printk("\n================================================\n");
3238 printk( "[ BUG: lock held when returning to user space! ]\n");
3239 printk( "------------------------------------------------\n");
3240 printk("%s/%d is leaving the kernel with locks still held!\n",
3241 curr->comm, curr->pid);
3242 lockdep_print_held_locks(curr);