projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5190db9
)
ext2: Remove unnecessary blank
author
Xianting Tian
<tian.xianting@h3c.com>
Sat, 10 Oct 2020 09:43:35 +0000
(17:43 +0800)
committer
Jan Kara
<jack@suse.cz>
Tue, 3 Nov 2020 10:16:04 +0000
(11:16 +0100)
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>
fs/ext2/super.c
patch
|
blob
|
history
diff --git
a/fs/ext2/super.c
b/fs/ext2/super.c
index 09f1fe67697278d4963ab036ea75fdc0dd234488..6c475327791656808738451ac2b92fdff0e55529 100644
(file)
--- 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) {