From: Igor Fedotov Date: Tue, 24 May 2016 13:41:48 +0000 (+0300) Subject: os/bluestore: Cosmetic fixes in bluestore logging X-Git-Tag: v11.0.0~359^2~12 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=8f8fd3a722f2b6bd5a11016f3eaf1dfcb5a2cf89;p=ceph-ci.git os/bluestore: Cosmetic fixes in bluestore logging Signed-off-by: Igor Fedotov --- diff --git a/src/os/bluestore/BlueStore.cc b/src/os/bluestore/BlueStore.cc index e8a23ed36da..de6875e9e3e 100644 --- a/src/os/bluestore/BlueStore.cc +++ b/src/os/bluestore/BlueStore.cc @@ -2879,7 +2879,7 @@ int BlueStore::_do_read( interval_set ready_intervals_in_cache; o->bc.read(off, l, ready_regions_in_cache, ready_intervals_in_cache); dout(20) << __func__ << " regions in cache 0x" << std::hex - << ready_regions_in_cache.size() << " 0x" << ready_intervals_in_cache + << ready_regions_in_cache.size() << " " << ready_intervals_in_cache << std::dec << dendl; //build blob list to read @@ -3029,7 +3029,6 @@ int BlueStore::_read_whole_blob(const bluestore_blob_t* blob, OnodeRef o, bool b uint32_t x_len = ROUND_UP_TO(r_len, block_size); bufferlist bl; - // dout(30) << __func__ << " reading " << it->offset << "~" << x_len << dendl; int r = bdev->read(it->offset, x_len, &bl, &ioc, buffered); if (r < 0) { return r; @@ -3078,7 +3077,6 @@ int BlueStore::_read_extent_sparse( uint64_t x_len = cur->length; uint64_t r_len = ROUND_UP_TO(x_len + front_extra, chunk_size); - // dout(30) << __func__ << " reading " << r_off << "~" << r_len << dendl; bufferlist bl; int r = bdev->read(r_off + extent->offset, r_len, &bl, &ioc, buffered); if (r < 0) {