add patch clean-up-identation-issues
[ext4-patch-queue.git] / clean-up-identation-issues
blob3deff4ff3b5a1d627d8d8d39f20cce7b3c9d719a
1 ext4: clean up indentation issues, remove extraneous tabs
3 From: Colin Ian King <colin.king@canonical.com>
5 There are several lines that are indented too far, clean these
6 up by removing the tabs.
8 Reviewed-by: Jan Kara <jack@suse.cz>
9 Signed-off-by: Colin Ian King <colin.king@canonical.com>
10 Signed-off-by: Theodore Ts'o <tytso@mit.edu>
11 ---
12  fs/ext4/migrate.c | 12 ++++++------
13  fs/ext4/super.c   |  2 +-
14  2 files changed, 7 insertions(+), 7 deletions(-)
16 diff --git a/fs/ext4/migrate.c b/fs/ext4/migrate.c
17 index 61a9d1927817..5ae61cd8c5c9 100644
18 --- a/fs/ext4/migrate.c
19 +++ b/fs/ext4/migrate.c
20 @@ -535,22 +535,22 @@ int ext4_ext_migrate(struct inode *inode)
21         if (i_data[EXT4_IND_BLOCK]) {
22                 retval = update_ind_extent_range(handle, tmp_inode,
23                                 le32_to_cpu(i_data[EXT4_IND_BLOCK]), &lb);
24 -                       if (retval)
25 -                               goto err_out;
26 +               if (retval)
27 +                       goto err_out;
28         } else
29                 lb.curr_block += max_entries;
30         if (i_data[EXT4_DIND_BLOCK]) {
31                 retval = update_dind_extent_range(handle, tmp_inode,
32                                 le32_to_cpu(i_data[EXT4_DIND_BLOCK]), &lb);
33 -                       if (retval)
34 -                               goto err_out;
35 +               if (retval)
36 +                       goto err_out;
37         } else
38                 lb.curr_block += max_entries * max_entries;
39         if (i_data[EXT4_TIND_BLOCK]) {
40                 retval = update_tind_extent_range(handle, tmp_inode,
41                                 le32_to_cpu(i_data[EXT4_TIND_BLOCK]), &lb);
42 -                       if (retval)
43 -                               goto err_out;
44 +               if (retval)
45 +                       goto err_out;
46         }
47         /*
48          * Build the last extent
49 diff --git a/fs/ext4/super.c b/fs/ext4/super.c
50 index 5603a4a1a864..15fc71398747 100644
51 --- a/fs/ext4/super.c
52 +++ b/fs/ext4/super.c
53 @@ -1940,7 +1940,7 @@ static int handle_mount_opt(struct super_block *sb, char *opt, int token,
54  #ifdef CONFIG_FS_DAX
55                 ext4_msg(sb, KERN_WARNING,
56                 "DAX enabled. Warning: EXPERIMENTAL, use at your own risk");
57 -                       sbi->s_mount_opt |= m->mount_opt;
58 +               sbi->s_mount_opt |= m->mount_opt;
59  #else
60                 ext4_msg(sb, KERN_INFO, "dax option not supported");
61                 return -1;
62 -- 
63 2.19.1