summaryrefslogtreecommitdiffstats
path: root/drivers/scsi/aacraid
diff options
context:
space:
mode:
authorKashyap.Desai@avagotech.com2014-08-20 15:54:33 +0200
committerChristoph Hellwig2014-09-16 01:01:58 +0200
commit64bdcbc449105377dd60c8da97cfc1663b39562c (patch)
treebe79dd9fe4dfd101dc68ed5ee6d0d53ce2efad09 /drivers/scsi/aacraid
parentsd: Avoid sending medium write commands if device is write protected (diff)
downloadkernel-qcow2-linux-64bdcbc449105377dd60c8da97cfc1663b39562c.tar.gz
kernel-qcow2-linux-64bdcbc449105377dd60c8da97cfc1663b39562c.tar.xz
kernel-qcow2-linux-64bdcbc449105377dd60c8da97cfc1663b39562c.zip
scsi: add use_cmd_list flag
Add a use_cmd_list flag in struct Scsi_Host to request keeping track of all outstanding commands per device. Default behaviour is not to keep track of cmd_list per sdev, as this may introduce lock contention. (overhead is more on multi-node NUMA.), and only enable it on the two drivers that need it. Signed-off-by: Kashyap Desai <kashyap.desai@avagotech.com> Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com> Reviewed-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/scsi/aacraid')
-rw-r--r--drivers/scsi/aacraid/linit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/aacraid/linit.c b/drivers/scsi/aacraid/linit.c
index 63f576c9300a..a759cb2d4b15 100644
--- a/drivers/scsi/aacraid/linit.c
+++ b/drivers/scsi/aacraid/linit.c
@@ -1152,6 +1152,7 @@ static int aac_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
shost->irq = pdev->irq;
shost->unique_id = unique_id;
shost->max_cmd_len = 16;
+ shost->use_cmd_list = 1;
aac = (struct aac_dev *)shost->hostdata;
aac->base_start = pci_resource_start(pdev, 0);