]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
os/bluestore: be noisy about bitmap init (it's slow!)
authorSage Weil <sage@redhat.com>
Wed, 29 Mar 2017 22:24:38 +0000 (18:24 -0400)
committerSage Weil <sage@redhat.com>
Wed, 5 Apr 2017 14:23:38 +0000 (10:23 -0400)
Signed-off-by: Sage Weil <sage@redhat.com>
src/os/bluestore/BlueStore.cc

index b77f271ba8672b82521fb169b929329acad22ebd..d0014d542f0136ce6edd0e54483e13ba38aabfa2 100644 (file)
@@ -3811,6 +3811,7 @@ int BlueStore::_open_alloc()
 
   uint64_t num = 0, bytes = 0;
 
+  dout(1) << __func__ << " opening allocation metadata" << dendl;
   // initialize from freelist
   fm->enumerate_reset();
   uint64_t offset, length;
@@ -3819,9 +3820,9 @@ int BlueStore::_open_alloc()
     ++num;
     bytes += length;
   }
-  dout(10) << __func__ << " loaded " << pretty_si_t(bytes)
-          << " in " << num << " extents"
-          << dendl;
+  dout(1) << __func__ << " loaded " << pretty_si_t(bytes)
+         << " in " << num << " extents"
+         << dendl;
 
   // also mark bluefs space as allocated
   for (auto e = bluefs_extents.begin(); e != bluefs_extents.end(); ++e) {