]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
osd/PG: note NIBBLEWISE in PG debug string
authorSage Weil <sage@redhat.com>
Fri, 24 Jul 2015 14:09:35 +0000 (10:09 -0400)
committerSage Weil <sage@redhat.com>
Fri, 7 Aug 2015 14:16:05 +0000 (10:16 -0400)
Signed-off-by: Sage Weil <sage@redhat.com>
src/osd/PG.cc

index 68d74b130382a17fb1855e6d765a3fd0b7c10f95..35f19d3bf4a786093d3880cf172fe4e55ad03e9e 100644 (file)
@@ -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();