From patchwork Mon Apr 16 11:39:54 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [19/32] debugfs: make rm and kill_file cmd support inline data Date: Mon, 16 Apr 2012 01:39:54 -0000 From: Zheng Liu X-Patchwork-Id: 152803 Message-Id: <1334576407-4007-20-git-send-email-wenqing.lz@taobao.com> To: linux-ext4@vger.kernel.org Cc: Zheng Liu From: Zheng Liu rm and kill_file command don't need to release blocks. Signed-off-by: Zheng Liu --- debugfs/debugfs.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c index 7a97c48..517751f 100644 --- a/debugfs/debugfs.c +++ b/debugfs/debugfs.c @@ -1841,8 +1841,9 @@ static void kill_file_by_inode(ext2_ino_t inode) if (!ext2fs_inode_has_valid_blocks2(current_fs, &inode_buf)) return; - ext2fs_block_iterate3(current_fs, inode, BLOCK_FLAG_READ_ONLY, NULL, - release_blocks_proc, NULL); + if (!ext2fs_has_inline_data(current_fs, inode)) + ext2fs_block_iterate3(current_fs, inode, BLOCK_FLAG_READ_ONLY, + NULL, release_blocks_proc, NULL); printf("\n"); ext2fs_inode_alloc_stats2(current_fs, inode, -1, LINUX_S_ISDIR(inode_buf.i_mode));