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, 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 -- 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