diff options
author | Filipe Manana <fdmanana@suse.com> | 2025-04-08 17:31:16 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2025-05-15 14:30:45 +0200 |
commit | d846a6d3b09fa046e061ea6ec6daba67e66a7101 (patch) | |
tree | 1359ca0eb0babe8fa00331ef972a59d553b09d7d /fs/btrfs/super.c | |
parent | ae98ae2a50d72b01d0a61cb21e1ac75bfcebc5f3 (diff) |
btrfs: rename remaining exported extent map functions
Rename all the exported functions from extent_map.h that don't have a
'btrfs_' prefix in their names, so that they are consistent with all the
other functions, to make it clear they are btrfs specific functions and
to avoid potential name collisions in the future with functions defined
elsewhere in the kernel.
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r-- | fs/btrfs/super.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 7d48e8d91e27..7d7001ad9529 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -2538,8 +2538,8 @@ static const struct init_sequence mod_init_seq[] = { .init_func = btrfs_bioset_init, .exit_func = btrfs_bioset_exit, }, { - .init_func = extent_map_init, - .exit_func = extent_map_exit, + .init_func = btrfs_extent_map_init, + .exit_func = btrfs_extent_map_exit, #ifdef CONFIG_BTRFS_EXPERIMENTAL }, { .init_func = btrfs_read_policy_init, |