2020-10-10 22:07:37

by Tianxianting

[permalink] [raw]
Subject: [PATCH] ext2: Remove unnecessary blank

Remove unnecessary blank when calling kmalloc_array().

Signed-off-by: Xianting Tian <[email protected]>
---
fs/ext2/super.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ext2/super.c b/fs/ext2/super.c
index 7fab2b3b5..551e69755 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) {
--
2.17.1


2020-10-19 16:36:51

by Jan Kara

[permalink] [raw]
Subject: Re: [PATCH] ext2: Remove unnecessary blank

On Sat 10-10-20 17:43:35, Xianting Tian wrote:
> Remove unnecessary blank when calling kmalloc_array().
>
> Signed-off-by: Xianting Tian <[email protected]>

Thanks. I've added the patch to my tree.

Honza

> ---
> fs/ext2/super.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/ext2/super.c b/fs/ext2/super.c
> index 7fab2b3b5..551e69755 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) {
> --
> 2.17.1
>
--
Jan Kara <[email protected]>
SUSE Labs, CR