RE: [PATCH] aic7xxx: replace kmalloc/memset by kzalloc

2014-10-16 Thread Elliott, Robert (Server Storage)
> -Original Message- > From: linux-scsi-ow...@vger.kernel.org [mailto:linux-scsi- > ow...@vger.kernel.org] On Behalf Of Michael Opdenacker > Sent: Thursday, 16 October, 2014 2:31 PM ... > On 10/16/2014 09:28 PM, Joe Perches wrote: > > On Thu, 2014-10-16 at 21:14 +0200, Michael Opdenacker wr

Re: [PATCH] aic7xxx: replace kmalloc/memset by kzalloc

2014-10-16 Thread Michael Opdenacker
Hi Joe, On 10/16/2014 09:28 PM, Joe Perches wrote: > On Thu, 2014-10-16 at 21:14 +0200, Michael Opdenacker wrote: > > > /* Allocate SCB resources */ > - scb_data->scbarray = kmalloc(sizeof(struct scb) * AHC_SCB_MAX_ALLOC, > GFP_ATOMIC); > + scb_data->scbarray = kzalloc(sizeof(stru

Re: [PATCH] aic7xxx: replace kmalloc/memset by kzalloc

2014-10-16 Thread Joe Perches
On Thu, 2014-10-16 at 21:14 +0200, Michael Opdenacker wrote: > This replaces kmalloc + memset by a call to kzalloc. [] > diff --git a/drivers/scsi/aic7xxx/aic7xxx_core.c > b/drivers/scsi/aic7xxx/aic7xxx_core.c [] > @@ -4780,10 +4779,10 @@ ahc_init_scbdata(struct ahc_softc *ahc) > SLIST_INIT(

[PATCH] aic7xxx: replace kmalloc/memset by kzalloc

2014-10-16 Thread Michael Opdenacker
This replaces kmalloc + memset by a call to kzalloc. This also fixes one checkpatch.pl issue in the process. This improvement was suggested by "make coccicheck" Signed-off-by: Michael Opdenacker --- drivers/scsi/aic7xxx/aic79xx_core.c | 3 +-- drivers/scsi/aic7xxx/aic79xx_osm.c | 3 +-- dri