From 67d095e094e1e2b4b8bf20556dd2b6c48a96c74d Mon Sep 17 00:00:00 2001 From: Xiubo Li Date: Wed, 17 May 2023 21:06:16 +0800 Subject: [PATCH] mds: do not send split_realms for CEPH_SNAP_OP_UPDATE msg The clients won't care about the split_realms and the kclient will treat this as a corrupted snaptrace. Fixes commit 93e7267757508520dfc22cff1ab20558bd4a44d4 ("mds: send snap related messages centrally during mds recovery") Fixes: https://tracker.ceph.com/issues/61217 Signed-off-by: Xiubo Li (cherry picked from commit 3be9c9796246eab96f672218d9e45f118f6cdf12) Conflicts: - Misses a dependent commit 7a4c509f7289ff4 --- src/mds/MDCache.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/mds/MDCache.cc b/src/mds/MDCache.cc index a0843bd51390..a7331006a492 100644 --- a/src/mds/MDCache.cc +++ b/src/mds/MDCache.cc @@ -6025,8 +6025,6 @@ void MDCache::finish_snaprealm_reconnect(client_t client, SnapRealm *realm, snap << realm->get_newest_seq() << " on " << *realm << dendl; auto snap = make_message(CEPH_SNAP_OP_UPDATE); snap->bl = realm->get_snap_trace(); - for (const auto& child : realm->open_children) - snap->split_realms.push_back(child->inode->ino()); updates.emplace(std::piecewise_construct, std::forward_as_tuple(client), std::forward_as_tuple(snap)); } else { dout(10) << "finish_snaprealm_reconnect client." << client << " up to date" -- 2.47.3