summaryrefslogtreecommitdiffstats
path: root/block/blk-mq.c
diff options
context:
space:
mode:
authorShaohua Li <shli@fb.com>2017-10-06 17:56:00 -0700
committerJens Axboe <axboe@kernel.dk>2017-10-10 13:48:16 -0600
commit85acb3ba2f925a0ec6928c1967c3adefa00682f4 (patch)
tree8f33cf0708140ea17e4fa3d3fc31aadfd1867b0e /block/blk-mq.c
parenteca8b53a6769e60d6d8240d71202d73b0af81901 (diff)
downloadop-kernel-dev-85acb3ba2f925a0ec6928c1967c3adefa00682f4.zip
op-kernel-dev-85acb3ba2f925a0ec6928c1967c3adefa00682f4.tar.gz
block: set request_list for request
Legacy queue sets request's request_list, mq doesn't. This makes mq does the same thing, so we can find cgroup of a request. Note, we really only use blkg field of request_list, it's pointless to allocate mempool for request_list in mq case. Signed-off-by: Shaohua Li <shli@fb.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-mq.c')
-rw-r--r--block/blk-mq.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/block/blk-mq.c b/block/blk-mq.c
index 076cbab..40cba1b 100644
--- a/block/blk-mq.c
+++ b/block/blk-mq.c
@@ -481,6 +481,9 @@ void blk_mq_free_request(struct request *rq)
wbt_done(q->rq_wb, &rq->issue_stat);
+ if (blk_rq_rl(rq))
+ blk_put_rl(blk_rq_rl(rq));
+
clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
clear_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
if (rq->tag != -1)
@@ -1532,6 +1535,8 @@ static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
{
blk_init_request_from_bio(rq, bio);
+ blk_rq_set_rl(rq, blk_get_rl(rq->q, bio));
+
blk_account_io_start(rq, true);
}
OpenPOWER on IntegriCloud