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 | |
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>
-rw-r--r-- | drivers/scsi/esp_scsi.c | 12 | ||||
-rw-r--r-- | drivers/scsi/esp_scsi.h | 3 |
2 files changed, 7 insertions, 8 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 | ||
diff --git a/drivers/scsi/esp_scsi.h b/drivers/scsi/esp_scsi.h index b5862e463455..975d2934d42a 100644 --- a/drivers/scsi/esp_scsi.h +++ b/drivers/scsi/esp_scsi.h | |||
@@ -283,7 +283,6 @@ struct esp_cmd_entry { | |||
283 | struct completion *eh_done; | 283 | struct completion *eh_done; |
284 | }; | 284 | }; |
285 | 285 | ||
286 | /* XXX make this configurable somehow XXX */ | ||
287 | #define ESP_DEFAULT_TAGS 16 | 286 | #define ESP_DEFAULT_TAGS 16 |
288 | 287 | ||
289 | #define ESP_MAX_TARGET 16 | 288 | #define ESP_MAX_TARGET 16 |
@@ -445,7 +444,7 @@ struct esp { | |||
445 | u8 prev_soff; | 444 | u8 prev_soff; |
446 | u8 prev_stp; | 445 | u8 prev_stp; |
447 | u8 prev_cfg3; | 446 | u8 prev_cfg3; |
448 | u8 __pad; | 447 | u8 num_tags; |
449 | 448 | ||
450 | struct list_head esp_cmd_pool; | 449 | struct list_head esp_cmd_pool; |
451 | 450 | ||