1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Runtime locking correctness validator
6 * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra
8 * see Documentation/locking/lockdep-design.rst for more details.
10 #ifndef __LINUX_LOCKDEP_TYPES_H
11 #define __LINUX_LOCKDEP_TYPES_H
13 #include <linux/types.h>
15 #define MAX_LOCKDEP_SUBCLASSES 8UL
17 enum lockdep_wait_type {
18 LD_WAIT_INV = 0, /* not checked, catch all */
20 LD_WAIT_FREE, /* wait free, rcu etc.. */
21 LD_WAIT_SPIN, /* spin loops, raw_spinlock_t etc.. */
23 #ifdef CONFIG_PROVE_RAW_LOCK_NESTING
24 LD_WAIT_CONFIG, /* CONFIG_PREEMPT_LOCK, spinlock_t etc.. */
26 LD_WAIT_CONFIG = LD_WAIT_SPIN,
28 LD_WAIT_SLEEP, /* sleeping locks, mutex_t etc.. */
30 LD_WAIT_MAX, /* must be last */
36 * We'd rather not expose kernel/lockdep_states.h this wide, but we do need
37 * the total number of states... :-(
39 #define XXX_LOCK_USAGE_STATES (1+2*4)
42 * NR_LOCKDEP_CACHING_CLASSES ... Number of classes
43 * cached in the instance of lockdep_map
45 * Currently main class (subclass == 0) and signle depth subclass
46 * are cached in lockdep_map. This optimization is mainly targeting
47 * on rq->lock. double_rq_lock() acquires this highly competitive with
50 #define NR_LOCKDEP_CACHING_CLASSES 2
53 * A lockdep key is associated with each lock object. For static locks we use
54 * the lock address itself as the key. Dynamically allocated lock objects can
55 * have a statically or dynamically allocated key. Dynamically allocated lock
56 * keys must be registered before being used and must be unregistered before
57 * the key memory is freed.
59 struct lockdep_subclass_key {
61 } __attribute__ ((__packed__));
63 /* hash_entry is used to keep track of dynamically allocated keys. */
64 struct lock_class_key {
66 struct hlist_node hash_entry;
67 struct lockdep_subclass_key subkeys[MAX_LOCKDEP_SUBCLASSES];
71 extern struct lock_class_key __lockdep_no_validate__;
75 #define LOCKSTAT_POINTS 4
78 * The lock-class itself. The order of the structure members matters.
79 * reinit_class() zeroes the key member and all subsequent members.
85 struct hlist_node hash_entry;
88 * Entry in all_lock_classes when in use. Entry in free_lock_classes
89 * when not in use. Instances that are being freed are on one of the
90 * zapped_classes lists.
92 struct list_head lock_entry;
95 * These fields represent a directed graph of lock dependencies,
96 * to every node we attach a list of "forward" and a list of
97 * "backward" graph nodes.
99 struct list_head locks_after, locks_before;
101 const struct lockdep_subclass_key *key;
102 unsigned int subclass;
103 unsigned int dep_gen_id;
106 * IRQ/softirq usage tracking bits:
108 unsigned long usage_mask;
109 const struct lock_trace *usage_traces[XXX_LOCK_USAGE_STATES];
112 * Generation counter, when doing certain classes of graph walking,
113 * to ensure that we check one node only once:
118 short wait_type_inner;
119 short wait_type_outer;
121 #ifdef CONFIG_LOCK_STAT
122 unsigned long contention_point[LOCKSTAT_POINTS];
123 unsigned long contending_point[LOCKSTAT_POINTS];
125 } __no_randomize_layout;
127 #ifdef CONFIG_LOCK_STAT
136 bounce_acquired_write,
137 bounce_acquired_read,
138 bounce_contended_write,
139 bounce_contended_read,
142 bounce_acquired = bounce_acquired_write,
143 bounce_contended = bounce_contended_write,
146 struct lock_class_stats {
147 unsigned long contention_point[LOCKSTAT_POINTS];
148 unsigned long contending_point[LOCKSTAT_POINTS];
149 struct lock_time read_waittime;
150 struct lock_time write_waittime;
151 struct lock_time read_holdtime;
152 struct lock_time write_holdtime;
153 unsigned long bounces[nr_bounce_types];
156 struct lock_class_stats lock_stats(struct lock_class *class);
157 void clear_lock_stats(struct lock_class *class);
161 * Map the lock object (the lock instance) to the lock-class object.
162 * This is embedded into specific lock instances:
165 struct lock_class_key *key;
166 struct lock_class *class_cache[NR_LOCKDEP_CACHING_CLASSES];
168 short wait_type_outer; /* can be taken in this context */
169 short wait_type_inner; /* presents this context */
170 #ifdef CONFIG_LOCK_STAT
176 struct pin_cookie { unsigned int val; };
178 #else /* !CONFIG_LOCKDEP */
181 * The class key takes no space if lockdep is disabled:
183 struct lock_class_key { };
186 * The lockdep_map takes no space if lockdep is disabled:
188 struct lockdep_map { };
190 struct pin_cookie { };
192 #endif /* !LOCKDEP */
194 #endif /* __LINUX_LOCKDEP_TYPES_H */