~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/lockdep.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/linux/lockdep.h (Version linux-6.12-rc7) and /include/linux/lockdep.h (Version linux-6.8.12)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*                                                  2 /*
  3  * Runtime locking correctness validator            3  * Runtime locking correctness validator
  4  *                                                  4  *
  5  *  Copyright (C) 2006,2007 Red Hat, Inc., Ing      5  *  Copyright (C) 2006,2007 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
  6  *  Copyright (C) 2007 Red Hat, Inc., Peter Zi      6  *  Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra
  7  *                                                  7  *
  8  * see Documentation/locking/lockdep-design.rs      8  * see Documentation/locking/lockdep-design.rst for more details.
  9  */                                                 9  */
 10 #ifndef __LINUX_LOCKDEP_H                          10 #ifndef __LINUX_LOCKDEP_H
 11 #define __LINUX_LOCKDEP_H                          11 #define __LINUX_LOCKDEP_H
 12                                                    12 
 13 #include <linux/lockdep_types.h>                   13 #include <linux/lockdep_types.h>
 14 #include <linux/smp.h>                             14 #include <linux/smp.h>
 15 #include <asm/percpu.h>                            15 #include <asm/percpu.h>
 16                                                    16 
 17 struct task_struct;                                17 struct task_struct;
 18                                                    18 
 19 #ifdef CONFIG_LOCKDEP                              19 #ifdef CONFIG_LOCKDEP
 20                                                    20 
 21 #include <linux/linkage.h>                         21 #include <linux/linkage.h>
 22 #include <linux/list.h>                            22 #include <linux/list.h>
 23 #include <linux/debug_locks.h>                     23 #include <linux/debug_locks.h>
 24 #include <linux/stacktrace.h>                      24 #include <linux/stacktrace.h>
 25                                                    25 
 26 static inline void lockdep_copy_map(struct loc     26 static inline void lockdep_copy_map(struct lockdep_map *to,
 27                                     struct loc     27                                     struct lockdep_map *from)
 28 {                                                  28 {
 29         int i;                                     29         int i;
 30                                                    30 
 31         *to = *from;                               31         *to = *from;
 32         /*                                         32         /*
 33          * Since the class cache can be modifi     33          * Since the class cache can be modified concurrently we could observe
 34          * half pointers (64bit arch using 32b     34          * half pointers (64bit arch using 32bit copy insns). Therefore clear
 35          * the caches and take the performance     35          * the caches and take the performance hit.
 36          *                                         36          *
 37          * XXX it doesn't work well with lockd     37          * XXX it doesn't work well with lockdep_set_class_and_subclass(), since
 38          *     that relies on cache abuse.         38          *     that relies on cache abuse.
 39          */                                        39          */
 40         for (i = 0; i < NR_LOCKDEP_CACHING_CLA     40         for (i = 0; i < NR_LOCKDEP_CACHING_CLASSES; i++)
 41                 to->class_cache[i] = NULL;         41                 to->class_cache[i] = NULL;
 42 }                                                  42 }
 43                                                    43 
 44 /*                                                 44 /*
 45  * Every lock has a list of other locks that w     45  * Every lock has a list of other locks that were taken after it.
 46  * We only grow the list, never remove from it     46  * We only grow the list, never remove from it:
 47  */                                                47  */
 48 struct lock_list {                                 48 struct lock_list {
 49         struct list_head                entry;     49         struct list_head                entry;
 50         struct lock_class               *class     50         struct lock_class               *class;
 51         struct lock_class               *links     51         struct lock_class               *links_to;
 52         const struct lock_trace         *trace     52         const struct lock_trace         *trace;
 53         u16                             distan     53         u16                             distance;
 54         /* bitmap of different dependencies fr     54         /* bitmap of different dependencies from head to this */
 55         u8                              dep;       55         u8                              dep;
 56         /* used by BFS to record whether "prev     56         /* used by BFS to record whether "prev -> this" only has -(*R)-> */
 57         u8                              only_x     57         u8                              only_xr;
 58                                                    58 
 59         /*                                         59         /*
 60          * The parent field is used to impleme     60          * The parent field is used to implement breadth-first search, and the
 61          * bit 0 is reused to indicate if the      61          * bit 0 is reused to indicate if the lock has been accessed in BFS.
 62          */                                        62          */
 63         struct lock_list                *paren     63         struct lock_list                *parent;
 64 };                                                 64 };
 65                                                    65 
 66 /**                                                66 /**
 67  * struct lock_chain - lock dependency chain r     67  * struct lock_chain - lock dependency chain record
 68  *                                                 68  *
 69  * @irq_context: the same as irq_context in he     69  * @irq_context: the same as irq_context in held_lock below
 70  * @depth:       the number of held locks in t     70  * @depth:       the number of held locks in this chain
 71  * @base:        the index in chain_hlocks for     71  * @base:        the index in chain_hlocks for this chain
 72  * @entry:       the collided lock chains in l     72  * @entry:       the collided lock chains in lock_chain hash list
 73  * @chain_key:   the hash key of this lock_cha     73  * @chain_key:   the hash key of this lock_chain
 74  */                                                74  */
 75 struct lock_chain {                                75 struct lock_chain {
 76         /* see BUILD_BUG_ON()s in add_chain_ca     76         /* see BUILD_BUG_ON()s in add_chain_cache() */
 77         unsigned int                    irq_co     77         unsigned int                    irq_context :  2,
 78                                         depth      78                                         depth       :  6,
 79                                         base       79                                         base        : 24;
 80         /* 4 byte hole */                          80         /* 4 byte hole */
 81         struct hlist_node               entry;     81         struct hlist_node               entry;
 82         u64                             chain_     82         u64                             chain_key;
 83 };                                                 83 };
 84                                                    84 
 85 /*                                                 85 /*
 86  * Initialization, self-test and debugging-out     86  * Initialization, self-test and debugging-output methods:
 87  */                                                87  */
 88 extern void lockdep_init(void);                    88 extern void lockdep_init(void);
 89 extern void lockdep_reset(void);                   89 extern void lockdep_reset(void);
 90 extern void lockdep_reset_lock(struct lockdep_     90 extern void lockdep_reset_lock(struct lockdep_map *lock);
 91 extern void lockdep_free_key_range(void *start     91 extern void lockdep_free_key_range(void *start, unsigned long size);
 92 extern asmlinkage void lockdep_sys_exit(void);     92 extern asmlinkage void lockdep_sys_exit(void);
 93 extern void lockdep_set_selftest_task(struct t     93 extern void lockdep_set_selftest_task(struct task_struct *task);
 94                                                    94 
 95 extern void lockdep_init_task(struct task_stru     95 extern void lockdep_init_task(struct task_struct *task);
 96                                                    96 
 97 /*                                                 97 /*
 98  * Split the recursion counter in two to readi     98  * Split the recursion counter in two to readily detect 'off' vs recursion.
 99  */                                                99  */
100 #define LOCKDEP_RECURSION_BITS  16                100 #define LOCKDEP_RECURSION_BITS  16
101 #define LOCKDEP_OFF             (1U << LOCKDEP    101 #define LOCKDEP_OFF             (1U << LOCKDEP_RECURSION_BITS)
102 #define LOCKDEP_RECURSION_MASK  (LOCKDEP_OFF -    102 #define LOCKDEP_RECURSION_MASK  (LOCKDEP_OFF - 1)
103                                                   103 
104 /*                                                104 /*
105  * lockdep_{off,on}() are macros to avoid trac    105  * lockdep_{off,on}() are macros to avoid tracing and kprobes; not inlines due
106  * to header dependencies.                        106  * to header dependencies.
107  */                                               107  */
108                                                   108 
109 #define lockdep_off()                             109 #define lockdep_off()                                   \
110 do {                                              110 do {                                                    \
111         current->lockdep_recursion += LOCKDEP_    111         current->lockdep_recursion += LOCKDEP_OFF;      \
112 } while (0)                                       112 } while (0)
113                                                   113 
114 #define lockdep_on()                              114 #define lockdep_on()                                    \
115 do {                                              115 do {                                                    \
116         current->lockdep_recursion -= LOCKDEP_    116         current->lockdep_recursion -= LOCKDEP_OFF;      \
117 } while (0)                                       117 } while (0)
118                                                   118 
119 extern void lockdep_register_key(struct lock_c    119 extern void lockdep_register_key(struct lock_class_key *key);
120 extern void lockdep_unregister_key(struct lock    120 extern void lockdep_unregister_key(struct lock_class_key *key);
121                                                   121 
122 /*                                                122 /*
123  * These methods are used by specific locking     123  * These methods are used by specific locking variants (spinlocks,
124  * rwlocks, mutexes and rwsems) to pass init/a    124  * rwlocks, mutexes and rwsems) to pass init/acquire/release events
125  * to lockdep:                                    125  * to lockdep:
126  */                                               126  */
127                                                   127 
128 extern void lockdep_init_map_type(struct lockd    128 extern void lockdep_init_map_type(struct lockdep_map *lock, const char *name,
129         struct lock_class_key *key, int subcla    129         struct lock_class_key *key, int subclass, u8 inner, u8 outer, u8 lock_type);
130                                                   130 
131 static inline void                                131 static inline void
132 lockdep_init_map_waits(struct lockdep_map *loc    132 lockdep_init_map_waits(struct lockdep_map *lock, const char *name,
133                        struct lock_class_key *    133                        struct lock_class_key *key, int subclass, u8 inner, u8 outer)
134 {                                                 134 {
135         lockdep_init_map_type(lock, name, key,    135         lockdep_init_map_type(lock, name, key, subclass, inner, outer, LD_LOCK_NORMAL);
136 }                                                 136 }
137                                                   137 
138 static inline void                                138 static inline void
139 lockdep_init_map_wait(struct lockdep_map *lock    139 lockdep_init_map_wait(struct lockdep_map *lock, const char *name,
140                       struct lock_class_key *k    140                       struct lock_class_key *key, int subclass, u8 inner)
141 {                                                 141 {
142         lockdep_init_map_waits(lock, name, key    142         lockdep_init_map_waits(lock, name, key, subclass, inner, LD_WAIT_INV);
143 }                                                 143 }
144                                                   144 
145 static inline void lockdep_init_map(struct loc    145 static inline void lockdep_init_map(struct lockdep_map *lock, const char *name,
146                              struct lock_class    146                              struct lock_class_key *key, int subclass)
147 {                                                 147 {
148         lockdep_init_map_wait(lock, name, key,    148         lockdep_init_map_wait(lock, name, key, subclass, LD_WAIT_INV);
149 }                                                 149 }
150                                                   150 
151 /*                                                151 /*
152  * Reinitialize a lock key - for cases where t    152  * Reinitialize a lock key - for cases where there is special locking or
153  * special initialization of locks so that the    153  * special initialization of locks so that the validator gets the scope
154  * of dependencies wrong: they are either too     154  * of dependencies wrong: they are either too broad (they need a class-split)
155  * or they are too narrow (they suffer from a     155  * or they are too narrow (they suffer from a false class-split):
156  */                                               156  */
157 #define lockdep_set_class(lock, key)              157 #define lockdep_set_class(lock, key)                            \
158         lockdep_init_map_type(&(lock)->dep_map    158         lockdep_init_map_type(&(lock)->dep_map, #key, key, 0,   \
159                               (lock)->dep_map.    159                               (lock)->dep_map.wait_type_inner,  \
160                               (lock)->dep_map.    160                               (lock)->dep_map.wait_type_outer,  \
161                               (lock)->dep_map.    161                               (lock)->dep_map.lock_type)
162                                                   162 
163 #define lockdep_set_class_and_name(lock, key,     163 #define lockdep_set_class_and_name(lock, key, name)             \
164         lockdep_init_map_type(&(lock)->dep_map    164         lockdep_init_map_type(&(lock)->dep_map, name, key, 0,   \
165                               (lock)->dep_map.    165                               (lock)->dep_map.wait_type_inner,  \
166                               (lock)->dep_map.    166                               (lock)->dep_map.wait_type_outer,  \
167                               (lock)->dep_map.    167                               (lock)->dep_map.lock_type)
168                                                   168 
169 #define lockdep_set_class_and_subclass(lock, k    169 #define lockdep_set_class_and_subclass(lock, key, sub)          \
170         lockdep_init_map_type(&(lock)->dep_map    170         lockdep_init_map_type(&(lock)->dep_map, #key, key, sub, \
171                               (lock)->dep_map.    171                               (lock)->dep_map.wait_type_inner,  \
172                               (lock)->dep_map.    172                               (lock)->dep_map.wait_type_outer,  \
173                               (lock)->dep_map.    173                               (lock)->dep_map.lock_type)
174                                                   174 
175 #define lockdep_set_subclass(lock, sub)           175 #define lockdep_set_subclass(lock, sub)                                 \
176         lockdep_init_map_type(&(lock)->dep_map    176         lockdep_init_map_type(&(lock)->dep_map, #lock, (lock)->dep_map.key, sub,\
177                               (lock)->dep_map.    177                               (lock)->dep_map.wait_type_inner,          \
178                               (lock)->dep_map.    178                               (lock)->dep_map.wait_type_outer,          \
179                               (lock)->dep_map.    179                               (lock)->dep_map.lock_type)
180                                                   180 
181 /**                                            << 
182  * lockdep_set_novalidate_class: disable check << 
183  * lock                                        << 
184  * @lock: Lock to mark                         << 
185  *                                             << 
186  * Lockdep will still record that this lock ha << 
187  * instances when dumping locks                << 
188  */                                            << 
189 #define lockdep_set_novalidate_class(lock) \      181 #define lockdep_set_novalidate_class(lock) \
190         lockdep_set_class_and_name(lock, &__lo    182         lockdep_set_class_and_name(lock, &__lockdep_no_validate__, #lock)
191                                                   183 
192 /**                                            << 
193  * lockdep_set_notrack_class: disable lockdep  << 
194  * @lock: Lock to mark                         << 
195  *                                             << 
196  * Bigger hammer than lockdep_set_novalidate_c << 
197  * which takes more locks than lockdep is able << 
198  */                                            << 
199 #define lockdep_set_notrack_class(lock) \      << 
200         lockdep_set_class_and_name(lock, &__lo << 
201                                                << 
202 /*                                                184 /*
203  * Compare locking classes                        185  * Compare locking classes
204  */                                               186  */
205 #define lockdep_match_class(lock, key) lockdep    187 #define lockdep_match_class(lock, key) lockdep_match_key(&(lock)->dep_map, key)
206                                                   188 
207 static inline int lockdep_match_key(struct loc    189 static inline int lockdep_match_key(struct lockdep_map *lock,
208                                     struct loc    190                                     struct lock_class_key *key)
209 {                                                 191 {
210         return lock->key == key;                  192         return lock->key == key;
211 }                                                 193 }
212                                                   194 
213 /*                                                195 /*
214  * Acquire a lock.                                196  * Acquire a lock.
215  *                                                197  *
216  * Values for "read":                             198  * Values for "read":
217  *                                                199  *
218  *   0: exclusive (write) acquire                 200  *   0: exclusive (write) acquire
219  *   1: read-acquire (no recursion allowed)       201  *   1: read-acquire (no recursion allowed)
220  *   2: read-acquire with same-instance recurs    202  *   2: read-acquire with same-instance recursion allowed
221  *                                                203  *
222  * Values for check:                              204  * Values for check:
223  *                                                205  *
224  *   0: simple checks (freeing, held-at-exit-t    206  *   0: simple checks (freeing, held-at-exit-time, etc.)
225  *   1: full validation                           207  *   1: full validation
226  */                                               208  */
227 extern void lock_acquire(struct lockdep_map *l    209 extern void lock_acquire(struct lockdep_map *lock, unsigned int subclass,
228                          int trylock, int read    210                          int trylock, int read, int check,
229                          struct lockdep_map *n    211                          struct lockdep_map *nest_lock, unsigned long ip);
230                                                   212 
231 extern void lock_release(struct lockdep_map *l    213 extern void lock_release(struct lockdep_map *lock, unsigned long ip);
232                                                   214 
233 extern void lock_sync(struct lockdep_map *lock    215 extern void lock_sync(struct lockdep_map *lock, unsigned int subclass,
234                       int read, int check, str    216                       int read, int check, struct lockdep_map *nest_lock,
235                       unsigned long ip);          217                       unsigned long ip);
236                                                   218 
237 /* lock_is_held_type() returns */                 219 /* lock_is_held_type() returns */
238 #define LOCK_STATE_UNKNOWN      -1                220 #define LOCK_STATE_UNKNOWN      -1
239 #define LOCK_STATE_NOT_HELD     0                 221 #define LOCK_STATE_NOT_HELD     0
240 #define LOCK_STATE_HELD         1                 222 #define LOCK_STATE_HELD         1
241                                                   223 
242 /*                                                224 /*
243  * Same "read" as for lock_acquire(), except -    225  * Same "read" as for lock_acquire(), except -1 means any.
244  */                                               226  */
245 extern int lock_is_held_type(const struct lock    227 extern int lock_is_held_type(const struct lockdep_map *lock, int read);
246                                                   228 
247 static inline int lock_is_held(const struct lo    229 static inline int lock_is_held(const struct lockdep_map *lock)
248 {                                                 230 {
249         return lock_is_held_type(lock, -1);       231         return lock_is_held_type(lock, -1);
250 }                                                 232 }
251                                                   233 
252 #define lockdep_is_held(lock)           lock_i    234 #define lockdep_is_held(lock)           lock_is_held(&(lock)->dep_map)
253 #define lockdep_is_held_type(lock, r)   lock_i    235 #define lockdep_is_held_type(lock, r)   lock_is_held_type(&(lock)->dep_map, (r))
254                                                   236 
255 extern void lock_set_class(struct lockdep_map     237 extern void lock_set_class(struct lockdep_map *lock, const char *name,
256                            struct lock_class_k    238                            struct lock_class_key *key, unsigned int subclass,
257                            unsigned long ip);     239                            unsigned long ip);
258                                                   240 
259 #define lock_set_novalidate_class(l, n, i) \      241 #define lock_set_novalidate_class(l, n, i) \
260         lock_set_class(l, n, &__lockdep_no_val    242         lock_set_class(l, n, &__lockdep_no_validate__, 0, i)
261                                                   243 
262 static inline void lock_set_subclass(struct lo    244 static inline void lock_set_subclass(struct lockdep_map *lock,
263                 unsigned int subclass, unsigne    245                 unsigned int subclass, unsigned long ip)
264 {                                                 246 {
265         lock_set_class(lock, lock->name, lock-    247         lock_set_class(lock, lock->name, lock->key, subclass, ip);
266 }                                                 248 }
267                                                   249 
268 extern void lock_downgrade(struct lockdep_map     250 extern void lock_downgrade(struct lockdep_map *lock, unsigned long ip);
269                                                   251 
270 #define NIL_COOKIE (struct pin_cookie){ .val =    252 #define NIL_COOKIE (struct pin_cookie){ .val = 0U, }
271                                                   253 
272 extern struct pin_cookie lock_pin_lock(struct     254 extern struct pin_cookie lock_pin_lock(struct lockdep_map *lock);
273 extern void lock_repin_lock(struct lockdep_map    255 extern void lock_repin_lock(struct lockdep_map *lock, struct pin_cookie);
274 extern void lock_unpin_lock(struct lockdep_map    256 extern void lock_unpin_lock(struct lockdep_map *lock, struct pin_cookie);
275                                                   257 
276 #define lockdep_depth(tsk)      (debug_locks ?    258 #define lockdep_depth(tsk)      (debug_locks ? (tsk)->lockdep_depth : 0)
277                                                   259 
278 #define lockdep_assert(cond)            \         260 #define lockdep_assert(cond)            \
279         do { WARN_ON(debug_locks && !(cond));     261         do { WARN_ON(debug_locks && !(cond)); } while (0)
280                                                   262 
281 #define lockdep_assert_once(cond)       \         263 #define lockdep_assert_once(cond)       \
282         do { WARN_ON_ONCE(debug_locks && !(con    264         do { WARN_ON_ONCE(debug_locks && !(cond)); } while (0)
283                                                   265 
284 #define lockdep_assert_held(l)          \         266 #define lockdep_assert_held(l)          \
285         lockdep_assert(lockdep_is_held(l) != L    267         lockdep_assert(lockdep_is_held(l) != LOCK_STATE_NOT_HELD)
286                                                   268 
287 #define lockdep_assert_not_held(l)      \         269 #define lockdep_assert_not_held(l)      \
288         lockdep_assert(lockdep_is_held(l) != L    270         lockdep_assert(lockdep_is_held(l) != LOCK_STATE_HELD)
289                                                   271 
290 #define lockdep_assert_held_write(l)    \         272 #define lockdep_assert_held_write(l)    \
291         lockdep_assert(lockdep_is_held_type(l,    273         lockdep_assert(lockdep_is_held_type(l, 0))
292                                                   274 
293 #define lockdep_assert_held_read(l)     \         275 #define lockdep_assert_held_read(l)     \
294         lockdep_assert(lockdep_is_held_type(l,    276         lockdep_assert(lockdep_is_held_type(l, 1))
295                                                   277 
296 #define lockdep_assert_held_once(l)               278 #define lockdep_assert_held_once(l)             \
297         lockdep_assert_once(lockdep_is_held(l)    279         lockdep_assert_once(lockdep_is_held(l) != LOCK_STATE_NOT_HELD)
298                                                   280 
299 #define lockdep_assert_none_held_once()           281 #define lockdep_assert_none_held_once()         \
300         lockdep_assert_once(!current->lockdep_    282         lockdep_assert_once(!current->lockdep_depth)
301                                                   283 
302 #define lockdep_recursing(tsk)  ((tsk)->lockde    284 #define lockdep_recursing(tsk)  ((tsk)->lockdep_recursion)
303                                                   285 
304 #define lockdep_pin_lock(l)     lock_pin_lock(    286 #define lockdep_pin_lock(l)     lock_pin_lock(&(l)->dep_map)
305 #define lockdep_repin_lock(l,c) lock_repin_loc    287 #define lockdep_repin_lock(l,c) lock_repin_lock(&(l)->dep_map, (c))
306 #define lockdep_unpin_lock(l,c) lock_unpin_loc    288 #define lockdep_unpin_lock(l,c) lock_unpin_lock(&(l)->dep_map, (c))
307                                                   289 
308 /*                                                290 /*
309  * Must use lock_map_aquire_try() with overrid    291  * Must use lock_map_aquire_try() with override maps to avoid
310  * lockdep thinking they participate in the bl    292  * lockdep thinking they participate in the block chain.
311  */                                               293  */
312 #define DEFINE_WAIT_OVERRIDE_MAP(_name, _wait_    294 #define DEFINE_WAIT_OVERRIDE_MAP(_name, _wait_type)     \
313         struct lockdep_map _name = {              295         struct lockdep_map _name = {                    \
314                 .name = #_name "-wait-type-ove    296                 .name = #_name "-wait-type-override",   \
315                 .wait_type_inner = _wait_type,    297                 .wait_type_inner = _wait_type,          \
316                 .lock_type = LD_LOCK_WAIT_OVER    298                 .lock_type = LD_LOCK_WAIT_OVERRIDE, }
317                                                   299 
318 #else /* !CONFIG_LOCKDEP */                       300 #else /* !CONFIG_LOCKDEP */
319                                                   301 
320 static inline void lockdep_init_task(struct ta    302 static inline void lockdep_init_task(struct task_struct *task)
321 {                                                 303 {
322 }                                                 304 }
323                                                   305 
324 static inline void lockdep_off(void)              306 static inline void lockdep_off(void)
325 {                                                 307 {
326 }                                                 308 }
327                                                   309 
328 static inline void lockdep_on(void)               310 static inline void lockdep_on(void)
329 {                                                 311 {
330 }                                                 312 }
331                                                   313 
332 static inline void lockdep_set_selftest_task(s    314 static inline void lockdep_set_selftest_task(struct task_struct *task)
333 {                                                 315 {
334 }                                                 316 }
335                                                   317 
336 # define lock_acquire(l, s, t, r, c, n, i)        318 # define lock_acquire(l, s, t, r, c, n, i)      do { } while (0)
337 # define lock_release(l, i)                       319 # define lock_release(l, i)                     do { } while (0)
338 # define lock_downgrade(l, i)                     320 # define lock_downgrade(l, i)                   do { } while (0)
339 # define lock_set_class(l, n, key, s, i)          321 # define lock_set_class(l, n, key, s, i)        do { (void)(key); } while (0)
340 # define lock_set_novalidate_class(l, n, i)       322 # define lock_set_novalidate_class(l, n, i)     do { } while (0)
341 # define lock_set_subclass(l, s, i)               323 # define lock_set_subclass(l, s, i)             do { } while (0)
342 # define lockdep_init()                           324 # define lockdep_init()                         do { } while (0)
343 # define lockdep_init_map_type(lock, name, key    325 # define lockdep_init_map_type(lock, name, key, sub, inner, outer, type) \
344                 do { (void)(name); (void)(key)    326                 do { (void)(name); (void)(key); } while (0)
345 # define lockdep_init_map_waits(lock, name, ke    327 # define lockdep_init_map_waits(lock, name, key, sub, inner, outer) \
346                 do { (void)(name); (void)(key)    328                 do { (void)(name); (void)(key); } while (0)
347 # define lockdep_init_map_wait(lock, name, key    329 # define lockdep_init_map_wait(lock, name, key, sub, inner) \
348                 do { (void)(name); (void)(key)    330                 do { (void)(name); (void)(key); } while (0)
349 # define lockdep_init_map(lock, name, key, sub    331 # define lockdep_init_map(lock, name, key, sub) \
350                 do { (void)(name); (void)(key)    332                 do { (void)(name); (void)(key); } while (0)
351 # define lockdep_set_class(lock, key)             333 # define lockdep_set_class(lock, key)           do { (void)(key); } while (0)
352 # define lockdep_set_class_and_name(lock, key,    334 # define lockdep_set_class_and_name(lock, key, name) \
353                 do { (void)(key); (void)(name)    335                 do { (void)(key); (void)(name); } while (0)
354 #define lockdep_set_class_and_subclass(lock, k    336 #define lockdep_set_class_and_subclass(lock, key, sub) \
355                 do { (void)(key); } while (0)     337                 do { (void)(key); } while (0)
356 #define lockdep_set_subclass(lock, sub)           338 #define lockdep_set_subclass(lock, sub)         do { } while (0)
357                                                   339 
358 #define lockdep_set_novalidate_class(lock) do     340 #define lockdep_set_novalidate_class(lock) do { } while (0)
359 #define lockdep_set_notrack_class(lock) do { } << 
360                                                   341 
361 /*                                                342 /*
362  * We don't define lockdep_match_class() and l    343  * We don't define lockdep_match_class() and lockdep_match_key() for !LOCKDEP
363  * case since the result is not well defined a    344  * case since the result is not well defined and the caller should rather
364  * #ifdef the call himself.                       345  * #ifdef the call himself.
365  */                                               346  */
366                                                   347 
367 # define lockdep_reset()                do { d    348 # define lockdep_reset()                do { debug_locks = 1; } while (0)
368 # define lockdep_free_key_range(start, size)      349 # define lockdep_free_key_range(start, size)    do { } while (0)
369 # define lockdep_sys_exit()                       350 # define lockdep_sys_exit()                     do { } while (0)
370                                                   351 
371 static inline void lockdep_register_key(struct    352 static inline void lockdep_register_key(struct lock_class_key *key)
372 {                                                 353 {
373 }                                                 354 }
374                                                   355 
375 static inline void lockdep_unregister_key(stru    356 static inline void lockdep_unregister_key(struct lock_class_key *key)
376 {                                                 357 {
377 }                                                 358 }
378                                                   359 
379 #define lockdep_depth(tsk)      (0)               360 #define lockdep_depth(tsk)      (0)
380                                                   361 
381 /*                                                362 /*
382  * Dummy forward declarations, allow users to     363  * Dummy forward declarations, allow users to write less ifdef-y code
383  * and depend on dead code elimination.           364  * and depend on dead code elimination.
384  */                                               365  */
385 extern int lock_is_held(const void *);            366 extern int lock_is_held(const void *);
386 extern int lockdep_is_held(const void *);         367 extern int lockdep_is_held(const void *);
387 #define lockdep_is_held_type(l, r)                368 #define lockdep_is_held_type(l, r)              (1)
388                                                   369 
389 #define lockdep_assert(c)                         370 #define lockdep_assert(c)                       do { } while (0)
390 #define lockdep_assert_once(c)                    371 #define lockdep_assert_once(c)                  do { } while (0)
391                                                   372 
392 #define lockdep_assert_held(l)                    373 #define lockdep_assert_held(l)                  do { (void)(l); } while (0)
393 #define lockdep_assert_not_held(l)                374 #define lockdep_assert_not_held(l)              do { (void)(l); } while (0)
394 #define lockdep_assert_held_write(l)              375 #define lockdep_assert_held_write(l)            do { (void)(l); } while (0)
395 #define lockdep_assert_held_read(l)               376 #define lockdep_assert_held_read(l)             do { (void)(l); } while (0)
396 #define lockdep_assert_held_once(l)               377 #define lockdep_assert_held_once(l)             do { (void)(l); } while (0)
397 #define lockdep_assert_none_held_once() do { }    378 #define lockdep_assert_none_held_once() do { } while (0)
398                                                   379 
399 #define lockdep_recursing(tsk)                    380 #define lockdep_recursing(tsk)                  (0)
400                                                   381 
401 #define NIL_COOKIE (struct pin_cookie){ }         382 #define NIL_COOKIE (struct pin_cookie){ }
402                                                   383 
403 #define lockdep_pin_lock(l)                       384 #define lockdep_pin_lock(l)                     ({ struct pin_cookie cookie = { }; cookie; })
404 #define lockdep_repin_lock(l, c)                  385 #define lockdep_repin_lock(l, c)                do { (void)(l); (void)(c); } while (0)
405 #define lockdep_unpin_lock(l, c)                  386 #define lockdep_unpin_lock(l, c)                do { (void)(l); (void)(c); } while (0)
406                                                   387 
407 #define DEFINE_WAIT_OVERRIDE_MAP(_name, _wait_    388 #define DEFINE_WAIT_OVERRIDE_MAP(_name, _wait_type)     \
408         struct lockdep_map __maybe_unused _nam    389         struct lockdep_map __maybe_unused _name = {}
409                                                   390 
410 #endif /* !LOCKDEP */                             391 #endif /* !LOCKDEP */
411                                                   392 
412 #ifdef CONFIG_PROVE_LOCKING                       393 #ifdef CONFIG_PROVE_LOCKING
413 void lockdep_set_lock_cmp_fn(struct lockdep_ma    394 void lockdep_set_lock_cmp_fn(struct lockdep_map *, lock_cmp_fn, lock_print_fn);
414                                                   395 
415 #define lock_set_cmp_fn(lock, ...)      lockde    396 #define lock_set_cmp_fn(lock, ...)      lockdep_set_lock_cmp_fn(&(lock)->dep_map, __VA_ARGS__)
416 #else                                             397 #else
417 #define lock_set_cmp_fn(lock, ...)      do { }    398 #define lock_set_cmp_fn(lock, ...)      do { } while (0)
418 #endif                                            399 #endif
419                                                   400 
420 enum xhlock_context_t {                           401 enum xhlock_context_t {
421         XHLOCK_HARD,                              402         XHLOCK_HARD,
422         XHLOCK_SOFT,                              403         XHLOCK_SOFT,
423         XHLOCK_CTX_NR,                            404         XHLOCK_CTX_NR,
424 };                                                405 };
425                                                   406 
426 /*                                                407 /*
427  * To initialize a lockdep_map statically use     408  * To initialize a lockdep_map statically use this macro.
428  * Note that _name must not be NULL.              409  * Note that _name must not be NULL.
429  */                                               410  */
430 #define STATIC_LOCKDEP_MAP_INIT(_name, _key) \    411 #define STATIC_LOCKDEP_MAP_INIT(_name, _key) \
431         { .name = (_name), .key = (void *)(_ke    412         { .name = (_name), .key = (void *)(_key), }
432                                                   413 
433 static inline void lockdep_invariant_state(boo    414 static inline void lockdep_invariant_state(bool force) {}
434 static inline void lockdep_free_task(struct ta    415 static inline void lockdep_free_task(struct task_struct *task) {}
435                                                   416 
436 #ifdef CONFIG_LOCK_STAT                           417 #ifdef CONFIG_LOCK_STAT
437                                                   418 
438 extern void lock_contended(struct lockdep_map     419 extern void lock_contended(struct lockdep_map *lock, unsigned long ip);
439 extern void lock_acquired(struct lockdep_map *    420 extern void lock_acquired(struct lockdep_map *lock, unsigned long ip);
440                                                   421 
441 #define LOCK_CONTENDED(_lock, try, lock)          422 #define LOCK_CONTENDED(_lock, try, lock)                        \
442 do {                                              423 do {                                                            \
443         if (!try(_lock)) {                        424         if (!try(_lock)) {                                      \
444                 lock_contended(&(_lock)->dep_m    425                 lock_contended(&(_lock)->dep_map, _RET_IP_);    \
445                 lock(_lock);                      426                 lock(_lock);                                    \
446         }                                         427         }                                                       \
447         lock_acquired(&(_lock)->dep_map, _RET_    428         lock_acquired(&(_lock)->dep_map, _RET_IP_);                     \
448 } while (0)                                       429 } while (0)
449                                                   430 
450 #define LOCK_CONTENDED_RETURN(_lock, try, lock    431 #define LOCK_CONTENDED_RETURN(_lock, try, lock)                 \
451 ({                                                432 ({                                                              \
452         int ____err = 0;                          433         int ____err = 0;                                        \
453         if (!try(_lock)) {                        434         if (!try(_lock)) {                                      \
454                 lock_contended(&(_lock)->dep_m    435                 lock_contended(&(_lock)->dep_map, _RET_IP_);    \
455                 ____err = lock(_lock);            436                 ____err = lock(_lock);                          \
456         }                                         437         }                                                       \
457         if (!____err)                             438         if (!____err)                                           \
458                 lock_acquired(&(_lock)->dep_ma    439                 lock_acquired(&(_lock)->dep_map, _RET_IP_);     \
459         ____err;                                  440         ____err;                                                \
460 })                                                441 })
461                                                   442 
462 #else /* CONFIG_LOCK_STAT */                      443 #else /* CONFIG_LOCK_STAT */
463                                                   444 
464 #define lock_contended(lockdep_map, ip) do {}     445 #define lock_contended(lockdep_map, ip) do {} while (0)
465 #define lock_acquired(lockdep_map, ip) do {} w    446 #define lock_acquired(lockdep_map, ip) do {} while (0)
466                                                   447 
467 #define LOCK_CONTENDED(_lock, try, lock) \        448 #define LOCK_CONTENDED(_lock, try, lock) \
468         lock(_lock)                               449         lock(_lock)
469                                                   450 
470 #define LOCK_CONTENDED_RETURN(_lock, try, lock    451 #define LOCK_CONTENDED_RETURN(_lock, try, lock) \
471         lock(_lock)                               452         lock(_lock)
472                                                   453 
473 #endif /* CONFIG_LOCK_STAT */                     454 #endif /* CONFIG_LOCK_STAT */
474                                                   455 
475 #ifdef CONFIG_PROVE_LOCKING                       456 #ifdef CONFIG_PROVE_LOCKING
476 extern void print_irqtrace_events(struct task_    457 extern void print_irqtrace_events(struct task_struct *curr);
477 #else                                             458 #else
478 static inline void print_irqtrace_events(struc    459 static inline void print_irqtrace_events(struct task_struct *curr)
479 {                                                 460 {
480 }                                                 461 }
481 #endif                                            462 #endif
482                                                   463 
483 /* Variable used to make lockdep treat read_lo    464 /* Variable used to make lockdep treat read_lock() as recursive in selftests */
484 #ifdef CONFIG_DEBUG_LOCKING_API_SELFTESTS         465 #ifdef CONFIG_DEBUG_LOCKING_API_SELFTESTS
485 extern unsigned int force_read_lock_recursive;    466 extern unsigned int force_read_lock_recursive;
486 #else /* CONFIG_DEBUG_LOCKING_API_SELFTESTS */    467 #else /* CONFIG_DEBUG_LOCKING_API_SELFTESTS */
487 #define force_read_lock_recursive 0               468 #define force_read_lock_recursive 0
488 #endif /* CONFIG_DEBUG_LOCKING_API_SELFTESTS *    469 #endif /* CONFIG_DEBUG_LOCKING_API_SELFTESTS */
489                                                   470 
490 #ifdef CONFIG_LOCKDEP                             471 #ifdef CONFIG_LOCKDEP
491 extern bool read_lock_is_recursive(void);         472 extern bool read_lock_is_recursive(void);
492 #else /* CONFIG_LOCKDEP */                        473 #else /* CONFIG_LOCKDEP */
493 /* If !LOCKDEP, the value is meaningless */       474 /* If !LOCKDEP, the value is meaningless */
494 #define read_lock_is_recursive() 0                475 #define read_lock_is_recursive() 0
495 #endif                                            476 #endif
496                                                   477 
497 /*                                                478 /*
498  * For trivial one-depth nesting of a lock-cla    479  * For trivial one-depth nesting of a lock-class, the following
499  * global define can be used. (Subsystems with    480  * global define can be used. (Subsystems with multiple levels
500  * of nesting should define their own lock-nes    481  * of nesting should define their own lock-nesting subclasses.)
501  */                                               482  */
502 #define SINGLE_DEPTH_NESTING                      483 #define SINGLE_DEPTH_NESTING                    1
503                                                   484 
504 /*                                                485 /*
505  * Map the dependency ops to NOP or to real lo    486  * Map the dependency ops to NOP or to real lockdep ops, depending
506  * on the per lock-class debug mode:              487  * on the per lock-class debug mode:
507  */                                               488  */
508                                                   489 
509 #define lock_acquire_exclusive(l, s, t, n, i)     490 #define lock_acquire_exclusive(l, s, t, n, i)           lock_acquire(l, s, t, 0, 1, n, i)
510 #define lock_acquire_shared(l, s, t, n, i)        491 #define lock_acquire_shared(l, s, t, n, i)              lock_acquire(l, s, t, 1, 1, n, i)
511 #define lock_acquire_shared_recursive(l, s, t,    492 #define lock_acquire_shared_recursive(l, s, t, n, i)    lock_acquire(l, s, t, 2, 1, n, i)
512                                                   493 
513 #define spin_acquire(l, s, t, i)                  494 #define spin_acquire(l, s, t, i)                lock_acquire_exclusive(l, s, t, NULL, i)
514 #define spin_acquire_nest(l, s, t, n, i)          495 #define spin_acquire_nest(l, s, t, n, i)        lock_acquire_exclusive(l, s, t, n, i)
515 #define spin_release(l, i)                        496 #define spin_release(l, i)                      lock_release(l, i)
516                                                   497 
517 #define rwlock_acquire(l, s, t, i)                498 #define rwlock_acquire(l, s, t, i)              lock_acquire_exclusive(l, s, t, NULL, i)
518 #define rwlock_acquire_read(l, s, t, i)           499 #define rwlock_acquire_read(l, s, t, i)                                 \
519 do {                                              500 do {                                                                    \
520         if (read_lock_is_recursive())             501         if (read_lock_is_recursive())                                   \
521                 lock_acquire_shared_recursive(    502                 lock_acquire_shared_recursive(l, s, t, NULL, i);        \
522         else                                      503         else                                                            \
523                 lock_acquire_shared(l, s, t, N    504                 lock_acquire_shared(l, s, t, NULL, i);                  \
524 } while (0)                                       505 } while (0)
525                                                   506 
526 #define rwlock_release(l, i)                      507 #define rwlock_release(l, i)                    lock_release(l, i)
527                                                   508 
528 #define seqcount_acquire(l, s, t, i)              509 #define seqcount_acquire(l, s, t, i)            lock_acquire_exclusive(l, s, t, NULL, i)
529 #define seqcount_acquire_read(l, s, t, i)         510 #define seqcount_acquire_read(l, s, t, i)       lock_acquire_shared_recursive(l, s, t, NULL, i)
530 #define seqcount_release(l, i)                    511 #define seqcount_release(l, i)                  lock_release(l, i)
531                                                   512 
532 #define mutex_acquire(l, s, t, i)                 513 #define mutex_acquire(l, s, t, i)               lock_acquire_exclusive(l, s, t, NULL, i)
533 #define mutex_acquire_nest(l, s, t, n, i)         514 #define mutex_acquire_nest(l, s, t, n, i)       lock_acquire_exclusive(l, s, t, n, i)
534 #define mutex_release(l, i)                       515 #define mutex_release(l, i)                     lock_release(l, i)
535                                                   516 
536 #define rwsem_acquire(l, s, t, i)                 517 #define rwsem_acquire(l, s, t, i)               lock_acquire_exclusive(l, s, t, NULL, i)
537 #define rwsem_acquire_nest(l, s, t, n, i)         518 #define rwsem_acquire_nest(l, s, t, n, i)       lock_acquire_exclusive(l, s, t, n, i)
538 #define rwsem_acquire_read(l, s, t, i)            519 #define rwsem_acquire_read(l, s, t, i)          lock_acquire_shared(l, s, t, NULL, i)
539 #define rwsem_release(l, i)                       520 #define rwsem_release(l, i)                     lock_release(l, i)
540                                                   521 
541 #define lock_map_acquire(l)                       522 #define lock_map_acquire(l)                     lock_acquire_exclusive(l, 0, 0, NULL, _THIS_IP_)
542 #define lock_map_acquire_try(l)                   523 #define lock_map_acquire_try(l)                 lock_acquire_exclusive(l, 0, 1, NULL, _THIS_IP_)
543 #define lock_map_acquire_read(l)                  524 #define lock_map_acquire_read(l)                lock_acquire_shared_recursive(l, 0, 0, NULL, _THIS_IP_)
544 #define lock_map_acquire_tryread(l)               525 #define lock_map_acquire_tryread(l)             lock_acquire_shared_recursive(l, 0, 1, NULL, _THIS_IP_)
545 #define lock_map_release(l)                       526 #define lock_map_release(l)                     lock_release(l, _THIS_IP_)
546 #define lock_map_sync(l)                          527 #define lock_map_sync(l)                        lock_sync(l, 0, 0, 1, NULL, _THIS_IP_)
547                                                   528 
548 #ifdef CONFIG_PROVE_LOCKING                       529 #ifdef CONFIG_PROVE_LOCKING
549 # define might_lock(lock)                         530 # define might_lock(lock)                                               \
550 do {                                              531 do {                                                                    \
551         typecheck(struct lockdep_map *, &(lock    532         typecheck(struct lockdep_map *, &(lock)->dep_map);              \
552         lock_acquire(&(lock)->dep_map, 0, 0, 0    533         lock_acquire(&(lock)->dep_map, 0, 0, 0, 1, NULL, _THIS_IP_);    \
553         lock_release(&(lock)->dep_map, _THIS_I    534         lock_release(&(lock)->dep_map, _THIS_IP_);                      \
554 } while (0)                                       535 } while (0)
555 # define might_lock_read(lock)                    536 # define might_lock_read(lock)                                          \
556 do {                                              537 do {                                                                    \
557         typecheck(struct lockdep_map *, &(lock    538         typecheck(struct lockdep_map *, &(lock)->dep_map);              \
558         lock_acquire(&(lock)->dep_map, 0, 0, 1    539         lock_acquire(&(lock)->dep_map, 0, 0, 1, 1, NULL, _THIS_IP_);    \
559         lock_release(&(lock)->dep_map, _THIS_I    540         lock_release(&(lock)->dep_map, _THIS_IP_);                      \
560 } while (0)                                       541 } while (0)
561 # define might_lock_nested(lock, subclass)        542 # define might_lock_nested(lock, subclass)                              \
562 do {                                              543 do {                                                                    \
563         typecheck(struct lockdep_map *, &(lock    544         typecheck(struct lockdep_map *, &(lock)->dep_map);              \
564         lock_acquire(&(lock)->dep_map, subclas    545         lock_acquire(&(lock)->dep_map, subclass, 0, 1, 1, NULL,         \
565                      _THIS_IP_);                  546                      _THIS_IP_);                                        \
566         lock_release(&(lock)->dep_map, _THIS_I    547         lock_release(&(lock)->dep_map, _THIS_IP_);                      \
567 } while (0)                                       548 } while (0)
568                                                   549 
569 DECLARE_PER_CPU(int, hardirqs_enabled);           550 DECLARE_PER_CPU(int, hardirqs_enabled);
570 DECLARE_PER_CPU(int, hardirq_context);            551 DECLARE_PER_CPU(int, hardirq_context);
571 DECLARE_PER_CPU(unsigned int, lockdep_recursio    552 DECLARE_PER_CPU(unsigned int, lockdep_recursion);
572                                                   553 
573 #define __lockdep_enabled       (debug_locks &    554 #define __lockdep_enabled       (debug_locks && !this_cpu_read(lockdep_recursion))
574                                                   555 
575 #define lockdep_assert_irqs_enabled()             556 #define lockdep_assert_irqs_enabled()                                   \
576 do {                                              557 do {                                                                    \
577         WARN_ON_ONCE(__lockdep_enabled && !thi    558         WARN_ON_ONCE(__lockdep_enabled && !this_cpu_read(hardirqs_enabled)); \
578 } while (0)                                       559 } while (0)
579                                                   560 
580 #define lockdep_assert_irqs_disabled()            561 #define lockdep_assert_irqs_disabled()                                  \
581 do {                                              562 do {                                                                    \
582         WARN_ON_ONCE(__lockdep_enabled && this    563         WARN_ON_ONCE(__lockdep_enabled && this_cpu_read(hardirqs_enabled)); \
583 } while (0)                                       564 } while (0)
584                                                   565 
585 #define lockdep_assert_in_irq()                   566 #define lockdep_assert_in_irq()                                         \
586 do {                                              567 do {                                                                    \
587         WARN_ON_ONCE(__lockdep_enabled && !thi    568         WARN_ON_ONCE(__lockdep_enabled && !this_cpu_read(hardirq_context)); \
588 } while (0)                                       569 } while (0)
589                                                   570 
590 #define lockdep_assert_no_hardirq()               571 #define lockdep_assert_no_hardirq()                                     \
591 do {                                              572 do {                                                                    \
592         WARN_ON_ONCE(__lockdep_enabled && (thi    573         WARN_ON_ONCE(__lockdep_enabled && (this_cpu_read(hardirq_context) || \
593                                            !th    574                                            !this_cpu_read(hardirqs_enabled))); \
594 } while (0)                                       575 } while (0)
595                                                   576 
596 #define lockdep_assert_preemption_enabled()       577 #define lockdep_assert_preemption_enabled()                             \
597 do {                                              578 do {                                                                    \
598         WARN_ON_ONCE(IS_ENABLED(CONFIG_PREEMPT    579         WARN_ON_ONCE(IS_ENABLED(CONFIG_PREEMPT_COUNT)   &&              \
599                      __lockdep_enabled            580                      __lockdep_enabled                  &&              \
600                      (preempt_count() != 0        581                      (preempt_count() != 0              ||              \
601                       !this_cpu_read(hardirqs_    582                       !this_cpu_read(hardirqs_enabled)));               \
602 } while (0)                                       583 } while (0)
603                                                   584 
604 #define lockdep_assert_preemption_disabled()      585 #define lockdep_assert_preemption_disabled()                            \
605 do {                                              586 do {                                                                    \
606         WARN_ON_ONCE(IS_ENABLED(CONFIG_PREEMPT    587         WARN_ON_ONCE(IS_ENABLED(CONFIG_PREEMPT_COUNT)   &&              \
607                      __lockdep_enabled            588                      __lockdep_enabled                  &&              \
608                      (preempt_count() == 0        589                      (preempt_count() == 0              &&              \
609                       this_cpu_read(hardirqs_e    590                       this_cpu_read(hardirqs_enabled)));                \
610 } while (0)                                       591 } while (0)
611                                                   592 
612 /*                                                593 /*
613  * Acceptable for protecting per-CPU resources    594  * Acceptable for protecting per-CPU resources accessed from BH.
614  * Much like in_softirq() - semantics are ambi    595  * Much like in_softirq() - semantics are ambiguous, use carefully.
615  */                                               596  */
616 #define lockdep_assert_in_softirq()               597 #define lockdep_assert_in_softirq()                                     \
617 do {                                              598 do {                                                                    \
618         WARN_ON_ONCE(__lockdep_enabled            599         WARN_ON_ONCE(__lockdep_enabled                  &&              \
619                      (!in_softirq() || in_irq(    600                      (!in_softirq() || in_irq() || in_nmi()));          \
620 } while (0)                                       601 } while (0)
621                                                   602 
622 extern void lockdep_assert_in_softirq_func(voi << 
623                                                << 
624 #else                                             603 #else
625 # define might_lock(lock) do { } while (0)        604 # define might_lock(lock) do { } while (0)
626 # define might_lock_read(lock) do { } while (0    605 # define might_lock_read(lock) do { } while (0)
627 # define might_lock_nested(lock, subclass) do     606 # define might_lock_nested(lock, subclass) do { } while (0)
628                                                   607 
629 # define lockdep_assert_irqs_enabled() do { }     608 # define lockdep_assert_irqs_enabled() do { } while (0)
630 # define lockdep_assert_irqs_disabled() do { }    609 # define lockdep_assert_irqs_disabled() do { } while (0)
631 # define lockdep_assert_in_irq() do { } while     610 # define lockdep_assert_in_irq() do { } while (0)
632 # define lockdep_assert_no_hardirq() do { } wh    611 # define lockdep_assert_no_hardirq() do { } while (0)
633                                                   612 
634 # define lockdep_assert_preemption_enabled() d    613 # define lockdep_assert_preemption_enabled() do { } while (0)
635 # define lockdep_assert_preemption_disabled()     614 # define lockdep_assert_preemption_disabled() do { } while (0)
636 # define lockdep_assert_in_softirq() do { } wh    615 # define lockdep_assert_in_softirq() do { } while (0)
637 # define lockdep_assert_in_softirq_func() do { << 
638 #endif                                            616 #endif
639                                                   617 
640 #ifdef CONFIG_PROVE_RAW_LOCK_NESTING              618 #ifdef CONFIG_PROVE_RAW_LOCK_NESTING
641                                                   619 
642 # define lockdep_assert_RT_in_threaded_ctx() d    620 # define lockdep_assert_RT_in_threaded_ctx() do {                       \
643                 WARN_ONCE(debug_locks && !curr    621                 WARN_ONCE(debug_locks && !current->lockdep_recursion && \
644                           lockdep_hardirq_cont    622                           lockdep_hardirq_context() &&                  \
645                           !(current->hardirq_t    623                           !(current->hardirq_threaded || current->irq_config),  \
646                           "Not in threaded con    624                           "Not in threaded context on PREEMPT_RT as expected\n");       \
647 } while (0)                                       625 } while (0)
648                                                   626 
649 #else                                             627 #else
650                                                   628 
651 # define lockdep_assert_RT_in_threaded_ctx() d    629 # define lockdep_assert_RT_in_threaded_ctx() do { } while (0)
652                                                   630 
653 #endif                                            631 #endif
654                                                   632 
655 #ifdef CONFIG_LOCKDEP                             633 #ifdef CONFIG_LOCKDEP
656 void lockdep_rcu_suspicious(const char *file,     634 void lockdep_rcu_suspicious(const char *file, const int line, const char *s);
657 #else                                             635 #else
658 static inline void                                636 static inline void
659 lockdep_rcu_suspicious(const char *file, const    637 lockdep_rcu_suspicious(const char *file, const int line, const char *s)
660 {                                                 638 {
661 }                                                 639 }
662 #endif                                            640 #endif
663                                                   641 
664 #endif /* __LINUX_LOCKDEP_H */                    642 #endif /* __LINUX_LOCKDEP_H */
665                                                   643 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php