Re: [PATCH] btrfs: Replace kmalloc with kzalloc in the error message

2020-05-29 Thread David Sterba
On Thu, May 28, 2020 at 07:03:45PM -0700, Joe Perches wrote: > On Fri, 2020-05-29 at 09:00 +0800, Yi Wang wrote: > > From: Liao Pingfang > > > > Use kzalloc instead of kmalloc in the error message according to > > the previous kzalloc() call. > [] > > diff --git a/fs/btrfs/check-integrity.c b/fs/

Re: [PATCH] btrfs: Replace kmalloc with kzalloc in the error message

2020-05-28 Thread Joe Perches
On Fri, 2020-05-29 at 09:00 +0800, Yi Wang wrote: > From: Liao Pingfang > > Use kzalloc instead of kmalloc in the error message according to > the previous kzalloc() call. [] > diff --git a/fs/btrfs/check-integrity.c b/fs/btrfs/check-integrity.c [] > @@ -632,7 +632,7 @@ static int btrfsic_process

[PATCH] btrfs: Replace kmalloc with kzalloc in the error message

2020-05-28 Thread Yi Wang
From: Liao Pingfang Use kzalloc instead of kmalloc in the error message according to the previous kzalloc() call. Signed-off-by: Liao Pingfang --- fs/btrfs/check-integrity.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/fs/btrfs/check-integrity.c b/fs/b