]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
os/bluestore: change type of length of region_t from uint32_t to uint64_t
authorxie xingguo <xie.xingguo@zte.com.cn>
Mon, 20 Jun 2016 10:56:51 +0000 (18:56 +0800)
committerxie xingguo <xie.xingguo@zte.com.cn>
Tue, 21 Jun 2016 13:35:41 +0000 (21:35 +0800)
Signed-off-by: xie xingguo <xie.xingguo@zte.com.cn>
src/os/bluestore/BlueStore.h

index b2b3d3373a4d77294a61e94ec633e00e403f7f5f..78926a094d2a1695c8bf7f38cd5397ba8ad1ae3d 100644 (file)
@@ -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) {}