diff options
author | Jens Axboe <axboe@kernel.dk> | 2018-11-15 12:22:51 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-11-16 08:34:06 -0700 |
commit | 344e9ffcbd1898e1dc04085564a6e05c30ea8199 (patch) | |
tree | ba71320bc66d1158790acf1cdeedd21d2da9dead /block/blk-flush.c | |
parent | dabcefab45d36ecb5a22f16577bb0f298876a22d (diff) | |
download | linux-344e9ffcbd1898e1dc04085564a6e05c30ea8199.tar.gz linux-344e9ffcbd1898e1dc04085564a6e05c30ea8199.tar.bz2 linux-344e9ffcbd1898e1dc04085564a6e05c30ea8199.zip |
block: add queue_is_mq() helper
Various spots check for q->mq_ops being non-NULL, but provide
a helper to do this instead.
Where the ->mq_ops != NULL check is redundant, remove it.
Since mq == rq-based now that legacy is gone, get rid of the
queue_is_rq_based() and just use queue_is_mq() everywhere.
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-flush.c')
-rw-r--r-- | block/blk-flush.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/block/blk-flush.c b/block/blk-flush.c index fcd18b158fd6..a3fc7191c694 100644 --- a/block/blk-flush.c +++ b/block/blk-flush.c @@ -273,8 +273,7 @@ static void blk_kick_flush(struct request_queue *q, struct blk_flush_queue *fq, * assigned to empty flushes, and we deadlock if we are expecting * other requests to make progress. Don't defer for that case. */ - if (!list_empty(&fq->flush_data_in_flight) && - !(q->mq_ops && q->elevator) && + if (!list_empty(&fq->flush_data_in_flight) && q->elevator && time_before(jiffies, fq->flush_pending_since + FLUSH_PENDING_TIMEOUT)) return; |