1
0
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:
xie xingguo 2016-06-04 11:05:14 +08:00
parent 8940433f67
commit b473574bb9

View File

@ -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);