diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2024-09-06 04:18:57 +0300 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2024-09-09 16:41:47 +0300 |
commit | 2c377d8a71db32d4125d30b3641f2bc51c6850ca (patch) | |
tree | 6f5e5308b628c0ba0020bbbc0aee61e4bd4a44b7 /fs/bcachefs/sysfs.c | |
parent | 52df04f03994217aa5f98eb83255e85ee60b5e29 (diff) | |
download | linux-2c377d8a71db32d4125d30b3641f2bc51c6850ca.tar.xz |
bcachefs: fix btree_key_cache sysfs knob
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/sysfs.c')
-rw-r--r-- | fs/bcachefs/sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/sysfs.c b/fs/bcachefs/sysfs.c index f393023a3ae2..33f2a64c14c9 100644 --- a/fs/bcachefs/sysfs.c +++ b/fs/bcachefs/sysfs.c @@ -461,7 +461,7 @@ STORE(bch2_fs) sc.gfp_mask = GFP_KERNEL; sc.nr_to_scan = strtoul_or_return(buf); - c->btree_key_cache.shrink->scan_objects(c->btree_cache.shrink, &sc); + c->btree_key_cache.shrink->scan_objects(c->btree_key_cache.shrink, &sc); } if (attr == &sysfs_trigger_gc) |