From patchwork Sun Jul 1 13:48:45 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [22/35,v3] debugfs: make lsdel cmd support inline data X-Patchwork-Submitter: Zheng Liu X-Patchwork-Id: 168418 Message-Id: <1341150538-32047-23-git-send-email-wenqing.lz@taobao.com> To: linux-ext4@vger.kernel.org Cc: Zheng Liu Date: Sun, 1 Jul 2012 21:48:45 +0800 From: Zheng Liu List-Id: From: Zheng Liu Signed-off-by: Zheng Liu --- debugfs/lsdel.c | 19 +++++++++++-------- 1 files changed, 11 insertions(+), 8 deletions(-) diff --git a/debugfs/lsdel.c b/debugfs/lsdel.c index bed0ce6..ff283cd 100644 --- a/debugfs/lsdel.c +++ b/debugfs/lsdel.c @@ -141,15 +141,18 @@ void do_lsdel(int argc, char **argv) lsd.free_blocks = 0; lsd.bad_blocks = 0; - retval = ext2fs_block_iterate3(current_fs, ino, - BLOCK_FLAG_READ_ONLY, block_buf, - lsdel_proc, &lsd); - if (retval) { - com_err("ls_deleted_inodes", retval, - "while calling ext2fs_block_iterate2"); - goto next; + if (!ext2fs_has_inline_data(current_fs, ino)) { + retval = ext2fs_block_iterate3(current_fs, ino, + BLOCK_FLAG_READ_ONLY, block_buf, + lsdel_proc, &lsd); + if (retval) { + com_err("ls_deleted_inodes", retval, + "while calling ext2fs_block_iterate2"); + goto next; + } } - if (lsd.free_blocks && !lsd.bad_blocks) { + if (lsd.free_blocks && !lsd.bad_blocks || + ext2fs_has_inline_data(current_fs, ino)) { if (num_delarray >= max_delarray) { max_delarray += 50; delarray = realloc(delarray,