From: xie xingguo Date: Tue, 13 Sep 2016 06:06:22 +0000 (+0800) Subject: os/bluestore: fix dump of shard_info X-Git-Tag: v11.0.1~255^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=87bf242bdb51228076d906febd5f205b508e1027;p=ceph-ci.git os/bluestore: fix dump of shard_info which shall include the "extents" field too. Signed-off-by: xie xingguo --- diff --git a/src/os/bluestore/bluestore_types.cc b/src/os/bluestore/bluestore_types.cc index a484ea20667..3e1a0f35471 100644 --- a/src/os/bluestore/bluestore_types.cc +++ b/src/os/bluestore/bluestore_types.cc @@ -684,6 +684,7 @@ void bluestore_onode_t::shard_info::dump(Formatter *f) const { f->dump_unsigned("offset", offset); f->dump_unsigned("bytes", bytes); + f->dump_unsigned("extents", extents); } ostream& operator<<(ostream& out, const bluestore_onode_t::shard_info& si)