Home
last modified time | relevance | path

Searched refs:nest_lock (Results 1 – 6 of 6) sorted by relevance

/linux/include/linux/
H A Drwsem.h284 extern void _down_write_nest_lock(struct rw_semaphore *sem, struct lockdep_map *nest_lock);
286 # define down_write_nest_lock(sem, nest_lock) \ argument
288 typecheck(struct lockdep_map *, &(nest_lock)->dep_map); \
289 _down_write_nest_lock(sem, &(nest_lock)->dep_map); \
303 # define down_write_nest_lock(sem, nest_lock) down_write(sem) argument
H A Dspinlock.h223 # define raw_spin_lock_nest_lock(lock, nest_lock) \ argument
225 typecheck(struct lockdep_map *, &(nest_lock)->dep_map);\
226 _raw_spin_lock_nest_lock(lock, &(nest_lock)->dep_map); \
236 # define raw_spin_lock_nest_lock(lock, nest_lock) _raw_spin_lock(lock) argument
369 #define spin_lock_nest_lock(lock, nest_lock) \ argument
371 raw_spin_lock_nest_lock(spinlock_check(lock), nest_lock); \
H A Dlockdep_types.h224 struct lockdep_map *nest_lock; member
/linux/kernel/locking/
H A Dww_rt_mutex.c41 struct lockdep_map __maybe_unused *nest_lock = NULL; in __ww_rt_mutex_lock() local
60 nest_lock = &ww_ctx->dep_map; in __ww_rt_mutex_lock()
63 mutex_acquire_nest(&rtm->dep_map, 0, 0, nest_lock, ip); in __ww_rt_mutex_lock()
H A Dlockdep.c3067 if (prev->instance == next->nest_lock) in check_deadlock()
5053 pr_warn("%s\n", hlock->nest_lock->name); in print_lock_nested_lock_not_held()
5079 struct lockdep_map *nest_lock, unsigned long ip, in __lock_acquire() argument
5146 if (hlock->class_idx == class_idx && nest_lock) { in __lock_acquire()
5173 hlock->nest_lock = nest_lock; in __lock_acquire()
5227 if (nest_lock && !__lock_is_held(nest_lock, -1)) { in __lock_acquire()
5329 if (DEBUG_LOCKS_WARN_ON(!hlock->nest_lock)) in match_held_lock()
5390 hlock->nest_lock, hlock->acquire_ip, in reacquire_held_locks()
5827 struct lockdep_map *nest_lock, unsigned long ip) in lock_acquire() argument
5831 trace_lock_acquire(lock, subclass, trylock, read, check, nest_lock, ip); in lock_acquire()
[all …]
/linux/tools/testing/vma/
H A Dvma_internal.h387 #define down_write_nest_lock(sem, nest_lock) argument