]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
btrfs: use the btrfs_block_group_end() helper everywhere
authorFilipe Manana <fdmanana@suse.com>
Fri, 16 Jan 2026 10:24:06 +0000 (10:24 +0000)
committerDavid Sterba <dsterba@suse.com>
Tue, 3 Feb 2026 06:54:36 +0000 (07:54 +0100)
We have a helper to calculate a block group's exclusive end offset, but
we only use it in some places. Update every site that open codes the
calculation to use the helper.

Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/block-group.c
fs/btrfs/extent-tree.c
fs/btrfs/free-space-cache.c
fs/btrfs/free-space-tree.c
fs/btrfs/scrub.c
fs/btrfs/tests/free-space-tree-tests.c
fs/btrfs/zoned.c

index eb8a289663d05cf22b0413b468deab581914fcc2..4fc4d49910bf2567be0445e471bcb27f13b79e6d 100644 (file)
@@ -239,7 +239,7 @@ static struct btrfs_block_group *block_group_cache_tree_search(
 
        while (n) {
                cache = rb_entry(n, struct btrfs_block_group, cache_node);
-               end = cache->start + cache->length - 1;
+               end = btrfs_block_group_end(cache) - 1;
                start = cache->start;
 
                if (bytenr < start) {
@@ -292,7 +292,7 @@ struct btrfs_block_group *btrfs_next_block_group(
 
        /* If our block group was removed, we need a full search. */
        if (RB_EMPTY_NODE(&cache->cache_node)) {
-               const u64 next_bytenr = cache->start + cache->length;
+               const u64 next_bytenr = btrfs_block_group_end(cache);
 
                read_unlock(&fs_info->block_group_cache_lock);
                btrfs_put_block_group(cache);
@@ -595,7 +595,7 @@ static int sample_block_group_extent_item(struct btrfs_caching_control *caching_
        struct btrfs_fs_info *fs_info = block_group->fs_info;
        struct btrfs_root *extent_root;
        u64 search_offset;
-       u64 search_end = block_group->start + block_group->length;
+       const u64 search_end = btrfs_block_group_end(block_group);
        BTRFS_PATH_AUTO_FREE(path);
        struct btrfs_key search_key;
        int ret = 0;
@@ -711,6 +711,7 @@ out:
 static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl)
 {
        struct btrfs_block_group *block_group = caching_ctl->block_group;
+       const u64 block_group_end = btrfs_block_group_end(block_group);
        struct btrfs_fs_info *fs_info = block_group->fs_info;
        struct btrfs_root *extent_root;
        BTRFS_PATH_AUTO_FREE(path);
@@ -807,7 +808,7 @@ next:
                        continue;
                }
 
-               if (key.objectid >= block_group->start + block_group->length)
+               if (key.objectid >= block_group_end)
                        break;
 
                if (key.type == BTRFS_EXTENT_ITEM_KEY ||
@@ -836,9 +837,7 @@ next:
                path->slots[0]++;
        }
 
-       ret = btrfs_add_new_free_space(block_group, last,
-                                      block_group->start + block_group->length,
-                                      NULL);
+       ret = btrfs_add_new_free_space(block_group, last, block_group_end, NULL);
 out:
        return ret;
 }
@@ -846,7 +845,7 @@ out:
 static inline void btrfs_free_excluded_extents(const struct btrfs_block_group *bg)
 {
        btrfs_clear_extent_bit(&bg->fs_info->excluded_extents, bg->start,
-                              bg->start + bg->length - 1, EXTENT_DIRTY, NULL);
+                              btrfs_block_group_end(bg) - 1, EXTENT_DIRTY, NULL);
 }
 
 static noinline void caching_thread(struct btrfs_work *work)
@@ -2267,7 +2266,7 @@ static int exclude_super_stripes(struct btrfs_block_group *cache)
 
                while (nr--) {
                        u64 len = min_t(u64, stripe_len,
-                               cache->start + cache->length - logical[nr]);
+                                       btrfs_block_group_end(cache) - logical[nr]);
 
                        cache->bytes_super += len;
                        ret = btrfs_set_extent_bit(&fs_info->excluded_extents,
@@ -2470,7 +2469,7 @@ static int read_one_block_group(struct btrfs_fs_info *info,
        } else if (cache->used == 0 && cache->remap_bytes == 0) {
                cache->cached = BTRFS_CACHE_FINISHED;
                ret = btrfs_add_new_free_space(cache, cache->start,
-                                              cache->start + cache->length, NULL);
+                                              btrfs_block_group_end(cache), NULL);
                btrfs_free_excluded_extents(cache);
                if (ret)
                        goto error;
@@ -3763,7 +3762,7 @@ int btrfs_update_block_group(struct btrfs_trans_handle *trans,
                return -ENOENT;
 
        /* An extent can not span multiple block groups. */
-       ASSERT(bytenr + num_bytes <= cache->start + cache->length);
+       ASSERT(bytenr + num_bytes <= btrfs_block_group_end(cache));
 
        space_info = cache->space_info;
        factor = btrfs_bg_type_to_factor(cache->flags);
index 6fab7765057e96036a33ab32dd13e0a2414150c4..bd4d134a33807881f90f8ab577a344a50025d2ec 100644 (file)
@@ -2784,8 +2784,7 @@ static int unpin_extent_range(struct btrfs_fs_info *fs_info,
                u64 len;
                bool readonly;
 
-               if (!cache ||
-                   start >= cache->start + cache->length) {
+               if (!cache || start >= btrfs_block_group_end(cache)) {
                        if (cache)
                                btrfs_put_block_group(cache);
                        total_unpinned = 0;
@@ -2801,7 +2800,7 @@ static int unpin_extent_range(struct btrfs_fs_info *fs_info,
                        empty_cluster <<= 1;
                }
 
-               len = cache->start + cache->length - start;
+               len = btrfs_block_group_end(cache) - start;
                len = min(len, end + 1 - start);
 
                if (return_free_space)
@@ -4683,7 +4682,7 @@ have_block_group:
 
                /* move on to the next group */
                if (ffe_ctl->search_start + ffe_ctl->num_bytes >
-                   block_group->start + block_group->length) {
+                   btrfs_block_group_end(block_group)) {
                        btrfs_add_free_space_unused(block_group,
                                            ffe_ctl->found_offset,
                                            ffe_ctl->num_bytes);
@@ -6651,7 +6650,7 @@ int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range)
                }
 
                start = max(range->start, cache->start);
-               end = min(range_end, cache->start + cache->length);
+               end = min(range_end, btrfs_block_group_end(cache));
 
                if (end - start >= range->minlen) {
                        if (!btrfs_block_group_done(cache)) {
index 28132b6d8f88d757ab421d53edbfd39314c913e6..8dd15865ab0a53c81f4f730faa370040dd7a72fc 100644 (file)
@@ -1201,6 +1201,7 @@ static noinline_for_stack int write_pinned_extent_entries(
                            int *entries)
 {
        u64 start, extent_start, extent_end, len;
+       const u64 block_group_end = btrfs_block_group_end(block_group);
        struct extent_io_tree *unpin = NULL;
        int ret;
 
@@ -1215,19 +1216,18 @@ static noinline_for_stack int write_pinned_extent_entries(
 
        start = block_group->start;
 
-       while (start < block_group->start + block_group->length) {
+       while (start < block_group_end) {
                if (!btrfs_find_first_extent_bit(unpin, start,
                                                 &extent_start, &extent_end,
                                                 EXTENT_DIRTY, NULL))
                        return 0;
 
                /* This pinned extent is out of our range */
-               if (extent_start >= block_group->start + block_group->length)
+               if (extent_start >= block_group_end)
                        return 0;
 
                extent_start = max(extent_start, start);
-               extent_end = min(block_group->start + block_group->length,
-                                extent_end + 1);
+               extent_end = min(block_group_end, extent_end + 1);
                len = extent_end - extent_start;
 
                *entries += 1;
index 96d52c03197760bc9632da130853560ed67a40ea..ecddfca92b2b533dbce3617d5c18298ddde8d076 100644 (file)
@@ -218,7 +218,7 @@ int btrfs_convert_free_space_to_bitmaps(struct btrfs_trans_handle *trans,
                return 0;
 
        start = block_group->start;
-       end = block_group->start + block_group->length;
+       end = btrfs_block_group_end(block_group);
 
        key.objectid = end - 1;
        key.type = (u8)-1;
@@ -358,7 +358,7 @@ int btrfs_convert_free_space_to_extents(struct btrfs_trans_handle *trans,
                return 0;
 
        start = block_group->start;
-       end = block_group->start + block_group->length;
+       end = btrfs_block_group_end(block_group);
 
        key.objectid = end - 1;
        key.type = (u8)-1;
@@ -665,7 +665,7 @@ static int modify_free_space_bitmap(struct btrfs_trans_handle *trans,
         * Read the bit for the block immediately after the extent of space if
         * that block is within the block group.
         */
-       if (end < block_group->start + block_group->length) {
+       if (end < btrfs_block_group_end(block_group)) {
                /* The next block may be in the next bitmap. */
                btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
                if (end >= key.objectid + key.offset) {
@@ -938,7 +938,7 @@ static int add_free_space_extent(struct btrfs_trans_handle *trans,
 
 right:
        /* Search for a neighbor on the right. */
-       if (end == block_group->start + block_group->length)
+       if (end == btrfs_block_group_end(block_group))
                goto insert;
        key.objectid = end;
        key.type = (u8)-1;
@@ -1104,7 +1104,7 @@ static int populate_free_space_tree(struct btrfs_trans_handle *trans,
         * highest, block group).
         */
        start = block_group->start;
-       end = block_group->start + block_group->length;
+       end = btrfs_block_group_end(block_group);
        while (ret == 0) {
                btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
 
@@ -1477,7 +1477,7 @@ int btrfs_remove_block_group_free_space(struct btrfs_trans_handle *trans,
        }
 
        start = block_group->start;
-       end = block_group->start + block_group->length;
+       end = btrfs_block_group_end(block_group);
 
        key.objectid = end - 1;
        key.type = (u8)-1;
@@ -1530,24 +1530,21 @@ static int load_free_space_bitmaps(struct btrfs_caching_control *caching_ctl,
                                   struct btrfs_path *path,
                                   u32 expected_extent_count)
 {
-       struct btrfs_block_group *block_group;
-       struct btrfs_fs_info *fs_info;
+       struct btrfs_block_group *block_group = caching_ctl->block_group;
+       struct btrfs_fs_info *fs_info = block_group->fs_info;
        struct btrfs_root *root;
        struct btrfs_key key;
        bool prev_bit_set = false;
        /* Initialize to silence GCC. */
        u64 extent_start = 0;
-       u64 end, offset;
+       const u64 end = btrfs_block_group_end(block_group);
+       u64 offset;
        u64 total_found = 0;
        u32 extent_count = 0;
        int ret;
 
-       block_group = caching_ctl->block_group;
-       fs_info = block_group->fs_info;
        root = btrfs_free_space_root(block_group);
 
-       end = block_group->start + block_group->length;
-
        while (1) {
                ret = btrfs_next_item(root, path);
                if (ret < 0)
@@ -1613,21 +1610,17 @@ static int load_free_space_extents(struct btrfs_caching_control *caching_ctl,
                                   struct btrfs_path *path,
                                   u32 expected_extent_count)
 {
-       struct btrfs_block_group *block_group;
-       struct btrfs_fs_info *fs_info;
+       struct btrfs_block_group *block_group = caching_ctl->block_group;
+       struct btrfs_fs_info *fs_info = block_group->fs_info;
        struct btrfs_root *root;
        struct btrfs_key key;
-       u64 end;
+       const u64 end = btrfs_block_group_end(block_group);
        u64 total_found = 0;
        u32 extent_count = 0;
        int ret;
 
-       block_group = caching_ctl->block_group;
-       fs_info = block_group->fs_info;
        root = btrfs_free_space_root(block_group);
 
-       end = block_group->start + block_group->length;
-
        while (1) {
                u64 space_added;
 
index 2372084cf6c52fcbeae06ce7fd1b63cf98bddf66..0bd4aebe1687713e55077272292a02c5c6f43f70 100644 (file)
@@ -1688,9 +1688,9 @@ static int scrub_find_fill_first_stripe(struct btrfs_block_group *bg,
        scrub_stripe_reset_bitmaps(stripe);
 
        /* The range must be inside the bg. */
-       ASSERT(logical_start >= bg->start && logical_end <= bg->start + bg->length,
+       ASSERT(logical_start >= bg->start && logical_end <= btrfs_block_group_end(bg),
               "bg->start=%llu logical_start=%llu logical_end=%llu end=%llu",
-              bg->start, logical_start, logical_end, bg->start + bg->length);
+              bg->start, logical_start, logical_end, btrfs_block_group_end(bg));
 
        ret = find_first_extent_item(extent_root, extent_path, logical_start,
                                     logical_len);
@@ -2319,7 +2319,7 @@ static int scrub_simple_mirror(struct scrub_ctx *sctx,
        int ret = 0;
 
        /* The range must be inside the bg */
-       ASSERT(logical_start >= bg->start && logical_end <= bg->start + bg->length);
+       ASSERT(logical_start >= bg->start && logical_end <= btrfs_block_group_end(bg));
 
        /* Go through each extent items inside the logical range */
        while (cur_logical < logical_end) {
@@ -2411,12 +2411,13 @@ static int scrub_simple_stripe(struct scrub_ctx *sctx,
        const u64 logical_increment = simple_stripe_full_stripe_len(map);
        const u64 orig_logical = simple_stripe_get_logical(map, bg, stripe_index);
        const u64 orig_physical = map->stripes[stripe_index].physical;
+       const u64 end = btrfs_block_group_end(bg);
        const int mirror_num = simple_stripe_mirror_num(map, stripe_index);
        u64 cur_logical = orig_logical;
        u64 cur_physical = orig_physical;
        int ret = 0;
 
-       while (cur_logical < bg->start + bg->length) {
+       while (cur_logical < end) {
                /*
                 * Inside each stripe, RAID0 is just SINGLE, and RAID10 is
                 * just RAID1, so we can reuse scrub_simple_mirror() to scrub
index c8822edd32e2ab308c03fbae67e901d6519fafa4..8dee057f41fddd14070a790b210744ac4f71e7df 100644 (file)
@@ -49,7 +49,7 @@ static int __check_free_space_extents(struct btrfs_trans_handle *trans,
        if (flags & BTRFS_FREE_SPACE_USING_BITMAPS) {
                if (path->slots[0] != 0)
                        goto invalid;
-               end = cache->start + cache->length;
+               end = btrfs_block_group_end(cache);
                i = 0;
                while (++path->slots[0] < btrfs_header_nritems(path->nodes[0])) {
                        btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
@@ -216,7 +216,7 @@ static int test_remove_end(struct btrfs_trans_handle *trans,
        int ret;
 
        ret = __btrfs_remove_from_free_space_tree(trans, cache, path,
-                                   cache->start + cache->length - alignment,
+                                   btrfs_block_group_end(cache) - alignment,
                                    alignment);
        if (ret) {
                test_err("could not remove free space");
index 2e861eef5cd87ab2220322a7cafb2253b8737f10..d6a2480d5dc17a37489a64c130b4c62160935fbe 100644 (file)
@@ -1231,6 +1231,7 @@ static int calculate_alloc_pointer(struct btrfs_block_group *cache,
        BTRFS_PATH_AUTO_FREE(path);
        struct btrfs_key key;
        struct btrfs_key found_key;
+       const u64 bg_end = btrfs_block_group_end(cache);
        int ret;
        u64 length;
 
@@ -1253,7 +1254,7 @@ static int calculate_alloc_pointer(struct btrfs_block_group *cache,
        if (!path)
                return -ENOMEM;
 
-       key.objectid = cache->start + cache->length;
+       key.objectid = bg_end;
        key.type = 0;
        key.offset = 0;
 
@@ -1282,7 +1283,7 @@ static int calculate_alloc_pointer(struct btrfs_block_group *cache,
                length = fs_info->nodesize;
 
        if (unlikely(!(found_key.objectid >= cache->start &&
-                      found_key.objectid + length <= cache->start + cache->length))) {
+                      found_key.objectid + length <= bg_end))) {
                return -EUCLEAN;
        }
        *offset_ret = found_key.objectid + length - cache->start;
@@ -2028,7 +2029,7 @@ int btrfs_check_meta_write_pointer(struct btrfs_fs_info *fs_info,
 
        if (block_group) {
                if (block_group->start > eb->start ||
-                   block_group->start + block_group->length <= eb->start) {
+                   btrfs_block_group_end(block_group) <= eb->start) {
                        btrfs_put_block_group(block_group);
                        block_group = NULL;
                        ctx->zoned_bg = NULL;
@@ -2248,7 +2249,7 @@ out_unlock:
 static void wait_eb_writebacks(struct btrfs_block_group *block_group)
 {
        struct btrfs_fs_info *fs_info = block_group->fs_info;
-       const u64 end = block_group->start + block_group->length;
+       const u64 end = btrfs_block_group_end(block_group);
        struct extent_buffer *eb;
        unsigned long index, start = (block_group->start >> fs_info->nodesize_bits);