From: Sage Weil Date: Fri, 24 Jul 2015 14:09:35 +0000 (-0400) Subject: osd/PG: note NIBBLEWISE in PG debug string X-Git-Tag: v9.1.0~346^2~25 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=bee3ffefa7f5126e34697682668ed80e3b9bae03;p=ceph.git osd/PG: note NIBBLEWISE in PG debug string Signed-off-by: Sage Weil --- diff --git a/src/osd/PG.cc b/src/osd/PG.cc index 68d74b130382..35f19d3bf4a7 100644 --- a/src/osd/PG.cc +++ b/src/osd/PG.cc @@ -4935,6 +4935,9 @@ ostream& operator<<(ostream& out, const PG& pg) if (pg.scrubber.must_scrub) out << " MUST_SCRUB"; + if (!pg.get_sort_bitwise()) + out << " NIBBLEWISE"; + //out << " (" << pg.pg_log.get_tail() << "," << pg.pg_log.get_head() << "]"; if (pg.pg_log.get_missing().num_missing()) { out << " m=" << pg.pg_log.get_missing().num_missing();