From: xie xingguo Date: Mon, 20 Jun 2016 10:56:51 +0000 (+0800) Subject: os/bluestore: change type of length of region_t from uint32_t to uint64_t X-Git-Tag: v11.0.0~97^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=09b13e50330b5a3837bb4382caff3d8c8d064ca4;p=ceph.git os/bluestore: change type of length of region_t from uint32_t to uint64_t Signed-off-by: xie xingguo --- diff --git a/src/os/bluestore/BlueStore.h b/src/os/bluestore/BlueStore.h index b2b3d3373a4d7..78926a094d2a1 100644 --- a/src/os/bluestore/BlueStore.h +++ b/src/os/bluestore/BlueStore.h @@ -88,7 +88,7 @@ public: uint64_t blob_xoffset; //region offset within the blob uint64_t length; - region_t(uint64_t offset, uint64_t b_offs, uint32_t len) + region_t(uint64_t offset, uint64_t b_offs, uint64_t len) : logical_offset(offset), blob_xoffset(b_offs), length(len) {}