Skip to content

Commit 1c3ae22

Browse files
committed
Merge PR ceph#65232 into main
* refs/pull/65232/head: Reviewed-by: Venky Shankar <[email protected]> Reviewed-by: Mark Nelson <[email protected]>
2 parents 4705dc2 + 4edf9ef commit 1c3ae22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/mds/MDCache.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8764,17 +8764,17 @@ int MDCache::path_traverse(const MDRequestRef& mdr, MDSContextFactory& cf,
87648764
return -ENOENT;
87658765
}
87668766

8767-
// do we have inode?
8767+
// do we have the inode?
87688768
CInode *in = dnl->get_inode();
87698769
if (!in) {
87708770
ceph_assert(dnl->is_remote() || dnl->is_referent_remote());
8771-
// do i have it?
8771+
// do we have it?
87728772
in = get_inode(dnl->get_remote_ino());
87738773
if (in) {
87748774
dout(7) << "linking in remote in " << *in << dendl;
87758775
dn->link_remote(dnl, in);
87768776
} else {
8777-
dout(7) << "remote link to " << dnl->get_remote_ino() << ", which i don't have" << dendl;
8777+
dout(7) << "remote link to " << dnl->get_remote_ino() << ", which we don't have" << dendl;
87788778
ceph_assert(mdr); // we shouldn't hit non-primary dentries doing a non-mdr traversal!
87798779
if (mds->damage_table.is_remote_damaged(dnl->get_remote_ino())) {
87808780
dout(4) << "traverse: remote dentry points to damaged ino "

0 commit comments

Comments
 (0)