From: Greg Farnum Date: Thu, 28 Jul 2016 22:55:30 +0000 (-0700) Subject: client: include COMPLETE and ORDERED states in cache dump X-Git-Tag: ses5-milestone5~217^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a06bb0dffc0a4b4493622d1c9e9cadd87b969de4;p=ceph.git client: include COMPLETE and ORDERED states in cache dump Signed-off-by: Greg Farnum --- diff --git a/src/client/Inode.cc b/src/client/Inode.cc index 99f763a0c198..454ae9d2c421 100644 --- a/src/client/Inode.cc +++ b/src/client/Inode.cc @@ -365,6 +365,9 @@ void Inode::dump(Formatter *f) const ::dump(dir_layout, f); f->close_section(); + f->dump_bool("complete", flags & I_COMPLETE); + f->dump_bool("ordered", flags & I_DIR_ORDERED); + /* FIXME when wip-mds-encoding is merged *** f->open_object_section("dir_stat"); dirstat.dump(f);