]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
osd: better debug output in identify_splits
authorSage Weil <sage@redhat.com>
Wed, 7 Mar 2018 21:09:30 +0000 (15:09 -0600)
committerSage Weil <sage@redhat.com>
Wed, 4 Apr 2018 13:26:58 +0000 (08:26 -0500)
Signed-off-by: Sage Weil <sage@redhat.com>
src/osd/OSD.cc

index 035ac83b1b6a2b5e5cb2d658fe55b47cddf5b46c..3dffa3bb83211c936cc11e0f553f66a424e2349b 100644 (file)
@@ -9419,6 +9419,9 @@ void OSDShard::identify_splits(OSDMapRef as_of_osdmap, set<spg_t> *pgids)
       auto *slot = i.second.get();
       if (slot->pg || slot->waiting_for_split) {
        osd->service.identify_split_children(osdmap, as_of_osdmap, pgid, pgids);
+      } else {
+       dout(20) << __func__ << " slot " << pgid
+                << " has no pg and !waiting_for_split" << dendl;
       }
     }
   }