[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[dm-devel] Re: [PATCH] io-controller: Add io group reference handling for request
- From: Gui Jianfeng <guijianfeng cn fujitsu com>
- To: Vivek Goyal <vgoyal redhat com>
- Cc: dhaval linux vnet ibm com, snitzer redhat com, dm-devel redhat com, dpshah google com, jens axboe oracle com, agk redhat com, balbir linux vnet ibm com, paolo valente unimore it, fernando oss ntt co jp, mikew google com, jmoyer redhat com, Nauman Rafique <nauman google com>, m-ikeda ds jp nec com, lizf cn fujitsu com, fchecconi gmail com, s-uchida ap jp nec com, containers lists linux-foundation org, linux-kernel vger kernel org, akpm linux-foundation org, righi andrea gmail com
- Subject: [dm-devel] Re: [PATCH] io-controller: Add io group reference handling for request
- Date: Fri, 15 May 2009 13:15:24 +0800
Vivek Goyal wrote:
...
> }
> @@ -1462,20 +1462,27 @@ struct io_cgroup *get_iocg_from_bio(stru
> /*
> * Find the io group bio belongs to.
> * If "create" is set, io group is created if it is not already present.
> + * If "curr" is set, io group is information is searched for current
> + * task and not with the help of bio.
> + *
> + * FIXME: Can we assume that if bio is NULL then lookup group for current
> + * task and not create extra function parameter ?
> *
> - * Note: There is a narrow window of race where a group is being freed
> - * by cgroup deletion path and some rq has slipped through in this group.
> - * Fix it.
> */
> -struct io_group *io_get_io_group_bio(struct request_queue *q, struct bio *bio,
> - int create)
> +struct io_group *io_get_io_group(struct request_queue *q, struct bio *bio,
> + int create, int curr)
Hi Vivek,
IIUC we can get rid of curr, and just determine iog from bio. If bio is not NULL,
get iog from bio, otherwise get it from current task.
> {
> struct cgroup *cgroup;
> struct io_group *iog;
> struct elv_fq_data *efqd = &q->elevator->efqd;
>
> rcu_read_lock();
> - cgroup = get_cgroup_from_bio(bio);
> +
> + if (curr)
> + cgroup = task_cgroup(current, io_subsys_id);
> + else
> + cgroup = get_cgroup_from_bio(bio);
> +
> if (!cgroup) {
> if (create)
> iog = efqd->root_group;
> @@ -1500,7 +1507,7 @@ out:
> rcu_read_unlock();
> return iog;
> }
--
Regards
Gui Jianfeng
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]