From: Rishabh Dave Date: Thu, 30 Apr 2026 07:18:11 +0000 (+0530) Subject: mds/ScrubStack: set added_children to true for dirfrags too X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=dacad7377a9c6d8b49fb51163045daeec0b11f5f;p=ceph.git mds/ScrubStack: set added_children to true for dirfrags too Introduced-by: 9e83e1c Fixes: https://tracker.ceph.com/issues/76321 Signed-off-by: Rishabh Dave --- diff --git a/src/mds/ScrubStack.cc b/src/mds/ScrubStack.cc index 706473e7536c..8512cde4784a 100644 --- a/src/mds/ScrubStack.cc +++ b/src/mds/ScrubStack.cc @@ -541,6 +541,7 @@ void ScrubStack::scrub_dirfrag(CDir *dir, bool *added_children, bool *done) } if (dnl->is_primary()) { _enqueue(dnl->get_inode(), header, false); + *added_children = true; } else if (dnl->is_remote()) { identify_remote_link_damage(dn); }