Use the numa node id set in the Scsi_Host to allocate the sdev structure on the device-local numa node.
Signed-off-by: Jeff Moyer <jmo...@redhat.com> --- drivers/scsi/scsi_scan.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/scsi_scan.c b/drivers/scsi/scsi_scan.c index 3e58b22..d91749d 100644 --- a/drivers/scsi/scsi_scan.c +++ b/drivers/scsi/scsi_scan.c @@ -232,8 +232,8 @@ static struct scsi_device *scsi_alloc_sdev(struct scsi_target *starget, extern void scsi_evt_thread(struct work_struct *work); extern void scsi_requeue_run_queue(struct work_struct *work); - sdev = kzalloc(sizeof(*sdev) + shost->transportt->device_size, - GFP_ATOMIC); + sdev = kzalloc_node(sizeof(*sdev) + shost->transportt->device_size, + GFP_ATOMIC, scsi_host_get_numa_node(shost)); if (!sdev) goto out; -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html