diff options
author | Jens Axboe <axboe@kernel.dk> | 2018-05-11 10:07:50 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-05-11 12:56:44 -0600 |
commit | ec0a5acab9433e9d7af1611a27fe1eab786d0d37 (patch) | |
tree | 598e11a8978657bfc67ff21fe6f38f585519454c | |
parent | 7c29dafeecec318dad9c4bc4dcfc911d837d8b35 (diff) |
ahci: enable full queue depth of 32libata-qd32
This changes the AHCI queue depth from 31 to 32, as libata now
fully supports it. Now regular IO requests can utilize the full
tag space of SATA, not just 31. For IOPS constrained workloads,
this can result in a ~3% bump in performance.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | drivers/ata/ahci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/ahci.h b/drivers/ata/ahci.h index 824bd399f02e..1609ebab4e23 100644 --- a/drivers/ata/ahci.h +++ b/drivers/ata/ahci.h @@ -390,7 +390,7 @@ extern struct device_attribute *ahci_sdev_attrs[]; */ #define AHCI_SHT(drv_name) \ ATA_NCQ_SHT(drv_name), \ - .can_queue = AHCI_MAX_CMDS - 1, \ + .can_queue = AHCI_MAX_CMDS, \ .sg_tablesize = AHCI_MAX_SG, \ .dma_boundary = AHCI_DMA_BOUNDARY, \ .shost_attrs = ahci_shost_attrs, \ |