summaryrefslogtreecommitdiff
path: root/fs/ext2
diff options
context:
space:
mode:
authorXianting Tian <tian.xianting@h3c.com>2020-10-10 12:43:35 +0300
committerJan Kara <jack@suse.cz>2020-11-03 13:16:04 +0300
commita219ee41899bcfabd63cd6617256d5be13a7f4b6 (patch)
treef0f593a3ad351c9bc882df00b526e70abf2a25d5 /fs/ext2
parent5190db9fdd20fa5ba6084c98a3bc71c2fdf6a871 (diff)
downloadlinux-a219ee41899bcfabd63cd6617256d5be13a7f4b6.tar.xz
ext2: Remove unnecessary blank
Remove unnecessary blank when calling kmalloc_array(). Link: https://lore.kernel.org/r/20201010094335.39797-1-tian.xianting@h3c.com Signed-off-by: Xianting Tian <tian.xianting@h3c.com> Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/ext2')
-rw-r--r--fs/ext2/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext2/super.c b/fs/ext2/super.c
index 09f1fe676972..6c4753277916 100644
--- a/fs/ext2/super.c
+++ b/fs/ext2/super.c
@@ -1070,7 +1070,7 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent)
/ EXT2_BLOCKS_PER_GROUP(sb)) + 1;
db_count = (sbi->s_groups_count + EXT2_DESC_PER_BLOCK(sb) - 1) /
EXT2_DESC_PER_BLOCK(sb);
- sbi->s_group_desc = kmalloc_array (db_count,
+ sbi->s_group_desc = kmalloc_array(db_count,
sizeof(struct buffer_head *),
GFP_KERNEL);
if (sbi->s_group_desc == NULL) {