login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2010
»
November
»
29
Re: [RFC] [PATCH 4/8] cfq-iosched: Get rid of st->active
view
thread
Previous message: [thread] [
date
] [
author
]
Next message: [thread] [
date
] [
author
]
[view in full thread]
From: Gui Jianfeng
Subject:
Re: [RFC] [PATCH 4/8] cfq-iosched: Get rid of st->active
Date: Sunday, November 28, 2010 - 7:34 pm
Vivek Goyal wrote:
quoted text
> On Sun, Nov 14, 2010 at 04:25:04PM +0800, Gui Jianfeng wrote: >> When a cfq group is running, it won't be dequeued from service tree, so >> there's no need to store the active one in st->active. Just gid rid of it. >> >> Signed-off-by: Gui Jianfeng <guijianfeng@cn.fujitsu.com> > > Hmm..., once I was also wondering if ->active pointer is superflous. Looks > like it is and st->left will always represent the element being served. I > think this is more of a cleanup patch and can either be first patch in the > series or you can post it independently.
Ok. Gui
quoted text
> > Vivek > >> --- >> block/cfq-iosched.c | 15 +-------------- >> 1 files changed, 1 insertions(+), 14 deletions(-) >> >> diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c >> index ef88931..ad577b5 100644 >> --- a/block/cfq-iosched.c >> +++ b/block/cfq-iosched.c >> @@ -88,7 +88,6 @@ struct cfq_rb_root { >> unsigned count; >> unsigned total_weight; >> u64 min_vdisktime; >> - struct rb_node *active; >> }; >> #define CFQ_RB_ROOT (struct cfq_rb_root) { .rb = RB_ROOT, .left = NULL, \ >> .count = 0, .min_vdisktime = 0, } >> @@ -599,11 +598,6 @@ static void update_min_vdisktime(struct cfq_rb_root *st) >> u64 vdisktime = st->min_vdisktime; >> struct io_sched_entity *entity; >> >> - if (st->active) { >> - entity = rb_entry_entity(st->active); >> - vdisktime = entity->vdisktime; >> - } >> - >> if (st->left) { >> entity = rb_entry_entity(st->left); >> vdisktime = min_vdisktime(vdisktime, entity->vdisktime); >> @@ -925,9 +919,6 @@ cfq_group_service_tree_del(struct cfq_data *cfqd, struct cfq_group *cfqg) >> struct cfq_rb_root *st = &cfqd->grp_service_tree; >> struct io_sched_entity *group_entity = &cfqg->group_entity; >> >> - if (st->active == &group_entity->rb_node) >> - st->active = NULL; >> - >> BUG_ON(cfqg->nr_cfqq < 1); >> cfqg->nr_cfqq--; >> >> @@ -1130,7 +1121,7 @@ static void cfq_put_cfqg(struct cfq_group *cfqg) >> if (!atomic_dec_and_test(&cfqg->ref)) >> return; >> for_each_cfqg_st(cfqg, i, j, st) >> - BUG_ON(!RB_EMPTY_ROOT(&st->rb) || st->active != NULL); >> + BUG_ON(!RB_EMPTY_ROOT(&st->rb)); >> kfree(cfqg); >> } >> >> @@ -1773,9 +1764,6 @@ __cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq, >> if (cfqq == cfqd->active_queue) >> cfqd->active_queue = NULL; >> >> - if (&cfqq->cfqg->group_entity.rb_node == cfqd->grp_service_tree.active) >> - cfqd->grp_service_tree.active = NULL; >> - >> if (cfqd->active_cic) { >> put_io_context(cfqd->active_cic->ioc); >> cfqd->active_cic = NULL; >> @@ -2305,7 +2293,6 @@ static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd) >> group_entity = cfq_rb_first_entity(st); >> cfqg = cfqg_of_entity(group_entity); >> BUG_ON(!cfqg); >> - st->active = &group_entity->rb_node; >> update_min_vdisktime(st); >> return cfqg; >> } >> -- >> 1.6.5.2 >> >> >
--
unsubscribe notice
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/
Previous message: [thread] [
date
] [
author
]
Next message: [thread] [
date
] [
author
]
Messages in current thread:
Re: [RFC] [PATCH 4/8] cfq-iosched: Get rid of st->active
, Gui Jianfeng
, (Sun Nov 28, 7:34 pm)
Navigation
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Greg KH
Og dreams of kernels
Jens Axboe
[PATCH 31/33] Fusion: sg chaining support
Arnd Bergmann
Re: finding your own dead "CONFIG_" variables
Mark Brown
[PATCH 2/2] Subject: natsemi: Allow users to disable workaround for DspCfg reset
Tony Breeds
[LGUEST] Look in object dir for .config
git
:
Brian Downing
Re: Git in a Nutshell guide
John Benes
Re: master has some toys
Matthias Lederhofer
[PATCH 4/7] introduce GIT_WORK_TREE to specify the work tree
Alexander Sulfrian
[RFC/PATCH] RE: git calls SSH_ASKPASS even if DISPLAY is not set
Junio C Hamano
Re: Rss produced by git is not valid xml?
git-commits-head
:
Linux Kernel Mailing List
iSeries: fix section mismatch in iseries_veth
Linux Kernel Mailing List
ixbge: remove TX lock and redo TX accounting.
Linux Kernel Mailing List
ixgbe: fix several counter register errata
Linux Kernel Mailing List
b43: fix build with CONFIG_SSB_PCIHOST=n
Linux Kernel Mailing List<