From: Peter Zijlstra <a.p.zijlstra@chello.nl>
To: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Cc: kamezawa.hiroyu@jp.fujitsu.com, linux-mm@kvack.org,
menage@google.com, containers@lists.linux-foundation.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH][RFC] dirty balancing for cgroups
Date: Thu, 07 Aug 2008 15:36:08 +0200 [thread overview]
Message-ID: <1218116168.8625.38.camel@twins> (raw)
In-Reply-To: <20080806082046.349BE5A5F@siro.lan>
On Wed, 2008-08-06 at 17:20 +0900, YAMAMOTO Takashi wrote:
> hi,
>
> > On Fri, 11 Jul 2008 17:34:46 +0900 (JST)
> > yamamoto@valinux.co.jp (YAMAMOTO Takashi) wrote:
> >
> > > hi,
> > >
> > > > > my patch penalizes heavy-writer cgroups as task_dirty_limit does
> > > > > for heavy-writer tasks. i don't think that it's necessary to be
> > > > > tied to the memory subsystem because i merely want to group writers.
> > > > >
> > > > Hmm, maybe what I need is different from this ;)
> > > > Does not seem to be a help for memory reclaim under memcg.
> > >
> > > to implement what you need, i think that we need to keep track of
> > > the numbers of dirty-pages in each memory cgroups as a first step.
> > > do you agree?
> > >
> > yes, I think so, now.
> >
> > may be not difficult but will add extra overhead ;( Sigh..
>
> the following is a patch to add the overhead. :)
> any comments?
>
> YAMAMOTO Takashi
It _might_ (depends on the uglyness of the result) make sense to try and
stick the mem_cgroup_*_page_dirty() stuff into the *PageDirty() macros.
> @@ -485,7 +502,10 @@ unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
> if (PageUnevictable(page) ||
> (PageActive(page) && !active) ||
> (!PageActive(page) && active)) {
> - __mem_cgroup_move_lists(pc, page_lru(page));
> + if (try_lock_page_cgroup(page)) {
> + __mem_cgroup_move_lists(pc, page_lru(page));
> + unlock_page_cgroup(page);
> + }
> continue;
> }
This chunk seems unrelated and lost....
> @@ -772,6 +792,38 @@ void mem_cgroup_end_migration(struct page *newpage)
> mem_cgroup_uncharge_page(newpage);
> }
>
> +void mem_cgroup_set_page_dirty(struct page *pg)
> +{
> + struct page_cgroup *pc;
> +
> + lock_page_cgroup(pg);
> + pc = page_get_page_cgroup(pg);
> + if (pc != NULL && (pc->flags & PAGE_CGROUP_FLAG_DIRTY) == 0) {
> + struct mem_cgroup *mem = pc->mem_cgroup;
> + struct mem_cgroup_stat *stat = &mem->stat;
> +
> + pc->flags |= PAGE_CGROUP_FLAG_DIRTY;
> + __mem_cgroup_stat_add(stat, MEM_CGROUP_STAT_DIRTY, 1);
> + }
> + unlock_page_cgroup(pg);
> +}
> +
> +void mem_cgroup_clear_page_dirty(struct page *pg)
> +{
> + struct page_cgroup *pc;
> +
> + lock_page_cgroup(pg);
> + pc = page_get_page_cgroup(pg);
> + if (pc != NULL && (pc->flags & PAGE_CGROUP_FLAG_DIRTY) != 0) {
> + struct mem_cgroup *mem = pc->mem_cgroup;
> + struct mem_cgroup_stat *stat = &mem->stat;
> +
> + pc->flags &= ~PAGE_CGROUP_FLAG_DIRTY;
> + __mem_cgroup_stat_add(stat, MEM_CGROUP_STAT_DIRTY, -1);
> + }
> + unlock_page_cgroup(pg);
> +}
> +
> /*
> * A call to try to shrink memory usage under specified resource controller.
> * This is typically used for page reclaiming for shmem for reducing side
I presonally dislike the != 0, == 0 comparisons for bitmask operations,
they seem to make it harder to read somewhow. I prefer to write !(flags
& mask) and (flags & mask), instead.
I guess taste differs,...
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2008-08-07 13:36 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20080711085449.ba7d14dd.kamezawa.hiroyu@jp.fujitsu.com>
2008-07-11 4:06 ` YAMAMOTO Takashi
2008-07-11 5:15 ` KAMEZAWA Hiroyuki
2008-07-11 5:59 ` YAMAMOTO Takashi
2008-07-11 7:13 ` KAMEZAWA Hiroyuki
2008-07-11 8:34 ` YAMAMOTO Takashi
2008-07-11 8:52 ` KAMEZAWA Hiroyuki
2008-08-06 8:20 ` YAMAMOTO Takashi
2008-08-06 8:53 ` KAMEZAWA Hiroyuki
2008-08-06 9:10 ` YAMAMOTO Takashi
2008-08-07 13:36 ` Peter Zijlstra [this message]
2008-08-13 7:15 ` YAMAMOTO Takashi
2008-08-18 7:58 ` KAMEZAWA Hiroyuki
2008-07-14 13:49 ` Peter Zijlstra
2008-07-17 1:43 ` YAMAMOTO Takashi
2008-08-14 8:38 ` Paul Menage
2008-07-14 14:38 ` kamezawa.hiroyu
[not found] <20080709060034.0CB2D5A29@siro.lan>
2008-07-14 13:37 ` Peter Zijlstra
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1218116168.8625.38.camel@twins \
--to=a.p.zijlstra@chello.nl \
--cc=containers@lists.linux-foundation.org \
--cc=kamezawa.hiroyu@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=menage@google.com \
--cc=yamamoto@valinux.co.jp \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox