diff options
author | Christoph Hellwig <hch@infradead.org> | 2014-09-13 01:00:32 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2014-09-15 23:11:20 +0200 |
commit | 4b8c6ba616deab7ddf2725f5833cf027a149987f (patch) | |
tree | 46befd9bf9c5fbb3a42792e190d642698020af2c | |
parent | libiscsi: fix potential buffer overrun in __iscsi_conn_send_pdu (diff) | |
download | linux-4b8c6ba616deab7ddf2725f5833cf027a149987f.tar.xz linux-4b8c6ba616deab7ddf2725f5833cf027a149987f.zip |
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>
-rw-r--r-- | include/scsi/scsi_tcq.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/scsi/scsi_tcq.h b/include/scsi/scsi_tcq.h index cdcc90b07ecb..e64583560701 100644 --- a/include/scsi/scsi_tcq.h +++ b/include/scsi/scsi_tcq.h @@ -68,7 +68,7 @@ static inline void scsi_activate_tcq(struct scsi_device *sdev, int depth) return; if (!shost_use_blk_mq(sdev->host) && - blk_queue_tagged(sdev->request_queue)) + !blk_queue_tagged(sdev->request_queue)) blk_queue_init_tags(sdev->request_queue, depth, sdev->host->bqt); |