punch_start = offset >> EXT4_BLOCK_SIZE_BITS(sb);
        punch_stop = (offset + len) >> EXT4_BLOCK_SIZE_BITS(sb);
 
-       /* Call ext4_force_commit to flush all data in case of data=journal. */
-       if (ext4_should_journal_data(inode)) {
-               ret = ext4_force_commit(inode->i_sb);
-               if (ret)
-                       return ret;
-       }
-
        inode_lock(inode);
        /*
         * There is no need to overlap collapse range with EOF, in which case
        offset_lblk = offset >> EXT4_BLOCK_SIZE_BITS(sb);
        len_lblk = len >> EXT4_BLOCK_SIZE_BITS(sb);
 
-       /* Call ext4_force_commit to flush all data in case of data=journal */
-       if (ext4_should_journal_data(inode)) {
-               ret = ext4_force_commit(inode->i_sb);
-               if (ret)
-                       return ret;
-       }
-
        inode_lock(inode);
        /* Currently just for extent based files */
        if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {