From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
To: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Balbir Singh <balbir@linux.vnet.ibm.com>,
linux-mm <linux-mm@kvack.org>
Subject: Re: [cleanup][PATCH mmotm] memcg: cleanup cache_charge
Date: Mon, 23 Mar 2009 14:24:14 +0900 [thread overview]
Message-ID: <20090323142414.770d13bb.kamezawa.hiroyu@jp.fujitsu.com> (raw)
In-Reply-To: <20090323141226.68be59ec.nishimura@mxp.nes.nec.co.jp>
On Mon, 23 Mar 2009 14:12:26 +0900
Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp> wrote:
> From: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>
>
> Current mem_cgroup_cache_charge is a bit complicated especially
> in the case of shmem's swap-in.
>
> This patch cleans it up by using try_charge_swapin and commit_charge_swapin.
>
> Signed-off-by: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>
Seems nice :) and sorry for my dirty codes :(
Acked-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
> ---
> mm/memcontrol.c | 60 +++++++++++++++++++++---------------------------------
> 1 files changed, 23 insertions(+), 37 deletions(-)
>
> diff --git a/mm/memcontrol.c b/mm/memcontrol.c
> index 55dea59..2fc6d6c 100644
> --- a/mm/memcontrol.c
> +++ b/mm/memcontrol.c
> @@ -1238,6 +1238,10 @@ int mem_cgroup_newpage_charge(struct page *page,
> MEM_CGROUP_CHARGE_TYPE_MAPPED, NULL);
> }
>
> +static void
> +__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr,
> + enum charge_type ctype);
> +
> int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
> gfp_t gfp_mask)
> {
> @@ -1274,16 +1278,6 @@ int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
> unlock_page_cgroup(pc);
> }
>
> - if (do_swap_account && PageSwapCache(page)) {
> - mem = try_get_mem_cgroup_from_swapcache(page);
> - if (mem)
> - mm = NULL;
> - else
> - mem = NULL;
> - /* SwapCache may be still linked to LRU now. */
> - mem_cgroup_lru_del_before_commit_swapcache(page);
> - }
> -
> if (unlikely(!mm && !mem))
> mm = &init_mm;
>
> @@ -1291,32 +1285,16 @@ int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
> return mem_cgroup_charge_common(page, mm, gfp_mask,
> MEM_CGROUP_CHARGE_TYPE_CACHE, NULL);
>
> - ret = mem_cgroup_charge_common(page, mm, gfp_mask,
> - MEM_CGROUP_CHARGE_TYPE_SHMEM, mem);
> - if (mem)
> - css_put(&mem->css);
> - if (PageSwapCache(page))
> - mem_cgroup_lru_add_after_commit_swapcache(page);
> + /* shmem */
> + if (PageSwapCache(page)) {
> + ret = mem_cgroup_try_charge_swapin(mm, page, gfp_mask, &mem);
> + if (!ret)
> + __mem_cgroup_commit_charge_swapin(page, mem,
> + MEM_CGROUP_CHARGE_TYPE_SHMEM);
> + } else
> + ret = mem_cgroup_charge_common(page, mm, gfp_mask,
> + MEM_CGROUP_CHARGE_TYPE_SHMEM, mem);
>
> - if (do_swap_account && !ret && PageSwapCache(page)) {
> - swp_entry_t ent = {.val = page_private(page)};
> - unsigned short id;
> - /* avoid double counting */
> - id = swap_cgroup_record(ent, 0);
> - rcu_read_lock();
> - mem = mem_cgroup_lookup(id);
> - if (mem) {
> - /*
> - * We did swap-in. Then, this entry is doubly counted
> - * both in mem and memsw. We uncharge it, here.
> - * Recorded ID can be obsolete. We avoid calling
> - * css_tryget()
> - */
> - res_counter_uncharge(&mem->memsw, PAGE_SIZE);
> - mem_cgroup_put(mem);
> - }
> - rcu_read_unlock();
> - }
> return ret;
> }
>
> @@ -1359,7 +1337,9 @@ charge_cur_mm:
> return __mem_cgroup_try_charge(mm, mask, ptr, true);
> }
>
> -void mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr)
> +static void
> +__mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr,
> + enum charge_type ctype)
> {
> struct page_cgroup *pc;
>
> @@ -1369,7 +1349,7 @@ void mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr)
> return;
> pc = lookup_page_cgroup(page);
> mem_cgroup_lru_del_before_commit_swapcache(page);
> - __mem_cgroup_commit_charge(ptr, pc, MEM_CGROUP_CHARGE_TYPE_MAPPED);
> + __mem_cgroup_commit_charge(ptr, pc, ctype);
> mem_cgroup_lru_add_after_commit_swapcache(page);
> /*
> * Now swap is on-memory. This means this page may be
> @@ -1400,6 +1380,12 @@ void mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr)
>
> }
>
> +void mem_cgroup_commit_charge_swapin(struct page *page, struct mem_cgroup *ptr)
> +{
> + __mem_cgroup_commit_charge_swapin(page, ptr,
> + MEM_CGROUP_CHARGE_TYPE_MAPPED);
> +}
> +
> void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *mem)
> {
> if (mem_cgroup_disabled())
>
>
--
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>
prev parent reply other threads:[~2009-03-23 4:30 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-23 5:12 Daisuke Nishimura
2009-03-23 5:24 ` KAMEZAWA Hiroyuki [this message]
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=20090323142414.770d13bb.kamezawa.hiroyu@jp.fujitsu.com \
--to=kamezawa.hiroyu@jp.fujitsu.com \
--cc=akpm@linux-foundation.org \
--cc=balbir@linux.vnet.ibm.com \
--cc=linux-mm@kvack.org \
--cc=nishimura@mxp.nes.nec.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