Home
last modified time | relevance | path

Searched refs:MAX_LOCKDEP_KEYS (Results 1 – 4 of 4) sorted by relevance

/linux-4.1.27/kernel/locking/
Dlockdep.c138 static struct lock_class lock_classes[MAX_LOCKDEP_KEYS];
153 static DEFINE_PER_CPU(struct lock_class_stats[MAX_LOCKDEP_KEYS],
563 if (!class_idx || (class_idx - 1) >= MAX_LOCKDEP_KEYS) { in print_lock()
786 if (nr_lock_classes >= MAX_LOCKDEP_KEYS) { in register_lock_class()
2192 if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS)) in check_chain_key()
3182 if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS)) in __lock_acquire()
4047 printk("... MAX_LOCKDEP_KEYS: %lu\n", MAX_LOCKDEP_KEYS); in lockdep_info()
4054 (sizeof(struct lock_class) * MAX_LOCKDEP_KEYS + in lockdep_info()
Dlockdep_proc.c269 nr_lock_classes, MAX_LOCKDEP_KEYS); in lockdep_stats_show()
372 struct lock_stat_data stats[MAX_LOCKDEP_KEYS];
/linux-4.1.27/Documentation/locking/
Dlockdep-design.txt228 The validator tracks a maximum of MAX_LOCKDEP_KEYS number of lock classes.
231 (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS))
233 By default, MAX_LOCKDEP_KEYS is currently set to 8191, and typical
/linux-4.1.27/include/linux/
Dlockdep.h212 #define MAX_LOCKDEP_KEYS ((1UL << MAX_LOCKDEP_KEYS_BITS) - 1) macro