]> git.ipfire.org Git - thirdparty/linux.git/commit
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)
commitb1c8f527feb858927f50a136d13196f107c63631
tree0cab8e411381d81758dd54407beef4fb8635324f
parente5860f8207ed341502ecee80688cef93e367b615
btrfs: open code trivial btrfs_add_excluded_extent()

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