From patchwork Mon Apr 16 11:39:47 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [12/32] debugfs: make stat cmd support inline data Date: Mon, 16 Apr 2012 01:39:47 -0000 From: Zheng Liu X-Patchwork-Id: 152796 Message-Id: <1334576407-4007-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, 4 insertions(+), 0 deletions(-) diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c index 590468d..df9b954 100644 --- a/debugfs/debugfs.c +++ b/debugfs/debugfs.c @@ -801,6 +801,10 @@ void internal_dump_inode(FILE *out, const char *prefix, if (inode->i_dtime) fprintf(out, "%sdtime: 0x%08x -- %s", prefix, inode->i_dtime, time_to_string(inode->i_dtime)); + if (inode->i_flags & EXT4_INLINE_DATA_FL) { + fprintf(out, "Inode has inline data\n"); + return; + } if (EXT2_INODE_SIZE(current_fs->super) > EXT2_GOOD_OLD_INODE_SIZE) internal_dump_inode_extra(out, prefix, inode_num, (struct ext2_inode_large *) inode);