btrfs: zoned: use filesystem size not disk size for reclaim decision
authorJohannes Thumshirn <johannes.thumshirn@wdc.com>
Tue, 20 May 2025 07:20:47 +0000 (09:20 +0200)
committerDavid Sterba <dsterba@suse.com>
Mon, 21 Jul 2025 21:42:24 +0000 (23:42 +0200)
When deciding if a zoned filesystem is reaching the threshold to reclaim
data block groups, look at the size of the filesystem not to potentially
total available size of all drives in the filesystem.

Especially if a filesystem was created with mkfs' -b option, constraining
it to only a portion of the block device, the numbers won't match and
potentially garbage collection is kicking in too late.

Fixes: 3687fcb0752a ("btrfs: zoned: make auto-reclaim less aggressive")
CC: stable@vger.kernel.org # 6.1+
Reviewed-by: Damien Le Moal <dlemoal@kernel.org>
Tested-by: Damien Le Moal <dlemoal@kernel.org>
Signed-off-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/zoned.c

index 9430b34d3cbb8e53ca19b6e917952852d22acf85..3fa526a0e37bb82abda51df5633b9dc14f6fdaa3 100644 (file)
@@ -2523,8 +2523,8 @@ bool btrfs_zoned_should_reclaim(const struct btrfs_fs_info *fs_info)
 {
        struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
        struct btrfs_device *device;
+       u64 total = btrfs_super_total_bytes(fs_info->super_copy);
        u64 used = 0;
-       u64 total = 0;
        u64 factor;
 
        ASSERT(btrfs_is_zoned(fs_info));
@@ -2537,7 +2537,6 @@ bool btrfs_zoned_should_reclaim(const struct btrfs_fs_info *fs_info)
                if (!device->bdev)
                        continue;
 
-               total += device->disk_total_bytes;
                used += device->bytes_used;
        }
        mutex_unlock(&fs_devices->device_list_mutex);