diff options
author | Hannes Reinecke <hare@suse.de> | 2014-11-24 09:37:20 -0500 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2014-11-24 10:10:23 -0500 |
commit | 3707a186c8970e3c4f3c8d9ccf4230b8657e919f (patch) | |
tree | cacc0aaabc663d438b1944f06e52d58b5cb56684 /drivers/scsi/esp_scsi.c | |
parent | a87bf29362c763cf35faa17154b699471a8b902e (diff) |
esp_scsi: make number of tags configurable
Add a field 'num_tags' to the esp structure to allow drivers
to overwrite the number of avialable tags if required.
Default is ESP_DEFAULT_TAGS.
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/scsi/esp_scsi.c')
-rw-r--r-- | drivers/scsi/esp_scsi.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/scsi/esp_scsi.c b/drivers/scsi/esp_scsi.c index 7e7687f73deb..57ccb147b22b 100644 --- a/drivers/scsi/esp_scsi.c +++ b/drivers/scsi/esp_scsi.c | |||
@@ -2317,6 +2317,10 @@ int scsi_esp_register(struct esp *esp, struct device *dev) | |||
2317 | static int instance; | 2317 | static int instance; |
2318 | int err; | 2318 | int err; |
2319 | 2319 | ||
2320 | if (!esp->num_tags) | ||
2321 | esp->num_tags = ESP_DEFAULT_TAGS; | ||
2322 | else if (esp->num_tags >= ESP_MAX_TAG) | ||
2323 | esp->num_tags = ESP_MAX_TAG - 1; | ||
2320 | esp->host->transportt = esp_transport_template; | 2324 | esp->host->transportt = esp_transport_template; |
2321 | esp->host->max_lun = ESP_MAX_LUN; | 2325 | esp->host->max_lun = ESP_MAX_LUN; |
2322 | esp->host->cmd_per_lun = 2; | 2326 | esp->host->cmd_per_lun = 2; |
@@ -2403,12 +2407,8 @@ static int esp_slave_configure(struct scsi_device *dev) | |||
2403 | struct esp *esp = shost_priv(dev->host); | 2407 | struct esp *esp = shost_priv(dev->host); |
2404 | struct esp_target_data *tp = &esp->target[dev->id]; | 2408 | struct esp_target_data *tp = &esp->target[dev->id]; |
2405 | 2409 | ||
2406 | if (dev->tagged_supported) { | 2410 | if (dev->tagged_supported) |
2407 | /* XXX make this configurable somehow XXX */ | 2411 | scsi_change_queue_depth(dev, esp->num_tags); |
2408 | int goal_tags = min(ESP_DEFAULT_TAGS, ESP_MAX_TAG); | ||
2409 | |||
2410 | scsi_change_queue_depth(dev, goal_tags); | ||
2411 | } | ||
2412 | 2412 | ||
2413 | tp->flags |= ESP_TGT_DISCONNECT; | 2413 | tp->flags |= ESP_TGT_DISCONNECT; |
2414 | 2414 | ||