]> git.baikalelectronics.ru Git - kernel.git/commit
btrfs: remove unnecessary wrapper get_alloc_profile
authorJohannes Thumshirn <jth@kernel.org>
Thu, 2 Jan 2020 16:14:57 +0000 (17:14 +0100)
committerDavid Sterba <dsterba@suse.com>
Mon, 20 Jan 2020 15:41:01 +0000 (16:41 +0100)
commitf947dd2e0e3cc5a401be5c319bd884e190981aa6
treea5434b870445c6b9ad2edc253285a5ecc4ab40a7
parente9339918a59f39e924f0df2ee687e94aae4878cb
btrfs: remove unnecessary wrapper get_alloc_profile

btrfs_get_alloc_profile() is a simple wrapper over get_alloc_profile().
The only difference is btrfs_get_alloc_profile() is visible to other
functions in btrfs while get_alloc_profile() is static and thus only
visible to functions in block-group.c.

Let's just fold get_alloc_profile() into btrfs_get_alloc_profile() to
get rid of the unnecessary second function.

Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: Johannes Thumshirn <jth@kernel.org>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/block-group.c