diff options
author | Alan <gnomes@lxorguk.ukuu.org.uk> | 2016-02-15 18:53:15 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-04-12 09:08:39 -0700 |
commit | b9d26f81ae9fa23988a5b503455f300bcef292fb (patch) | |
tree | a318a31cedf3089723e162606b1651875beeedc0 | |
parent | e760edfb7ba763e48b870025ab0b5edb4af85089 (diff) | |
download | lwn-b9d26f81ae9fa23988a5b503455f300bcef292fb.tar.gz lwn-b9d26f81ae9fa23988a5b503455f300bcef292fb.zip |
aic7xxx: Fix queue depth handling
commit 5a51a7abca133860a6f4429655a9eda3c4afde32 upstream.
We were setting the queue depth correctly, then setting it back to
two. If you hit this as a bisection point then please send me an email
as it would imply we've been hiding other bugs with this one.
Signed-off-by: Alan Cox <alan@linux.intel.com>
Reviewed-by: Hannes Reinicke <hare@suse.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/scsi/aic7xxx/aic7xxx_osm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/aic7xxx/aic7xxx_osm.c b/drivers/scsi/aic7xxx/aic7xxx_osm.c index b846a4683562..fc6a83188c1e 100644 --- a/drivers/scsi/aic7xxx/aic7xxx_osm.c +++ b/drivers/scsi/aic7xxx/aic7xxx_osm.c @@ -1336,6 +1336,7 @@ ahc_platform_set_tags(struct ahc_softc *ahc, struct scsi_device *sdev, case AHC_DEV_Q_TAGGED: scsi_change_queue_depth(sdev, dev->openings + dev->active); + break; default: /* * We allow the OS to queue 2 untagged transactions to |