提交 f38b6e75 编写于 作者: L Li Zefan

Btrfs: Use bitmap_set/clear()

No functional change.
Signed-off-by: NLi Zefan <lizf@cn.fujitsu.com>
上级 92c42311
...@@ -1134,15 +1134,13 @@ static void bitmap_clear_bits(struct btrfs_block_group_cache *block_group, ...@@ -1134,15 +1134,13 @@ static void bitmap_clear_bits(struct btrfs_block_group_cache *block_group,
struct btrfs_free_space *info, u64 offset, struct btrfs_free_space *info, u64 offset,
u64 bytes) u64 bytes)
{ {
unsigned long start, end; unsigned long start, count;
unsigned long i;
start = offset_to_bit(info->offset, block_group->sectorsize, offset); start = offset_to_bit(info->offset, block_group->sectorsize, offset);
end = start + bytes_to_bits(bytes, block_group->sectorsize); count = bytes_to_bits(bytes, block_group->sectorsize);
BUG_ON(end > BITS_PER_BITMAP); BUG_ON(start + count > BITS_PER_BITMAP);
for (i = start; i < end; i++) bitmap_clear(info->bitmap, start, count);
clear_bit(i, info->bitmap);
info->bytes -= bytes; info->bytes -= bytes;
block_group->free_space -= bytes; block_group->free_space -= bytes;
...@@ -1152,15 +1150,13 @@ static void bitmap_set_bits(struct btrfs_block_group_cache *block_group, ...@@ -1152,15 +1150,13 @@ static void bitmap_set_bits(struct btrfs_block_group_cache *block_group,
struct btrfs_free_space *info, u64 offset, struct btrfs_free_space *info, u64 offset,
u64 bytes) u64 bytes)
{ {
unsigned long start, end; unsigned long start, count;
unsigned long i;
start = offset_to_bit(info->offset, block_group->sectorsize, offset); start = offset_to_bit(info->offset, block_group->sectorsize, offset);
end = start + bytes_to_bits(bytes, block_group->sectorsize); count = bytes_to_bits(bytes, block_group->sectorsize);
BUG_ON(end > BITS_PER_BITMAP); BUG_ON(start + count > BITS_PER_BITMAP);
for (i = start; i < end; i++) bitmap_set(info->bitmap, start, count);
set_bit(i, info->bitmap);
info->bytes += bytes; info->bytes += bytes;
block_group->free_space += bytes; block_group->free_space += bytes;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册