btrfs: mark __btrfs_add_free_space static
Commit Message
From: Lijuan Li <lilijuan@iscas.ac.cn>
__btrfs_add_free_space is only used in free-space-cache.c,
so mark it static.
Signed-off-by: Lijuan Li <lilijuan@iscas.ac.cn>
---
fs/btrfs/free-space-cache.c | 2 +-
fs/btrfs/free-space-cache.h | 2 --
2 files changed, 1 insertion(+), 3 deletions(-)
Comments
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
On Tue, Feb 06, 2024 at 09:56:00AM +0800, lilijuan@iscas.ac.cn wrote:
> From: Lijuan Li <lilijuan@iscas.ac.cn>
>
> __btrfs_add_free_space is only used in free-space-cache.c,
> so mark it static.
>
> Signed-off-by: Lijuan Li <lilijuan@iscas.ac.cn>
Reviewed-by: David Sterba <dsterba@suse.com>
@@ -2621,7 +2621,7 @@ static void steal_from_bitmap(struct btrfs_free_space_ctl *ctl,
}
}
-int __btrfs_add_free_space(struct btrfs_block_group *block_group,
+static int __btrfs_add_free_space(struct btrfs_block_group *block_group,
u64 offset, u64 bytes,
enum btrfs_trim_state trim_state)
{
@@ -114,8 +114,6 @@ int btrfs_write_out_cache(struct btrfs_trans_handle *trans,
void btrfs_init_free_space_ctl(struct btrfs_block_group *block_group,
struct btrfs_free_space_ctl *ctl);
-int __btrfs_add_free_space(struct btrfs_block_group *block_group, u64 bytenr,
- u64 size, enum btrfs_trim_state trim_state);
int btrfs_add_free_space(struct btrfs_block_group *block_group,
u64 bytenr, u64 size);
int btrfs_add_free_space_unused(struct btrfs_block_group *block_group,