2020-09-09 16:56:31

by Yue Haibing

[permalink] [raw]
Subject: [PATCH -next] btrfs: Remove unused function calc_global_rsv_need_space()

It is not used since commit 0096420adb03 ("btrfs: do not
account global reserve in can_overcommit")

Signed-off-by: YueHaibing <[email protected]>
---
fs/btrfs/space-info.c | 5 -----
1 file changed, 5 deletions(-)

diff --git a/fs/btrfs/space-info.c b/fs/btrfs/space-info.c
index b733718f45d3..0f16a2ce5401 100644
--- a/fs/btrfs/space-info.c
+++ b/fs/btrfs/space-info.c
@@ -301,11 +301,6 @@ struct btrfs_space_info *btrfs_find_space_info(struct btrfs_fs_info *info,
return NULL;
}

-static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
-{
- return (global->size << 1);
-}
-
static u64 calc_available_free_space(struct btrfs_fs_info *fs_info,
struct btrfs_space_info *space_info,
enum btrfs_reserve_flush_enum flush)
--
2.17.1



2020-09-10 19:21:33

by David Sterba

[permalink] [raw]
Subject: Re: [PATCH -next] btrfs: Remove unused function calc_global_rsv_need_space()

On Wed, Sep 09, 2020 at 09:51:42PM +0800, YueHaibing wrote:
> It is not used since commit 0096420adb03 ("btrfs: do not
> account global reserve in can_overcommit")
>
> Signed-off-by: YueHaibing <[email protected]>

Added to misc-next, thanks.