]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ext4: clean up indentation issues, remove extraneous tabs
authorColin Ian King <colin.king@canonical.com>
Tue, 4 Dec 2018 05:16:44 +0000 (00:16 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 4 Dec 2018 05:16:44 +0000 (00:16 -0500)
There are several lines that are indented too far, clean these
up by removing the tabs.

Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/migrate.c
fs/ext4/super.c

index a98bfca9c463cfeb4d4bc95fa2d4b5fcd767bcca..b1e4d359f73b5490be121a8bf637c0ad1e958c13 100644 (file)
@@ -535,22 +535,22 @@ int ext4_ext_migrate(struct inode *inode)
        if (i_data[EXT4_IND_BLOCK]) {
                retval = update_ind_extent_range(handle, tmp_inode,
                                le32_to_cpu(i_data[EXT4_IND_BLOCK]), &lb);
-                       if (retval)
-                               goto err_out;
+               if (retval)
+                       goto err_out;
        } else
                lb.curr_block += max_entries;
        if (i_data[EXT4_DIND_BLOCK]) {
                retval = update_dind_extent_range(handle, tmp_inode,
                                le32_to_cpu(i_data[EXT4_DIND_BLOCK]), &lb);
-                       if (retval)
-                               goto err_out;
+               if (retval)
+                       goto err_out;
        } else
                lb.curr_block += max_entries * max_entries;
        if (i_data[EXT4_TIND_BLOCK]) {
                retval = update_tind_extent_range(handle, tmp_inode,
                                le32_to_cpu(i_data[EXT4_TIND_BLOCK]), &lb);
-                       if (retval)
-                               goto err_out;
+               if (retval)
+                       goto err_out;
        }
        /*
         * Build the last extent
index d22e761aaa1853767376bd1b86cd4c32ca3d00b5..97a1cef29ef8a2470f7d361f21c9347d7d9084bd 100644 (file)
@@ -1962,7 +1962,7 @@ static int handle_mount_opt(struct super_block *sb, char *opt, int token,
 #ifdef CONFIG_FS_DAX
                ext4_msg(sb, KERN_WARNING,
                "DAX enabled. Warning: EXPERIMENTAL, use at your own risk");
-                       sbi->s_mount_opt |= m->mount_opt;
+               sbi->s_mount_opt |= m->mount_opt;
 #else
                ext4_msg(sb, KERN_INFO, "dax option not supported");
                return -1;