mirror of
https://github.com/ceph/ceph
synced 2025-04-01 23:02:17 +00:00
bluestore/BitAllocator: remove redundant assert
We have assert this ahead. Signed-off-by: xie xingguo <xie.xingguo@zte.com.cn>
This commit is contained in:
parent
8940433f67
commit
b473574bb9
@ -843,8 +843,6 @@ bool BitMapAreaIN::is_allocated(int64_t start_block, int64_t num_blocks)
|
||||
return true;
|
||||
}
|
||||
|
||||
assert(start_block >= 0);
|
||||
|
||||
while (num_blocks) {
|
||||
area = (BitMapArea *) m_child_list->get_nth_item(
|
||||
start_block / m_child_size_blocks);
|
||||
@ -1015,8 +1013,6 @@ void BitMapAreaIN::free_blocks_int(int64_t start_block, int64_t num_blocks)
|
||||
return;
|
||||
}
|
||||
|
||||
assert(start_block >= 0);
|
||||
|
||||
while (num_blocks) {
|
||||
child = (BitMapArea *) m_child_list->get_nth_item(
|
||||
start_block / m_child_size_blocks);
|
||||
@ -1187,8 +1183,6 @@ void BitMapAreaLeaf::free_blocks_int(int64_t start_block, int64_t num_blocks)
|
||||
return;
|
||||
}
|
||||
|
||||
assert(start_block >= 0);
|
||||
|
||||
while (num_blocks) {
|
||||
child = (BitMapArea *) m_child_list->get_nth_item(
|
||||
start_block / m_child_size_blocks);
|
||||
|
Loading…
Reference in New Issue
Block a user