Re: [PATCH v5 6/7] locking/lockdep: Reuse freed chain_hlocks entries
From: Peter Zijlstra
Date: Wed Feb 05 2020 - 04:48:49 EST
On Tue, Feb 04, 2020 at 11:57:09AM -0500, Waiman Long wrote:
> Wait, it is possible that we can have deadlock like this:
>
> cpu 0 cpu 1
> ----- -----
> lock A lock B
> <irq> <irq>
> lock B lock A
>
> If we eliminate 1-entry chain, will that impact our ability to detect this
> kind of deadlock?
I'm thinking that should trigger irq-inversion (irq-on vs in-irq) on
either A or B (depending on timing).
AFAICT the irq-state tracking is outside of validate_chain().
This is also why I think your separate_irq_context() change is not
needed.
validate_chain() really only checks the per-context lock nesting, and
there, a single lock doesn't do very much. Hence my proposed patch.