aboutsummaryrefslogtreecommitdiffstats
path: root/block/blk-exec.c
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2011-12-14 00:33:37 +0100
committerZiyan <jaraidaniel@gmail.com>2016-01-08 10:36:46 +0100
commitd8ee33f8823b8329c99aea98fda6b34704fdf0fa (patch)
tree7718670f49eb640b8797fb4e534f4c33be690bb2 /block/blk-exec.c
parent69865b07f95507e0aceba6ada81cfea328389980 (diff)
downloadkernel_samsung_tuna-d8ee33f8823b8329c99aea98fda6b34704fdf0fa.zip
kernel_samsung_tuna-d8ee33f8823b8329c99aea98fda6b34704fdf0fa.tar.gz
kernel_samsung_tuna-d8ee33f8823b8329c99aea98fda6b34704fdf0fa.tar.bz2
block: add blk_queue_dead()
There are a number of QUEUE_FLAG_DEAD tests. Add blk_queue_dead() macro and use it. This patch doesn't introduce any functional difference. Signed-off-by: Tejun Heo <tj@kernel.org> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-exec.c')
-rw-r--r--block/blk-exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-exec.c b/block/blk-exec.c
index a1ebceb..6053285 100644
--- a/block/blk-exec.c
+++ b/block/blk-exec.c
@@ -50,7 +50,7 @@ void blk_execute_rq_nowait(struct request_queue *q, struct gendisk *bd_disk,
{
int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
- if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
+ if (unlikely(blk_queue_dead(q))) {
rq->errors = -ENXIO;
if (rq->end_io)
rq->end_io(rq, rq->errors);