aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTejun Heo2012-03-05 15:15:27 -0600
committerJens Axboe2012-03-06 14:27:24 -0600
commit852c788f8365062c8a383c5a93f7f7289977cb50 (patch)
tree561b69e7f2b6bcc16de165b3b988990de7913615 /block/cfq-iosched.c
parentf6e8d01bee036460e03bd4f6a79d014f98ba712e (diff)
downloadkernel-common-852c788f8365062c8a383c5a93f7f7289977cb50.tar.gz
kernel-common-852c788f8365062c8a383c5a93f7f7289977cb50.tar.xz
kernel-common-852c788f8365062c8a383c5a93f7f7289977cb50.zip
block: implement bio_associate_current()
IO scheduling and cgroup are tied to the issuing task via io_context and cgroup of %current. Unfortunately, there are cases where IOs need to be routed via a different task which makes scheduling and cgroup limit enforcement applied completely incorrectly. For example, all bios delayed by blk-throttle end up being issued by a delayed work item and get assigned the io_context of the worker task which happens to serve the work item and dumped to the default block cgroup. This is double confusing as bios which aren't delayed end up in the correct cgroup and makes using blk-throttle and cfq propio together impossible. Any code which punts IO issuing to another task is affected which is getting more and more common (e.g. btrfs). As both io_context and cgroup are firmly tied to task including userland visible APIs to manipulate them, it makes a lot of sense to match up tasks to bios. This patch implements bio_associate_current() which associates the specified bio with %current. The bio will record the associated ioc and blkcg at that point and block layer will use the recorded ones regardless of which task actually ends up issuing the bio. bio release puts the associated ioc and blkcg. It grabs and remembers ioc and blkcg instead of the task itself because task may already be dead by the time the bio is issued making ioc and blkcg inaccessible and those are all block layer cares about. elevator_set_req_fn() is updated such that the bio elvdata is being allocated for is available to the elevator. This doesn't update block cgroup policies yet. Further patches will implement the support. -v2: #ifdef CONFIG_BLK_CGROUP added around bio->bi_ioc dereference in rq_ioc() to fix build breakage. Signed-off-by: Tejun Heo <tj@kernel.org> Cc: Vivek Goyal <vgoyal@redhat.com> Cc: Kent Overstreet <koverstreet@google.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/cfq-iosched.c')
-rw-r--r--block/cfq-iosched.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c
index 9a4eac490e0..abac87337d7 100644
--- a/block/cfq-iosched.c
+++ b/block/cfq-iosched.c
@@ -3299,7 +3299,8 @@ split_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq)
3299 * Allocate cfq data structures associated with this request. 3299 * Allocate cfq data structures associated with this request.
3300 */ 3300 */
3301static int 3301static int
3302cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask) 3302cfq_set_request(struct request_queue *q, struct request *rq, struct bio *bio,
3303 gfp_t gfp_mask)
3303{ 3304{
3304 struct cfq_data *cfqd = q->elevator->elevator_data; 3305 struct cfq_data *cfqd = q->elevator->elevator_data;
3305 struct cfq_io_cq *cic = icq_to_cic(rq->elv.icq); 3306 struct cfq_io_cq *cic = icq_to_cic(rq->elv.icq);