From: Zheng Liu <wenqing.lz@xxxxxxxxxx> It only tells the user that this inode contains inline data. Signed-off-by: Zheng Liu <wenqing.lz@xxxxxxxxxx> --- 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); -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html