projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d6a51a9
)
block: clear REQ_HIPRI if polling is not supported
author
Christoph Hellwig
<hch@lst.de>
Fri, 14 Dec 2018 16:21:22 +0000
(17:21 +0100)
committer
Jens Axboe
<axboe@kernel.dk>
Sun, 16 Dec 2018 16:01:38 +0000
(09:01 -0700)
This prevents a HIPRI bio from being submitted through a stacking
driver that does not support polling and thus won't poll for I/O
completion.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-core.c
patch
|
blob
|
history
diff --git
a/block/blk-core.c
b/block/blk-core.c
index fa661bac40afcc6c9c47d0f089c6e355f2c81c19..c78042975737401cac2dd937c558edfc49fc780c 100644
(file)
--- a/
block/blk-core.c
+++ b/
block/blk-core.c
@@
-921,6
+921,9
@@
generic_make_request_checks(struct bio *bio)
}
}
+ if (!test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
+ bio->bi_opf &= ~REQ_HIPRI;
+
switch (bio_op(bio)) {
case REQ_OP_DISCARD:
if (!blk_queue_discard(q))