Skip to content

Commit

Permalink
btrfs: consolidate bitmap_clear_bits/__bitmap_clear_bits
Browse files Browse the repository at this point in the history
The only difference is the former adjusts btrfs_free_space::bytes
member. Consolidate the two function into 1 and add a bool parameter
which controls whether the adjustment is made or not. No functional
changes.

Signed-off-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
  • Loading branch information
Nikolay Borisov authored and David Sterba committed Jan 3, 2022
1 parent abed4aa commit f594f13
Showing 1 changed file with 13 additions and 24 deletions.
37 changes: 13 additions & 24 deletions fs/btrfs/free-space-cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static void free_bitmap(struct btrfs_free_space_ctl *ctl,
struct btrfs_free_space *bitmap_info);
static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
struct btrfs_free_space *info, u64 offset,
u64 bytes);
u64 bytes, bool update_stats);

static struct inode *__lookup_free_space_inode(struct btrfs_root *root,
struct btrfs_path *path,
Expand Down Expand Up @@ -886,7 +886,7 @@ static int copy_free_space_cache(struct btrfs_block_group *block_group,
bytes);
if (ret)
break;
bitmap_clear_bits(ctl, info, offset, bytes);
bitmap_clear_bits(ctl, info, offset, bytes, true);
offset = info->offset;
bytes = ctl->unit;
}
Expand Down Expand Up @@ -1803,9 +1803,9 @@ static void relink_bitmap_entry(struct btrfs_free_space_ctl *ctl,
rb_add_cached(&info->bytes_index, &ctl->free_space_bytes, entry_less);
}

static inline void __bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
struct btrfs_free_space *info,
u64 offset, u64 bytes)
static inline void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
struct btrfs_free_space *info,
u64 offset, u64 bytes, bool update_stat)
{
unsigned long start, count, end;
int extent_delta = -1;
Expand Down Expand Up @@ -1834,14 +1834,9 @@ static inline void __bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
ctl->discardable_extents[BTRFS_STAT_CURR] += extent_delta;
ctl->discardable_bytes[BTRFS_STAT_CURR] -= bytes;
}
}

static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
struct btrfs_free_space *info, u64 offset,
u64 bytes)
{
__bitmap_clear_bits(ctl, info, offset, bytes);
ctl->free_space -= bytes;
if (update_stat)
ctl->free_space -= bytes;
}

static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl,
Expand Down Expand Up @@ -2112,7 +2107,7 @@ static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl,
/* Cannot clear past the end of the bitmap */
search_bytes = min(search_bytes, end - search_start + 1);

bitmap_clear_bits(ctl, bitmap_info, search_start, search_bytes);
bitmap_clear_bits(ctl, bitmap_info, search_start, search_bytes, true);
*offset += search_bytes;
*bytes -= search_bytes;

Expand Down Expand Up @@ -2457,10 +2452,7 @@ static bool steal_from_bitmap_to_end(struct btrfs_free_space_ctl *ctl,
if (!btrfs_free_space_trimmed(bitmap))
info->trim_state = BTRFS_TRIM_STATE_UNTRIMMED;

if (update_stat)
bitmap_clear_bits(ctl, bitmap, end, bytes);
else
__bitmap_clear_bits(ctl, bitmap, end, bytes);
bitmap_clear_bits(ctl, bitmap, end, bytes, update_stat);

if (!bitmap->bytes)
free_bitmap(ctl, bitmap);
Expand Down Expand Up @@ -2514,10 +2506,7 @@ static bool steal_from_bitmap_to_front(struct btrfs_free_space_ctl *ctl,
if (!btrfs_free_space_trimmed(bitmap))
info->trim_state = BTRFS_TRIM_STATE_UNTRIMMED;

if (update_stat)
bitmap_clear_bits(ctl, bitmap, info->offset, bytes);
else
__bitmap_clear_bits(ctl, bitmap, info->offset, bytes);
bitmap_clear_bits(ctl, bitmap, info->offset, bytes, update_stat);

if (!bitmap->bytes)
free_bitmap(ctl, bitmap);
Expand Down Expand Up @@ -3077,7 +3066,7 @@ u64 btrfs_find_space_for_alloc(struct btrfs_block_group *block_group,

ret = offset;
if (entry->bitmap) {
bitmap_clear_bits(ctl, entry, offset, bytes);
bitmap_clear_bits(ctl, entry, offset, bytes, true);

if (!btrfs_free_space_trimmed(entry))
atomic64_add(bytes, &discard_ctl->discard_bytes_saved);
Expand Down Expand Up @@ -3179,7 +3168,7 @@ static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group *block_group,
}

ret = search_start;
__bitmap_clear_bits(ctl, entry, ret, bytes);
bitmap_clear_bits(ctl, entry, ret, bytes, false);

return ret;
}
Expand Down Expand Up @@ -3941,7 +3930,7 @@ static int trim_bitmaps(struct btrfs_block_group *block_group,
bytes > (max_discard_size + minlen))
bytes = max_discard_size;

bitmap_clear_bits(ctl, entry, start, bytes);
bitmap_clear_bits(ctl, entry, start, bytes, true);
if (entry->bytes == 0)
free_bitmap(ctl, entry);

Expand Down

0 comments on commit f594f13

Please sign in to comment.