aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/ialloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ext4/ialloc.c')
-rw-r--r--fs/ext4/ialloc.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c
index 8b0a10acd708..a92eb305344f 100644
--- a/fs/ext4/ialloc.c
+++ b/fs/ext4/ialloc.c
@@ -836,14 +836,10 @@ got:
836 goto fail_free_drop; 836 goto fail_free_drop;
837 837
838 if (test_opt(sb, EXTENTS)) { 838 if (test_opt(sb, EXTENTS)) {
839 /* set extent flag only for diretory, file and normal symlink*/ 839 /* set extent flag only for directory, file and normal symlink*/
840 if (S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode)) { 840 if (S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode)) {
841 EXT4_I(inode)->i_flags |= EXT4_EXTENTS_FL; 841 EXT4_I(inode)->i_flags |= EXT4_EXTENTS_FL;
842 ext4_ext_tree_init(handle, inode); 842 ext4_ext_tree_init(handle, inode);
843 err = ext4_update_incompat_feature(handle, sb,
844 EXT4_FEATURE_INCOMPAT_EXTENTS);
845 if (err)
846 goto fail_free_drop;
847 } 843 }
848 } 844 }
849 845