Commit 4b8c6ba616deab7ddf2725f5833cf027a149987f

Authored by Christoph Hellwig
Committed by Christoph Hellwig
1 parent cbaa422134

scsi: fix regression that accidentally disabled block-based tcq

Please try the fix below, looks like the commit broke TCQ for all drivers
using block-level tagging.

Signed-off-by: Christoph Hellwig <hch@lst.de>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

include/scsi/scsi_tcq.h
... ... @@ -68,7 +68,7 @@
68 68 return;
69 69  
70 70 if (!shost_use_blk_mq(sdev->host) &&
71   - blk_queue_tagged(sdev->request_queue))
  71 + !blk_queue_tagged(sdev->request_queue))
72 72 blk_queue_init_tags(sdev->request_queue, depth,
73 73 sdev->host->bqt);
74 74