[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4A775474.8000705@linux.vnet.ibm.com>
Date: Mon, 03 Aug 2009 16:19:48 -0500
From: Brian King <brking@...ux.vnet.ibm.com>
To: Sage Weil <sage@...dream.net>
CC: linux-kernel@...r.kernel.org, linux-scsi@...r.kernel.org,
James Bottomley <James.Bottomley@...senPartnership.com>
Subject: Re: [PATCH] ibmvscsi: avoid unnecessary use of kzalloc_pool
Acked-by: Brian King <brking@...ux.vnet.ibm.com>
Sage Weil wrote:
> The allocated struct is manually zeroed after allocation, so avoid using
> the (broken) kzalloc mempool (which does not re-zero previously used items
> when they are returned to the pool).
>
> CC: linux-scsi@...r.kernel.org
> CC: James Bottomley <James.Bottomley@...senPartnership.com>
> Signed-off-by: Sage Weil <sage@...dream.net>
> ---
> drivers/scsi/ibmvscsi/ibmvfc.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/scsi/ibmvscsi/ibmvfc.c b/drivers/scsi/ibmvscsi/ibmvfc.c
> index 166d964..bb2c696 100644
> --- a/drivers/scsi/ibmvscsi/ibmvfc.c
> +++ b/drivers/scsi/ibmvscsi/ibmvfc.c
> @@ -4217,7 +4217,7 @@ static int ibmvfc_alloc_mem(struct ibmvfc_host *vhost)
> if (!vhost->trace)
> goto free_disc_buffer;
>
> - vhost->tgt_pool = mempool_create_kzalloc_pool(IBMVFC_TGT_MEMPOOL_SZ,
> + vhost->tgt_pool = mempool_create_kmalloc_pool(IBMVFC_TGT_MEMPOOL_SZ,
> sizeof(struct ibmvfc_target));
>
> if (!vhost->tgt_pool) {
--
Brian King
Linux on Power Virtualization
IBM Linux Technology Center
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists