aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/libiscsi.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/scsi/libiscsi.c')
-rw-r--r--drivers/scsi/libiscsi.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/scsi/libiscsi.c b/drivers/scsi/libiscsi.c
index f1a4246f890c..67d0f3fc8ac0 100644
--- a/drivers/scsi/libiscsi.c
+++ b/drivers/scsi/libiscsi.c
@@ -1643,8 +1643,11 @@ fault:
1643} 1643}
1644EXPORT_SYMBOL_GPL(iscsi_queuecommand); 1644EXPORT_SYMBOL_GPL(iscsi_queuecommand);
1645 1645
1646int iscsi_change_queue_depth(struct scsi_device *sdev, int depth) 1646int iscsi_change_queue_depth(struct scsi_device *sdev, int depth, int reason)
1647{ 1647{
1648 if (reason != SCSI_QDEPTH_DEFAULT)
1649 return -EOPNOTSUPP;
1650
1648 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth); 1651 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
1649 return sdev->queue_depth; 1652 return sdev->queue_depth;
1650} 1653}