diff options
author | Yu Kuai <yukuai3@huawei.com> | 2023-01-03 09:47:55 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2023-01-16 04:53:27 +0100 |
commit | 216f764716f34fe68cedc7296ae2043a7727e640 (patch) | |
tree | 2e5261483bfdff8833f016b56ea997a1b48294d7 /drivers/block | |
parent | Merge branch 'md-fixes' of https://git.kernel.org/pub/scm/linux/kernel/git/so... (diff) | |
download | linux-216f764716f34fe68cedc7296ae2043a7727e640.tar.xz linux-216f764716f34fe68cedc7296ae2043a7727e640.zip |
block, bfq: switch 'bfqg->ref' to use atomic refcount apis
The updating of 'bfqg->ref' should be protected by 'bfqd->lock', however,
during code review, we found that bfq_pd_free() update 'bfqg->ref'
without holding the lock, which is problematic:
1) bfq_pd_free() triggered by removing cgroup is called asynchronously;
2) bfqq will grab bfqg reference, and exit bfqq will drop the reference,
which can concurrent with 1).
Unfortunately, 'bfqd->lock' can't be held here because 'bfqd' might already
be freed in bfq_pd_free(). Fix the problem by using atomic refcount apis.
Signed-off-by: Yu Kuai <yukuai3@huawei.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Link: https://lore.kernel.org/r/20230103084755.1256479-1-yukuai1@huaweicloud.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/block')
0 files changed, 0 insertions, 0 deletions