Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758728AbZFONDs (ORCPT ); Mon, 15 Jun 2009 09:03:48 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754249AbZFONDk (ORCPT ); Mon, 15 Jun 2009 09:03:40 -0400 Received: from mx2.redhat.com ([66.187.237.31]:38762 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752927AbZFONDj (ORCPT ); Mon, 15 Jun 2009 09:03:39 -0400 Date: Mon, 15 Jun 2009 09:00:36 -0400 From: Vivek Goyal To: Gui Jianfeng Cc: linux-kernel@vger.kernel.org, containers@lists.linux-foundation.org, dm-devel@redhat.com, jens.axboe@oracle.com, nauman@google.com, dpshah@google.com, lizf@cn.fujitsu.com, mikew@google.com, fchecconi@gmail.com, paolo.valente@unimore.it, ryov@valinux.co.jp, fernando@oss.ntt.co.jp, s-uchida@ap.jp.nec.com, taka@valinux.co.jp, jmoyer@redhat.com, dhaval@linux.vnet.ibm.com, balbir@linux.vnet.ibm.com, righi.andrea@gmail.com, m-ikeda@ds.jp.nec.com, jbaron@redhat.com, agk@redhat.com, snitzer@redhat.com, akpm@linux-foundation.org, peterz@infradead.org Subject: Re: [PATCH 10/19] io-conroller: Prepare elevator layer for single queue schedulers Message-ID: <20090615130036.GA5717@redhat.com> References: <1244513342-11758-1-git-send-email-vgoyal@redhat.com> <1244513342-11758-11-git-send-email-vgoyal@redhat.com> <4A30BC0F.3000401@cn.fujitsu.com> <20090611144136.GC27892@redhat.com> <4A31A345.50705@cn.fujitsu.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4A31A345.50705@cn.fujitsu.com> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3092 Lines: 83 On Fri, Jun 12, 2009 at 08:37:25AM +0800, Gui Jianfeng wrote: > Vivek Goyal wrote: > > On Thu, Jun 11, 2009 at 04:10:55PM +0800, Gui Jianfeng wrote: > >> Vivek Goyal wrote: > >> ... > >>> > >>> /* > >>> @@ -1296,6 +1302,13 @@ void io_group_chain_link(struct request_queue *q, void *key, > >>> iog = io_cgroup_lookup_group(iocg, key); > >>> io_group_set_parent(prev, iog); > >>> } > >>> + > >>> + if (unlikely(efqd->only_root_group)) > >>> + /* > >>> + * TODO: Take care of force expiry of existing queue before > >>> + * new queue is queued. > >>> + */ > >>> + efqd->only_root_group = 0; > >> Hi Vivek, > >> > >> This flag isn't set back when all child groups go away. Am i missing something? > >> BTW, why not just determine "only root group" by cgroup itself? Although there might be > >> some impact if cgroup is built but no request goes into it. but i think this isn't a big > >> deal. How about the following patch? > >> > > > > Hi Gui, > > > > Determining if there are any children present or not from cgroup sounds like > > a good idea. Just that cost of the operation now has increased. I am not > > sure how significant that is. But for the time being we can stick to your > > implementation. > > I don't introduce any extra locking here, so i guess the cost is very limited. > > > > > One question inline below. > > > >> Signed-off-by: Gui Jianfeng > >> --- > >> block/elevator-fq.c | 21 ++++++++++----------- > >> block/elevator-fq.h | 1 - > >> 2 files changed, 10 insertions(+), 12 deletions(-) > >> > >> diff --git a/block/elevator-fq.c b/block/elevator-fq.c > >> index a516dce..f33155c 100644 > >> --- a/block/elevator-fq.c > >> +++ b/block/elevator-fq.c > >> @@ -76,7 +76,6 @@ void elv_del_ioq_busy(struct elevator_queue *e, struct io_queue *ioq, > >> void elv_activate_ioq(struct io_queue *ioq, int add_front); > >> void elv_deactivate_ioq(struct elv_fq_data *efqd, struct io_queue *ioq, > >> int requeue); > >> - > >> static int bfq_update_next_active(struct io_sched_data *sd) > >> { > >> struct io_group *iog; > >> @@ -1131,6 +1130,14 @@ struct io_cgroup io_root_cgroup = { > >> .ioprio_class = IO_DEFAULT_GRP_CLASS, > >> }; > >> > >> +static int is_only_root_group(void) > >> +{ > >> + if (list_empty(&io_root_cgroup.css.cgroup->children)) > >> + return 1; > >> + > > > > Do we need some kind of locking here to make sure cgroup->children list is not > > being modified? > > Even if the children list is modified, i think this is not a big problem, and just > get a mis-judgement for one time. Anyway, children list changing is rarely happens. > For this corner case, IMHO, there's no need to introduce the cgroup lock, for this > lock costs too much. > Ok. Thanks. I will include these changes in next posting. Vivek -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/