From: ethanwu Date: Tue, 13 Dec 2022 02:30:44 +0000 (+0800) Subject: mds: fix scan_stray_dir not reset next.frag on each run of stray inode X-Git-Tag: v16.2.13~107^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f0ca9f90d186abae297da87920c123cd2192eae9;p=ceph.git mds: fix scan_stray_dir not reset next.frag on each run of stray inode When we finish scanning one stray inode we should reset next.frag so that next stray inode could start from its first dir fragment rather than last stray inode's last frag. Fixes: https://tracker.ceph.com/issues/58294 Signed-off-by: ethanwu (cherry picked from commit a4799689d551f865078aef4607d2cc09a67caea1) --- diff --git a/src/mds/MDCache.cc b/src/mds/MDCache.cc index a271032aeca3..ec5c32468434 100644 --- a/src/mds/MDCache.cc +++ b/src/mds/MDCache.cc @@ -9947,6 +9947,7 @@ void MDCache::scan_stray_dir(dirfrag_t next) } } } + next.frag = frag_t(); } }