From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff Moyer Subject: [patch,v3,repost 09/10] lpfc: use scsi_host_alloc_node Date: Tue, 27 Nov 2012 11:46:37 -0500 Message-ID: <1354034799-8460-10-git-send-email-jmoyer@redhat.com> References: <1354034799-8460-1-git-send-email-jmoyer@redhat.com> Return-path: In-Reply-To: <1354034799-8460-1-git-send-email-jmoyer@redhat.com> Sender: linux-kernel-owner@vger.kernel.org To: linux-kernel@vger.kernel.org, linux-scsi@vger.kernel.org, JBottomley@parallels.com Cc: Bart Van Assche , James Smart List-Id: linux-scsi@vger.kernel.org Acked-By: James Smart Signed-off-by: Jeff Moyer --- drivers/scsi/lpfc/lpfc_init.c | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c index 7dc4218..65956d3 100644 --- a/drivers/scsi/lpfc/lpfc_init.c +++ b/drivers/scsi/lpfc/lpfc_init.c @@ -3051,11 +3051,13 @@ lpfc_create_port(struct lpfc_hba *phba, int instance, struct device *dev) int error = 0; if (dev != &phba->pcidev->dev) - shost = scsi_host_alloc(&lpfc_vport_template, - sizeof(struct lpfc_vport)); + shost = scsi_host_alloc_node(&lpfc_vport_template, + sizeof(struct lpfc_vport), + dev_to_node(&phba->pcidev->dev)); else - shost = scsi_host_alloc(&lpfc_template, - sizeof(struct lpfc_vport)); + shost = scsi_host_alloc_node(&lpfc_template, + sizeof(struct lpfc_vport), + dev_to_node(&phba->pcidev->dev)); if (!shost) goto out; -- 1.7.1