Home
last modified time | relevance | path

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

/Linux-v5.4/kernel/locking/
Dlockdep_internals.h189 unsigned long lock_class_ops[MAX_LOCKDEP_KEYS];
193 extern struct lock_class lock_classes[MAX_LOCKDEP_KEYS];
Dlockdep_proc.c254 nr_lock_classes, MAX_LOCKDEP_KEYS); in lockdep_stats_show()
351 struct lock_stat_data stats[MAX_LOCKDEP_KEYS];
Dlockdep.c153 struct lock_class lock_classes[MAX_LOCKDEP_KEYS];
154 static DECLARE_BITMAP(lock_classes_in_use, MAX_LOCKDEP_KEYS);
179 static DEFINE_PER_CPU(struct lock_class_stats[MAX_LOCKDEP_KEYS], cpu_lock_stats);
5212 printk("... MAX_LOCKDEP_KEYS: %lu\n", MAX_LOCKDEP_KEYS); in lockdep_init()
/Linux-v5.4/Documentation/locking/
Dlockdep-design.rst336 The validator tracks a maximum of MAX_LOCKDEP_KEYS number of lock classes.
339 (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS))
341 By default, MAX_LOCKDEP_KEYS is currently set to 8191, and typical
/Linux-v5.4/include/linux/
Dlockdep.h223 #define MAX_LOCKDEP_KEYS (1UL << MAX_LOCKDEP_KEYS_BITS) macro