From 4edf9ef760df7cac11b977267faf387b2ca6bfa6 Mon Sep 17 00:00:00 2001 From: Anthony D'Atri Date: Tue, 26 Aug 2025 08:00:52 -0400 Subject: [PATCH] src/mds: Improve messages in MDCache.cc Signed-off-by: Anthony D'Atri --- src/mds/MDCache.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mds/MDCache.cc b/src/mds/MDCache.cc index f6010c0fe40..fcaa1d907b9 100644 --- a/src/mds/MDCache.cc +++ b/src/mds/MDCache.cc @@ -8763,17 +8763,17 @@ int MDCache::path_traverse(const MDRequestRef& mdr, MDSContextFactory& cf, return -ENOENT; } - // do we have inode? + // do we have the inode? CInode *in = dnl->get_inode(); if (!in) { ceph_assert(dnl->is_remote() || dnl->is_referent_remote()); - // do i have it? + // do we have it? in = get_inode(dnl->get_remote_ino()); if (in) { dout(7) << "linking in remote in " << *in << dendl; dn->link_remote(dnl, in); } else { - dout(7) << "remote link to " << dnl->get_remote_ino() << ", which i don't have" << dendl; + dout(7) << "remote link to " << dnl->get_remote_ino() << ", which we don't have" << dendl; ceph_assert(mdr); // we shouldn't hit non-primary dentries doing a non-mdr traversal! if (mds->damage_table.is_remote_damaged(dnl->get_remote_ino())) { dout(4) << "traverse: remote dentry points to damaged ino " -- 2.47.3