]> git.baikalelectronics.ru Git - kernel.git/commit
cgroup: rstat: fix A-A deadlock on 32bit around u64_stats_sync
authorTejun Heo <tj@kernel.org>
Tue, 27 Jul 2021 23:12:20 +0000 (13:12 -1000)
committerTejun Heo <tj@kernel.org>
Tue, 27 Jul 2021 23:12:20 +0000 (13:12 -1000)
commit0cd853481f537690e13433d85010b4699b4e847f
tree58e8de70658fb85ae8e451194bd9aa742618acec
parent0d5c78029348ed9bc431dc4a381a3e70d7dc4107
cgroup: rstat: fix A-A deadlock on 32bit around u64_stats_sync

c6b270afd0ad ("cgroup: Replace cgroup_rstat_mutex with a spinlock") added
cgroup_rstat_flush_irqsafe() allowing flushing to happen from the irq
context. However, rstat paths use u64_stats_sync to synchronize access to
64bit stat counters on 32bit machines. u64_stats_sync is implemented using
seq_lock and trying to read from an irq context can lead to A-A deadlock if
the irq happens to interrupt the stat update.

Fix it by using the irqsafe variants - u64_stats_update_begin_irqsave() and
u64_stats_update_end_irqrestore() - in the update paths. Note that none of
this matters on 64bit machines. All these are just for 32bit SMP setups.

Note that the interface was introduced way back, its first and currently
only use was recently added by ab056c9e920b ("mm: memcontrol: switch to
rstat"). Stable tagging targets this commit.

Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: Rik van Riel <riel@surriel.com>
Fixes: ab056c9e920b ("mm: memcontrol: switch to rstat")
Cc: stable@vger.kernel.org # v5.13+
block/blk-cgroup.c
kernel/cgroup/rstat.c