bcache: allow allocator to invalidate bucket in gc
authorDongsheng Yang <dongsheng.yang@easystack.cn>
Tue, 28 May 2024 12:09:12 +0000 (20:09 +0800)
committerJens Axboe <axboe@kernel.dk>
Tue, 28 May 2024 12:55:59 +0000 (06:55 -0600)
commita14a68b76954e73031ca6399abace17dcb77c17a
tree77ff48cb7db2dc996f3a56e91b04ac2b12fd3799
parente993db2d6e5207f1ae061c2ac554ab1f714c741d
bcache: allow allocator to invalidate bucket in gc

Currently, if the gc is running, when the allocator found free_inc
is empty, allocator has to wait the gc finish. Before that, the
IO is blocked.

But actually, there would be some buckets is reclaimable before gc,
and gc will never mark this kind of bucket to be unreclaimable.

So we can put these buckets into free_inc in gc running to avoid
IO being blocked.

Signed-off-by: Dongsheng Yang <dongsheng.yang@easystack.cn>
Signed-off-by: Mingzhe Zou <mingzhe.zou@easystack.cn>
Signed-off-by: Coly Li <colyli@suse.de>
Link: https://lore.kernel.org/r/20240528120914.28705-2-colyli@suse.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/alloc.c
drivers/md/bcache/bcache.h
drivers/md/bcache/btree.c