Symbol: lockdep_depth
include/linux/lockdep.h
276
#define lockdep_depth(tsk) (debug_locks ? (tsk)->lockdep_depth : 0)
include/linux/lockdep.h
300
lockdep_assert_once(!current->lockdep_depth)
include/linux/sched.h
1269
int lockdep_depth;
init/init_task.c
229
.lockdep_depth = 0, /* no locks held yet */
kernel/freezer.c
139
WARN_ON_ONCE(debug_locks && p->lockdep_depth);
kernel/locking/lockdep.c
3064
for (i = 0; i < curr->lockdep_depth; i++) {
kernel/locking/lockdep.c
3261
int depth = curr->lockdep_depth;
kernel/locking/lockdep.c
3280
u16 distance = curr->lockdep_depth - depth + 1;
kernel/locking/lockdep.c
3576
for (i = curr->lockdep_depth - 1; i >= 0; i--) {
kernel/locking/lockdep.c
3605
int depth = curr->lockdep_depth;
kernel/locking/lockdep.c
3679
if (DEBUG_LOCKS_WARN_ON(chain->depth != curr->lockdep_depth - (i - 1))) {
kernel/locking/lockdep.c
3760
chain->depth = curr->lockdep_depth + 1 - i;
kernel/locking/lockdep.c
3943
for (i = 0; i < curr->lockdep_depth; i++) {
kernel/locking/lockdep.c
3952
curr->lockdep_depth, i,
kernel/locking/lockdep.c
3978
curr->lockdep_depth, i,
kernel/locking/lockdep.c
4313
for (i = 0; i < curr->lockdep_depth; i++) {
kernel/locking/lockdep.c
458
task->lockdep_depth = 0; /* no locks held yet */
kernel/locking/lockdep.c
4689
unsigned int depth = curr->lockdep_depth;
kernel/locking/lockdep.c
4868
for (depth = curr->lockdep_depth - 1; depth >= 0; depth--) {
kernel/locking/lockdep.c
4877
for (; depth < curr->lockdep_depth; depth++) {
kernel/locking/lockdep.c
5134
depth = curr->lockdep_depth;
kernel/locking/lockdep.c
5245
curr->lockdep_depth++;
kernel/locking/lockdep.c
5251
if (unlikely(curr->lockdep_depth >= MAX_LOCK_DEPTH)) {
kernel/locking/lockdep.c
5256
curr->lockdep_depth, MAX_LOCK_DEPTH);
kernel/locking/lockdep.c
5266
if (unlikely(curr->lockdep_depth > max_lockdep_depth))
kernel/locking/lockdep.c
5267
max_lockdep_depth = curr->lockdep_depth;
kernel/locking/lockdep.c
5421
depth = curr->lockdep_depth;
kernel/locking/lockdep.c
5442
curr->lockdep_depth = i;
kernel/locking/lockdep.c
5452
if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth - merged))
kernel/locking/lockdep.c
5467
depth = curr->lockdep_depth;
kernel/locking/lockdep.c
5481
curr->lockdep_depth = i;
kernel/locking/lockdep.c
5499
if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth))
kernel/locking/lockdep.c
5521
depth = curr->lockdep_depth;
kernel/locking/lockdep.c
5564
curr->lockdep_depth = i;
kernel/locking/lockdep.c
5582
DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth - merged);
kernel/locking/lockdep.c
5598
for (i = 0; i < curr->lockdep_depth; i++) {
kernel/locking/lockdep.c
5621
for (i = 0; i < curr->lockdep_depth; i++) {
kernel/locking/lockdep.c
5648
for (i = 0; i < curr->lockdep_depth; i++) {
kernel/locking/lockdep.c
5668
for (i = 0; i < curr->lockdep_depth; i++) {
kernel/locking/lockdep.c
6044
depth = curr->lockdep_depth;
kernel/locking/lockdep.c
6089
depth = curr->lockdep_depth;
kernel/locking/lockdep.c
6721
for (i = 0; i < curr->lockdep_depth; i++) {
kernel/locking/lockdep.c
6759
if (unlikely(current->lockdep_depth > 0))
kernel/locking/lockdep.c
6777
if (!p->lockdep_depth)
kernel/locking/lockdep.c
6809
if (unlikely(curr->lockdep_depth)) {
kernel/locking/lockdep.c
788
int i, depth = READ_ONCE(p->lockdep_depth);
kernel/workqueue.c
3248
lockdep_start_depth = lockdep_depth(current);
kernel/workqueue.c
3288
lockdep_depth(current) != lockdep_start_depth ||
kernel/workqueue.c
3293
lockdep_start_depth, lockdep_depth(current),
net/core/dev.c
12350
if (lockdep_depth(current) > limit)