From patchwork Sun Jul 1 13:48:35 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [12/35,v3] debugfs: make stat cmd support inline data Date: Sun, 01 Jul 2012 03:48:35 -0000 From: Zheng Liu X-Patchwork-Id: 168408 Message-Id: <1341150538-32047-13-git-send-email-wenqing.lz@taobao.com> To: linux-ext4@vger.kernel.org Cc: Zheng Liu From: Zheng Liu It only tells the user that this inode contains inline data. Signed-off-by: Zheng Liu --- debugfs/debugfs.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c index 76c0867..14092e0 100644 --- a/debugfs/debugfs.c +++ b/debugfs/debugfs.c @@ -836,7 +836,9 @@ void internal_dump_inode(FILE *out, const char *prefix, fprintf(out, "%sDevice major/minor number: %02d:%02d (hex %02x:%02x)\n", devnote, major, minor, major, minor); } else if (do_dump_blocks) { - if (inode->i_flags & EXT4_EXTENTS_FL) + if (inode->i_flags & EXT4_INLINE_DATA_FL) + fprintf(out, "Inode has inline data\n"); + else if (inode->i_flags & EXT4_EXTENTS_FL) dump_extents(out, prefix, inode_num, DUMP_LEAF_EXTENTS|DUMP_NODE_EXTENTS, 0, 0); else