From: Igor Fedotov Date: Mon, 25 Jun 2018 14:49:49 +0000 (+0300) Subject: os/bluestore: fix minor issues in bitmap logging output X-Git-Tag: v14.0.1~1024^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F22691%2Fhead;p=ceph.git os/bluestore: fix minor issues in bitmap logging output Signed-off-by: Igor Fedotov --- diff --git a/src/os/bluestore/BitmapAllocator.cc b/src/os/bluestore/BitmapAllocator.cc index fc7d66c0f95..ef7c0f003b6 100755 --- a/src/os/bluestore/BitmapAllocator.cc +++ b/src/os/bluestore/BitmapAllocator.cc @@ -6,7 +6,7 @@ #define dout_context cct #define dout_subsys ceph_subsys_bluestore #undef dout_prefix -#define dout_prefix *_dout << "fbmap_alloc 0x" << this << " " +#define dout_prefix *_dout << "fbmap_alloc " << this << " " BitmapAllocator::BitmapAllocator(CephContext* _cct, int64_t capacity, @@ -24,7 +24,7 @@ int64_t BitmapAllocator::allocate( { uint64_t allocated = 0; - ldout(cct, 10) << __func__ << std::hex << "0x" << want_size + ldout(cct, 10) << __func__ << std::hex << " 0x" << want_size << "/" << alloc_unit << "," << max_alloc_size << "," << hint << std::dec << dendl;