Merge PR #38669 into master

* refs/pull/38669/head:
	mds: fix typo in debug logs

Reviewed-by: Rishabh Dave <ridave@redhat.com>
Reviewed-by: Patrick Donnelly <pdonnell@redhat.com>
Reviewed-by: Varsha Rao <varao@redhat.com>
This commit is contained in:
Patrick Donnelly 2020-12-21 09:01:53 -08:00
commit 77b8a7f8cc
No known key found for this signature in database
GPG Key ID: 3A2A7E25BEA8AADB

View File

@ -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;
}