bcachefs: Change bch2_btree_key_cache_count() to exclude dirty keys
authorKent Overstreet <kent.overstreet@gmail.com>
Tue, 27 Apr 2021 18:02:00 +0000 (14:02 -0400)
committerKent Overstreet <kent.overstreet@linux.dev>
Sun, 22 Oct 2023 21:09:02 +0000 (17:09 -0400)
We're seeing livelocks that appear to be due to
bch2_btree_key_cache_scan repeatedly scanning and blocking other tasks
from using the key cache lock - we probably shouldn't be reporting
objects that can't actually be freed yet.

Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
fs/bcachefs/btree_key_cache.c

index f8b9ca4..221cb0f 100644 (file)
@@ -646,8 +646,10 @@ static unsigned long bch2_btree_key_cache_count(struct shrinker *shrink,
        struct bch_fs *c = container_of(shrink, struct bch_fs,
                                        btree_key_cache.shrink);
        struct btree_key_cache *bc = &c->btree_key_cache;
+       long nr = atomic_long_read(&bc->nr_keys) -
+               atomic_long_read(&bc->nr_dirty);
 
-       return atomic_long_read(&bc->nr_keys);
+       return max(0L, nr);
 }
 
 void bch2_fs_btree_key_cache_exit(struct btree_key_cache *bc)