mirror of
https://github.com/ceph/ceph
synced 2025-02-21 01:47:25 +00:00
Merge pull request #41812 from agayev/zoned-fix-block-size
os/bluestore: Fix the size of the block in the Allocator base class t… Reviewed-by: Igor Fedotov <ifedotov@suse.com>
This commit is contained in:
commit
3cbca12ef7
@ -22,7 +22,7 @@ ZonedAllocator::ZonedAllocator(CephContext* cct,
|
||||
int64_t size,
|
||||
int64_t blk_size,
|
||||
std::string_view name)
|
||||
: Allocator(name, size, blk_size),
|
||||
: Allocator(name, size, blk_size & 0x00000000ffffffff),
|
||||
cct(cct),
|
||||
num_free(0),
|
||||
size(size),
|
||||
|
Loading…
Reference in New Issue
Block a user