Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Colin Ian King and committed by
Theodore Ts'o
a92abd73 132d00be

+7 -7
+6 -6
fs/ext4/migrate.c
··· 535 535 if (i_data[EXT4_IND_BLOCK]) { 536 536 retval = update_ind_extent_range(handle, tmp_inode, 537 537 le32_to_cpu(i_data[EXT4_IND_BLOCK]), &lb); 538 - if (retval) 539 - goto err_out; 538 + if (retval) 539 + goto err_out; 540 540 } else 541 541 lb.curr_block += max_entries; 542 542 if (i_data[EXT4_DIND_BLOCK]) { 543 543 retval = update_dind_extent_range(handle, tmp_inode, 544 544 le32_to_cpu(i_data[EXT4_DIND_BLOCK]), &lb); 545 - if (retval) 546 - goto err_out; 545 + if (retval) 546 + goto err_out; 547 547 } else 548 548 lb.curr_block += max_entries * max_entries; 549 549 if (i_data[EXT4_TIND_BLOCK]) { 550 550 retval = update_tind_extent_range(handle, tmp_inode, 551 551 le32_to_cpu(i_data[EXT4_TIND_BLOCK]), &lb); 552 - if (retval) 553 - goto err_out; 552 + if (retval) 553 + goto err_out; 554 554 } 555 555 /* 556 556 * Build the last extent
+1 -1
fs/ext4/super.c
··· 1962 1962 #ifdef CONFIG_FS_DAX 1963 1963 ext4_msg(sb, KERN_WARNING, 1964 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 1966 #else 1967 1967 ext4_msg(sb, KERN_INFO, "dax option not supported"); 1968 1968 return -1;