diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 19:16:45 -0400 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 19:16:45 -0400 |
commit | ada47b5fe13d89735805b566185f4885f5a3f750 (patch) | |
tree | 644b88f8a71896307d71438e9b3af49126ffb22b /drivers/scsi/aacraid/linit.c | |
parent | 43e98717ad40a4ae64545b5ba047c7b86aa44f4f (diff) | |
parent | 3280f21d43ee541f97f8cda5792150d2dbec20d5 (diff) |
Merge branch 'wip-2.6.34' into old-private-masterarchived-private-master
Diffstat (limited to 'drivers/scsi/aacraid/linit.c')
-rw-r--r-- | drivers/scsi/aacraid/linit.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/scsi/aacraid/linit.c b/drivers/scsi/aacraid/linit.c index 9b97c3e016fe..e9373a2d14fa 100644 --- a/drivers/scsi/aacraid/linit.c +++ b/drivers/scsi/aacraid/linit.c | |||
@@ -472,8 +472,12 @@ static int aac_slave_configure(struct scsi_device *sdev) | |||
472 | * total capacity and the queue depth supported by the target device. | 472 | * total capacity and the queue depth supported by the target device. |
473 | */ | 473 | */ |
474 | 474 | ||
475 | static int aac_change_queue_depth(struct scsi_device *sdev, int depth) | 475 | static int aac_change_queue_depth(struct scsi_device *sdev, int depth, |
476 | int reason) | ||
476 | { | 477 | { |
478 | if (reason != SCSI_QDEPTH_DEFAULT) | ||
479 | return -EOPNOTSUPP; | ||
480 | |||
477 | if (sdev->tagged_supported && (sdev->type == TYPE_DISK) && | 481 | if (sdev->tagged_supported && (sdev->type == TYPE_DISK) && |
478 | (sdev_channel(sdev) == CONTAINER_CHANNEL)) { | 482 | (sdev_channel(sdev) == CONTAINER_CHANNEL)) { |
479 | struct scsi_device * dev; | 483 | struct scsi_device * dev; |