Skip to content

Commit 9a019db

Browse files
Peter ZijlstraIngo Molnar
authored andcommitted
locking/lockdep: Improve 'invalid wait context' splat
The 'invalid wait context' splat doesn't print all the information required to reconstruct / validate the error, specifically the irq-context state is missing. Signed-off-by: Peter Zijlstra (Intel) <[email protected]> Signed-off-by: Ingo Molnar <[email protected]>
1 parent a13f58a commit 9a019db

File tree

1 file changed

+31
-20
lines changed

1 file changed

+31
-20
lines changed

kernel/locking/lockdep.c

Lines changed: 31 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3952,10 +3952,36 @@ static int mark_lock(struct task_struct *curr, struct held_lock *this,
39523952
return ret;
39533953
}
39543954

3955+
static inline short task_wait_context(struct task_struct *curr)
3956+
{
3957+
/*
3958+
* Set appropriate wait type for the context; for IRQs we have to take
3959+
* into account force_irqthread as that is implied by PREEMPT_RT.
3960+
*/
3961+
if (curr->hardirq_context) {
3962+
/*
3963+
* Check if force_irqthreads will run us threaded.
3964+
*/
3965+
if (curr->hardirq_threaded || curr->irq_config)
3966+
return LD_WAIT_CONFIG;
3967+
3968+
return LD_WAIT_SPIN;
3969+
} else if (curr->softirq_context) {
3970+
/*
3971+
* Softirqs are always threaded.
3972+
*/
3973+
return LD_WAIT_CONFIG;
3974+
}
3975+
3976+
return LD_WAIT_MAX;
3977+
}
3978+
39553979
static int
39563980
print_lock_invalid_wait_context(struct task_struct *curr,
39573981
struct held_lock *hlock)
39583982
{
3983+
short curr_inner;
3984+
39593985
if (!debug_locks_off())
39603986
return 0;
39613987
if (debug_locks_silent)
@@ -3971,6 +3997,10 @@ print_lock_invalid_wait_context(struct task_struct *curr,
39713997
print_lock(hlock);
39723998

39733999
pr_warn("other info that might help us debug this:\n");
4000+
4001+
curr_inner = task_wait_context(curr);
4002+
pr_warn("context-{%d:%d}\n", curr_inner, curr_inner);
4003+
39744004
lockdep_print_held_locks(curr);
39754005

39764006
pr_warn("stack backtrace:\n");
@@ -4017,26 +4047,7 @@ static int check_wait_context(struct task_struct *curr, struct held_lock *next)
40174047
}
40184048
depth++;
40194049

4020-
/*
4021-
* Set appropriate wait type for the context; for IRQs we have to take
4022-
* into account force_irqthread as that is implied by PREEMPT_RT.
4023-
*/
4024-
if (curr->hardirq_context) {
4025-
/*
4026-
* Check if force_irqthreads will run us threaded.
4027-
*/
4028-
if (curr->hardirq_threaded || curr->irq_config)
4029-
curr_inner = LD_WAIT_CONFIG;
4030-
else
4031-
curr_inner = LD_WAIT_SPIN;
4032-
} else if (curr->softirq_context) {
4033-
/*
4034-
* Softirqs are always threaded.
4035-
*/
4036-
curr_inner = LD_WAIT_CONFIG;
4037-
} else {
4038-
curr_inner = LD_WAIT_MAX;
4039-
}
4050+
curr_inner = task_wait_context(curr);
40404051

40414052
for (; depth < curr->lockdep_depth; depth++) {
40424053
struct held_lock *prev = curr->held_locks + depth;

0 commit comments

Comments
 (0)