Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752497AbZLSOTh (ORCPT ); Sat, 19 Dec 2009 09:19:37 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752446AbZLSOTe (ORCPT ); Sat, 19 Dec 2009 09:19:34 -0500 Received: from sr-smtp.usish.com ([210.5.144.203]:51888 "EHLO sr-smtp.usish.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752409AbZLSOTd (ORCPT ); Sat, 19 Dec 2009 09:19:33 -0500 Date: Sat, 19 Dec 2009 22:08:11 +0800 From: "jack_wang" To: "Julia Lawall" , "lindar_liu" , "James E.J. Bottomley" , "linux-scsi" , "linux-kernel" , "kernel-janitors" References: Subject: Re: [PATCH 5/7] drivers/scsi/pm8001: Use kzalloc for allocating onlyone thing Message-ID: <200912192208103123212@usish.com> X-mailer: Foxmail 6, 15, 201, 22 [cn] Mime-Version: 1.0 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1317 Lines: 46 RE:[PATCH 5/7] drivers/scsi/pm8001: Use kzalloc for allocating onlyone thing From: Julia Lawall Use kzalloc rather than kcalloc(1,...) The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ @@ - kcalloc(1, + kzalloc( ...) // Signed-off-by: Julia Lawall --- drivers/scsi/pm8001/pm8001_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -u -p a/drivers/scsi/pm8001/pm8001_init.c b/drivers/scsi/pm8001/pm8001_init.c --- a/drivers/scsi/pm8001/pm8001_init.c 2009-12-12 00:23:19.000000000 +0100 +++ b/drivers/scsi/pm8001/pm8001_init.c 2009-12-19 07:52:44.000000000 +0100 @@ -654,7 +654,7 @@ static int __devinit pm8001_pci_probe(st } chip = &pm8001_chips[ent->driver_data]; SHOST_TO_SAS_HA(shost) = - kcalloc(1, sizeof(struct sas_ha_struct), GFP_KERNEL); + kzalloc(sizeof(struct sas_ha_struct), GFP_KERNEL); if (!SHOST_TO_SAS_HA(shost)) { rc = -ENOMEM; goto err_out_free_host; [Jack]Acked-by:Jack Wang Thanks, Julia -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/