Skip to content

Commit 666245d

Browse files
Jack Qiutytso
authored andcommitted
ext4: fix trailing whitespace
Made suggested modifications from checkpatch in reference to ERROR: trailing whitespace Signed-off-by: Jack Qiu <[email protected]> Reviewed-by: Ritesh Harjani <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Theodore Ts'o <[email protected]>
1 parent 3088e5a commit 666245d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

fs/ext4/balloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ unsigned ext4_free_clusters_after_init(struct super_block *sb,
239239
ext4_group_t block_group,
240240
struct ext4_group_desc *gdp)
241241
{
242-
return num_clusters_in_group(sb, block_group) -
242+
return num_clusters_in_group(sb, block_group) -
243243
ext4_num_overhead_clusters(sb, block_group, gdp);
244244
}
245245

fs/ext4/mballoc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3089,7 +3089,7 @@ int ext4_mb_alloc_groupinfo(struct super_block *sb, ext4_group_t ngroups)
30893089
sbi->s_group_info_size = size / sizeof(*sbi->s_group_info);
30903090
if (old_groupinfo)
30913091
ext4_kvfree_array_rcu(old_groupinfo);
3092-
ext4_debug("allocated s_groupinfo array for %d meta_bg's\n",
3092+
ext4_debug("allocated s_groupinfo array for %d meta_bg's\n",
30933093
sbi->s_group_info_size);
30943094
return 0;
30953095
}

fs/ext4/namei.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2234,10 +2234,10 @@ static int make_indexed_dir(handle_t *handle, struct ext4_filename *fname,
22342234

22352235
retval = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
22362236
if (retval)
2237-
goto out_frames;
2237+
goto out_frames;
22382238
retval = ext4_handle_dirty_dirblock(handle, dir, bh2);
22392239
if (retval)
2240-
goto out_frames;
2240+
goto out_frames;
22412241

22422242
de = do_split(handle,dir, &bh2, frame, &fname->hinfo);
22432243
if (IS_ERR(de)) {
@@ -3469,7 +3469,7 @@ static int ext4_symlink(struct user_namespace *mnt_userns, struct inode *dir,
34693469
* for transaction commit if we are running out of space
34703470
* and thus we deadlock. So we have to stop transaction now
34713471
* and restart it when symlink contents is written.
3472-
*
3472+
*
34733473
* To keep fs consistent in case of crash, we have to put inode
34743474
* to orphan list in the mean time.
34753475
*/

fs/ext4/super.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5020,7 +5020,7 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent)
50205020
ext4_journal_commit_callback;
50215021

50225022
block = ext4_count_free_clusters(sb);
5023-
ext4_free_blocks_count_set(sbi->s_es,
5023+
ext4_free_blocks_count_set(sbi->s_es,
50245024
EXT4_C2B(sbi, block));
50255025
err = percpu_counter_init(&sbi->s_freeclusters_counter, block,
50265026
GFP_KERNEL);

0 commit comments

Comments
 (0)