diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-12-04 00:16:44 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2018-12-04 00:16:44 -0500 |
commit | a92abd738d243a3bcd864a9aa9cb9345e41be83d (patch) | |
tree | ea234a2fa926e308e047ad934116668c291fef42 | |
parent | 132d00becb31e88469334e1e62751c81345280e0 (diff) |
ext4: clean up indentation issues, remove extraneous tabs
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>
-rw-r--r-- | fs/ext4/migrate.c | 12 | ||||
-rw-r--r-- | fs/ext4/super.c | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/fs/ext4/migrate.c b/fs/ext4/migrate.c index a98bfca9c463..b1e4d359f73b 100644 --- a/fs/ext4/migrate.c +++ b/fs/ext4/migrate.c | |||
@@ -535,22 +535,22 @@ int ext4_ext_migrate(struct inode *inode) | |||
535 | if (i_data[EXT4_IND_BLOCK]) { | 535 | if (i_data[EXT4_IND_BLOCK]) { |
536 | retval = update_ind_extent_range(handle, tmp_inode, | 536 | retval = update_ind_extent_range(handle, tmp_inode, |
537 | le32_to_cpu(i_data[EXT4_IND_BLOCK]), &lb); | 537 | le32_to_cpu(i_data[EXT4_IND_BLOCK]), &lb); |
538 | if (retval) | 538 | if (retval) |
539 | goto err_out; | 539 | goto err_out; |
540 | } else | 540 | } else |
541 | lb.curr_block += max_entries; | 541 | lb.curr_block += max_entries; |
542 | if (i_data[EXT4_DIND_BLOCK]) { | 542 | if (i_data[EXT4_DIND_BLOCK]) { |
543 | retval = update_dind_extent_range(handle, tmp_inode, | 543 | retval = update_dind_extent_range(handle, tmp_inode, |
544 | le32_to_cpu(i_data[EXT4_DIND_BLOCK]), &lb); | 544 | le32_to_cpu(i_data[EXT4_DIND_BLOCK]), &lb); |
545 | if (retval) | 545 | if (retval) |
546 | goto err_out; | 546 | goto err_out; |
547 | } else | 547 | } else |
548 | lb.curr_block += max_entries * max_entries; | 548 | lb.curr_block += max_entries * max_entries; |
549 | if (i_data[EXT4_TIND_BLOCK]) { | 549 | if (i_data[EXT4_TIND_BLOCK]) { |
550 | retval = update_tind_extent_range(handle, tmp_inode, | 550 | retval = update_tind_extent_range(handle, tmp_inode, |
551 | le32_to_cpu(i_data[EXT4_TIND_BLOCK]), &lb); | 551 | le32_to_cpu(i_data[EXT4_TIND_BLOCK]), &lb); |
552 | if (retval) | 552 | if (retval) |
553 | goto err_out; | 553 | goto err_out; |
554 | } | 554 | } |
555 | /* | 555 | /* |
556 | * Build the last extent | 556 | * Build the last extent |
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index d22e761aaa18..97a1cef29ef8 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
@@ -1962,7 +1962,7 @@ static int handle_mount_opt(struct super_block *sb, char *opt, int token, | |||
1962 | #ifdef CONFIG_FS_DAX | 1962 | #ifdef CONFIG_FS_DAX |
1963 | ext4_msg(sb, KERN_WARNING, | 1963 | ext4_msg(sb, KERN_WARNING, |
1964 | "DAX enabled. Warning: EXPERIMENTAL, use at your own risk"); | 1964 | "DAX enabled. Warning: EXPERIMENTAL, use at your own risk"); |
1965 | sbi->s_mount_opt |= m->mount_opt; | 1965 | sbi->s_mount_opt |= m->mount_opt; |
1966 | #else | 1966 | #else |
1967 | ext4_msg(sb, KERN_INFO, "dax option not supported"); | 1967 | ext4_msg(sb, KERN_INFO, "dax option not supported"); |
1968 | return -1; | 1968 | return -1; |