From 6c1439bc7af319a4a9536d925f61bb8802c2fe4e Mon Sep 17 00:00:00 2001 From: John Spray Date: Wed, 16 Nov 2016 21:13:12 +0000 Subject: [PATCH] mds: include fragmenting in state print Signed-off-by: John Spray --- src/mds/CDir.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mds/CDir.cc b/src/mds/CDir.cc index b67a918b404..58766ae177e 100644 --- a/src/mds/CDir.cc +++ b/src/mds/CDir.cc @@ -122,6 +122,7 @@ ostream& operator<<(ostream& out, const CDir& dir) if (dir.state_test(CDir::STATE_EXPORTBOUND)) out << "|exportbound"; if (dir.state_test(CDir::STATE_IMPORTBOUND)) out << "|importbound"; if (dir.state_test(CDir::STATE_BADFRAG)) out << "|badfrag"; + if (dir.state_test(CDir::STATE_FRAGMENTING)) out << "|fragmenting"; // fragstat out << " " << dir.fnode.fragstat; -- 2.47.3