]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
os/bluestore: _do_allocate: fix whitespace
authorSage Weil <sage@redhat.com>
Mon, 28 Mar 2016 19:36:14 +0000 (15:36 -0400)
committerSage Weil <sage@redhat.com>
Wed, 30 Mar 2016 15:23:15 +0000 (11:23 -0400)
Signed-off-by: Sage Weil <sage@redhat.com>
src/os/bluestore/BlueStore.cc

index 94106e72019a314602a5866f169fbc591c4d9a47..b6d4ca0f0e6b765e7f49f6d5549163e65e6c3cf4 100644 (file)
@@ -5126,7 +5126,8 @@ int BlueStore::_do_allocate(
   bool shared_head = false;
   bool shared_tail = false;
   uint64_t orig_end = orig_offset + orig_length;
-  if (orig_offset / min_alloc_size == (orig_end - 1)/ min_alloc_size && (orig_length != min_alloc_size)) {
+  if (orig_offset / min_alloc_size == (orig_end - 1) / min_alloc_size &&
+      (orig_length != min_alloc_size)) {
     // we fall within the same block
     offset = orig_offset - orig_offset % min_alloc_size;
     length = 0;