From: Sage Weil Date: Wed, 7 Mar 2018 21:09:30 +0000 (-0600) Subject: osd: better debug output in identify_splits X-Git-Tag: v13.1.0~390^2~33 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1eec5bb6a20e972dc91ac119fc1af136418f188f;p=ceph.git osd: better debug output in identify_splits Signed-off-by: Sage Weil --- diff --git a/src/osd/OSD.cc b/src/osd/OSD.cc index 035ac83b1b6..3dffa3bb832 100644 --- a/src/osd/OSD.cc +++ b/src/osd/OSD.cc @@ -9419,6 +9419,9 @@ void OSDShard::identify_splits(OSDMapRef as_of_osdmap, set *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; } } }