Skip to content

Commit 4edf9ef

Browse files
committed
src/mds: Improve messages in MDCache.cc
Signed-off-by: Anthony D'Atri <[email protected]>
1 parent eb85a4b commit 4edf9ef

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
@@ -8763,17 +8763,17 @@ int MDCache::path_traverse(const MDRequestRef& mdr, MDSContextFactory& cf,
87638763
return -ENOENT;
87648764
}
87658765

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

0 commit comments

Comments
 (0)