lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1341150538-32047-13-git-send-email-wenqing.lz@taobao.com> Date: Sun, 1 Jul 2012 21:48:35 +0800 From: Zheng Liu <gnehzuil.liu@...il.com> To: linux-ext4@...r.kernel.org Cc: Zheng Liu <wenqing.lz@...bao.com> Subject: [PATCH 12/35 v3] debugfs: make stat cmd support inline data From: Zheng Liu <wenqing.lz@...bao.com> It only tells the user that this inode contains inline data. Signed-off-by: Zheng Liu <wenqing.lz@...bao.com> --- 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@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists