diff options
author | Sebastian Andrzej Siewior <[email protected]> | 2021-11-26 17:15:29 +0100 |
---|---|---|
committer | David S. Miller <[email protected]> | 2021-11-29 12:12:36 +0000 |
commit | fd888e85fe6b661e78044dddfec0be5271afa626 (patch) | |
tree | c1ef71d45fd053e110de5aeea2b0eb02b1e2c681 /tools/perf/scripts/python/netdev-times.py | |
parent | 07b8ca3792dec6bc3288b08ff85d80b5330de1d6 (diff) |
net: Write lock dev_base_lock without disabling bottom halves.
The writer acquires dev_base_lock with disabled bottom halves.
The reader can acquire dev_base_lock without disabling bottom halves
because there is no writer in softirq context.
On PREEMPT_RT the softirqs are preemptible and local_bh_disable() acts
as a lock to ensure that resources, that are protected by disabling
bottom halves, remain protected.
This leads to a circular locking dependency if the lock acquired with
disabled bottom halves (as in write_lock_bh()) and somewhere else with
enabled bottom halves (as by read_lock() in netstat_show()) followed by
disabling bottom halves (cxgb_get_stats() -> t4_wr_mbox_meat_timeout()
-> spin_lock_bh()). This is the reverse locking order.
All read_lock() invocation are from sysfs callback which are not invoked
from softirq context. Therefore there is no need to disable bottom
halves while acquiring a write lock.
Acquire the write lock of dev_base_lock without disabling bottom halves.
Reported-by: Pei Zhang <[email protected]>
Reported-by: Luis Claudio R. Goncalves <[email protected]>
Signed-off-by: Sebastian Andrzej Siewior <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/netdev-times.py')
0 files changed, 0 insertions, 0 deletions