From f7a51d35a9cdc89f8d3577868815fe4f398af93b Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 29 Mar 2017 18:24:38 -0400 Subject: [PATCH] os/bluestore: be noisy about bitmap init (it's slow!) Signed-off-by: Sage Weil --- src/os/bluestore/BlueStore.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/os/bluestore/BlueStore.cc b/src/os/bluestore/BlueStore.cc index b77f271ba86..d0014d542f0 100644 --- a/src/os/bluestore/BlueStore.cc +++ b/src/os/bluestore/BlueStore.cc @@ -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) { -- 2.39.5