This patch corrects the size passed to kmalloc in asd_register_sas_ha() Signed-off-by: Malahal Naineni <malahal@xxxxxxxxxx> diff -r 134012c83658 drivers/scsi/aic94xx/aic94xx_init.c --- a/drivers/scsi/aic94xx/aic94xx_init.c Thu Aug 31 13:03:38 2006 -0700 +++ b/drivers/scsi/aic94xx/aic94xx_init.c Wed Sep 06 23:40:29 2006 -0700 @@ -481,9 +481,9 @@ static int asd_register_sas_ha(struct as { int i; struct asd_sas_phy **sas_phys = - kmalloc(ASD_MAX_PHYS * sizeof(struct asd_sas_phy), GFP_KERNEL); + kmalloc(ASD_MAX_PHYS * sizeof(struct asd_sas_phy *), GFP_KERNEL); struct asd_sas_port **sas_ports = - kmalloc(ASD_MAX_PHYS * sizeof(struct asd_sas_port), GFP_KERNEL); + kmalloc(ASD_MAX_PHYS * sizeof(struct asd_sas_port *), GFP_KERNEL); if (!sas_phys || !sas_ports) { kfree(sas_phys); - To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html