From a4799689d551f865078aef4607d2cc09a67caea1 Mon Sep 17 00:00:00 2001 From: ethanwu Date: Tue, 13 Dec 2022 10:30:44 +0800 Subject: [PATCH] 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 --- src/mds/MDCache.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mds/MDCache.cc b/src/mds/MDCache.cc index b2e77edff94..101b0b55b37 100644 --- a/src/mds/MDCache.cc +++ b/src/mds/MDCache.cc @@ -10120,6 +10120,7 @@ void MDCache::scan_stray_dir(dirfrag_t next) } } } + next.frag = frag_t(); } } -- 2.39.5