btrfs: open code trivial btrfs_add_excluded_extent()
authorFilipe Manana <fdmanana@suse.com>
Fri, 30 Jun 2023 15:03:50 +0000 (16:03 +0100)
committerDavid Sterba <dsterba@suse.com>
Mon, 21 Aug 2023 12:52:13 +0000 (14:52 +0200)
The code for btrfs_add_excluded_extent() is trivial, it's just a
set_extent_bit() call. However it's defined in extent-tree.c but it is
only used (twice) in block-group.c. So open code it in block-group.c,
reducing the need to export a trivial function.

Also since the only caller btrfs_add_excluded_extent() is prepared to
deal with errors, stop ignoring errors from the set_extent_bit() call.

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/extent-tree.h

index 9479c9e..3cbd80b 100644 (file)
@@ -2104,8 +2104,9 @@ static int exclude_super_stripes(struct btrfs_block_group *cache)
        if (cache->start < BTRFS_SUPER_INFO_OFFSET) {
                stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->start;
                cache->bytes_super += stripe_len;
-               ret = btrfs_add_excluded_extent(fs_info, cache->start,
-                                               stripe_len);
+               ret = set_extent_bit(&fs_info->excluded_extents, cache->start,
+                                    cache->start + stripe_len - 1,
+                                    EXTENT_UPTODATE, NULL);
                if (ret)
                        return ret;
        }
@@ -2131,8 +2132,9 @@ static int exclude_super_stripes(struct btrfs_block_group *cache)
                                cache->start + cache->length - logical[nr]);
 
                        cache->bytes_super += len;
-                       ret = btrfs_add_excluded_extent(fs_info, logical[nr],
-                                                       len);
+                       ret = set_extent_bit(&fs_info->excluded_extents, logical[nr],
+                                            logical[nr] + len - 1,
+                                            EXTENT_UPTODATE, NULL);
                        if (ret) {
                                kfree(logical);
                                return ret;
index ab7b588..1a0fb15 100644 (file)
@@ -69,15 +69,6 @@ static int block_group_bits(struct btrfs_block_group *cache, u64 bits)
        return (cache->flags & bits) == bits;
 }
 
-int btrfs_add_excluded_extent(struct btrfs_fs_info *fs_info,
-                             u64 start, u64 num_bytes)
-{
-       u64 end = start + num_bytes - 1;
-       set_extent_bit(&fs_info->excluded_extents, start, end,
-                      EXTENT_UPTODATE, NULL);
-       return 0;
-}
-
 void btrfs_free_excluded_extents(struct btrfs_block_group *cache)
 {
        struct btrfs_fs_info *fs_info = cache->fs_info;
index 429d5c5..3b2f265 100644 (file)
@@ -96,8 +96,6 @@ int btrfs_get_extent_inline_ref_type(const struct extent_buffer *eb,
                                     enum btrfs_inline_ref_type is_data);
 u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset);
 
-int btrfs_add_excluded_extent(struct btrfs_fs_info *fs_info,
-                             u64 start, u64 num_bytes);
 void btrfs_free_excluded_extents(struct btrfs_block_group *cache);
 int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, unsigned long count);
 void btrfs_cleanup_ref_head_accounting(struct btrfs_fs_info *fs_info,