blk-cgroup: fix list corruption from resetting io stat
authorMing Lei <ming.lei@redhat.com>
Wed, 15 May 2024 01:31:56 +0000 (09:31 +0800)
committerJens Axboe <axboe@kernel.dk>
Thu, 16 May 2024 02:14:20 +0000 (20:14 -0600)
commit6da6680632792709cecf2b006f2fe3ca7857e791
treedc7324c953f3bfa9a9b02d1f48d5370e7f7baaa3
parentefb905aeb44b0e99c0e6b07865b1885ae0471ebf
blk-cgroup: fix list corruption from resetting io stat

Since commit 3b8cc6298724 ("blk-cgroup: Optimize blkcg_rstat_flush()"),
each iostat instance is added to blkcg percpu list, so blkcg_reset_stats()
can't reset the stat instance by memset(), otherwise the llist may be
corrupted.

Fix the issue by only resetting the counter part.

Cc: Tejun Heo <tj@kernel.org>
Cc: Waiman Long <longman@redhat.com>
Cc: Jay Shin <jaeshin@redhat.com>
Fixes: 3b8cc6298724 ("blk-cgroup: Optimize blkcg_rstat_flush()")
Signed-off-by: Ming Lei <ming.lei@redhat.com>
Acked-by: Tejun Heo <tj@kernel.org>
Reviewed-by: Waiman Long <longman@redhat.com>
Link: https://lore.kernel.org/r/20240515013157.443672-2-ming.lei@redhat.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-cgroup.c