From e1e961cb808e7192d5b4760c9e467e8cfafc392d Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Tue, 15 Jan 2013 14:50:02 -0500 Subject: [PATCH] debugfs: fix mknod command so that it updates the block group statistics Signed-off-by: "Theodore Ts'o" --- debugfs/debugfs.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c index 59860e79..2a1525a8 100644 --- a/debugfs/debugfs.c +++ b/debugfs/debugfs.c @@ -1747,8 +1747,7 @@ void do_mknod(int argc, char *argv[]) } if (ext2fs_test_inode_bitmap2(current_fs->inode_map,newfile)) com_err(argv[0], 0, "Warning: inode already set"); - ext2fs_mark_inode_bitmap2(current_fs->inode_map, newfile); - ext2fs_mark_ib_dirty(current_fs); + ext2fs_inode_alloc_stats2(current_fs, newfile, +1, 0); memset(&inode, 0, sizeof(inode)); inode.i_mode = mode; inode.i_atime = inode.i_ctime = inode.i_mtime =