From: Xiubo Li Date: Mon, 21 Dec 2020 02:55:46 +0000 (+0800) Subject: mds: fix typo in debug logs X-Git-Tag: v17.0.0~226^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=6f199f0d2fb468d799eda9a76d572b4e1d3a4dff;p=ceph.git mds: fix typo in debug logs Signed-off-by: Xiubo Li --- diff --git a/src/mds/CDir.cc b/src/mds/CDir.cc index 2a8ea6777b07e..b78cd00965059 100644 --- a/src/mds/CDir.cc +++ b/src/mds/CDir.cc @@ -267,11 +267,11 @@ bool CDir::check_rstats(bool scrub) // rstat if (!nest_info.same_sums(fnode->rstat)) { dout(1) << "mismatch between child accounted_rstats and my rstats!" << dendl; - dout(1) << "total of child dentrys: " << nest_info << dendl; + dout(1) << "total of child dentries: " << nest_info << dendl; dout(1) << "my rstats: " << fnode->rstat << dendl; good = false; } else { - dout(20) << "total of child dentrys: " << nest_info << dendl; + dout(20) << "total of child dentries: " << nest_info << dendl; dout(20) << "my rstats: " << fnode->rstat << dendl; }