From: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
To: Johannes Weiner <hannes@cmpxchg.org>
Cc: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>,
LKML <linux-kernel@vger.kernel.org>,
linux-mm <linux-mm@kvack.org>,
Andrew Morton <akpm@linux-foundation.org>,
Balbir Singh <balbir@linux.vnet.ibm.com>,
KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Subject: Re: [PATCH for mmotm 0414] vmscan,memcg: reintroduce sc->may_swap
Date: Sun, 19 Apr 2009 17:59:54 +0900 [thread overview]
Message-ID: <2f11576a0904190159t2898edfal858ba12d3460c4e5@mail.gmail.com> (raw)
In-Reply-To: <20090418184337.GA5556@cmpxchg.org>
Hi
Hi
>> @@ -1724,6 +1728,7 @@ unsigned long try_to_free_mem_cgroup_pag
>> struct scan_control sc = {
>> .may_writepage = !laptop_mode,
>> .may_unmap = 1,
>> + .may_swap = 1,
>> .swap_cluster_max = SWAP_CLUSTER_MAX,
>> .swappiness = swappiness,
>> .order = 0,
>> @@ -1734,7 +1739,7 @@ unsigned long try_to_free_mem_cgroup_pag
>> struct zonelist *zonelist;
>>
>> if (noswap)
>> - sc.may_unmap = 0;
>> + sc.may_swap = 0;
>
> Can this be directly initialized?
>
> struct scan_control sc = {
> ...
> .may_swap = !noswap,
> ...
> };
your proposal is better coding style. but I also prefer condig style
consistency.
I think we should change may_unmap and may_swap at the same time.
Thus, I'd like to does it by another patch.
>> @@ -2120,6 +2126,7 @@ unsigned long shrink_all_memory(unsigned
>> struct scan_control sc = {
>> .gfp_mask = GFP_KERNEL,
>> .may_unmap = 0,
>> + .may_swap = 1,
>
> shrink_all_memory() is not a user of shrink_zone() -> get_scan_ratio()
> and therefor not affected by this flag. I think it's better not to
> set it here (just like sc->swappiness).
Will fix. thanks.
>> .may_writepage = 1,
>> .isolate_pages = isolate_pages_global,
>> };
>> @@ -2304,6 +2311,7 @@ static int __zone_reclaim(struct zone *z
>> struct scan_control sc = {
>> .may_writepage = !!(zone_reclaim_mode & RECLAIM_WRITE),
>> .may_unmap = !!(zone_reclaim_mode & RECLAIM_SWAP),
>> + .may_swap = 1,
>
> Shouldn't this be set to !!(zone_reclaim_mode & RECLAIM_SWAP) as well?
>
> With set to 1, zone_reclaim() will also reclaim unmapped swap cache
> pages (without swapping) and it might be desirable to do that.
In general, you are right.
but another patch is better. this patch should only change memcg behavior.
I plan to change this. I'm making some zone reclaim test case, after it,
I can post the patch.
> But
> then may_swap is a confusing name. may_anon? may_scan_anon?
> scan_anon?
Why?
may_swap = 0 mean no swap-out directly. not anon only.
it's because shmem page stay in LRU_ANON.
--
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:[~2009-04-19 8:58 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-04-18 6:26 [PATCH for mmotm 0414] vmscan,memcg: reintroduce sc->may_swap KOSAKI Motohiro
2009-04-18 18:43 ` Johannes Weiner
2009-04-19 8:59 ` KOSAKI Motohiro [this message]
2009-04-19 11:34 ` KOSAKI Motohiro
2009-04-19 12:42 ` [PATCH v3] " KOSAKI Motohiro
2009-04-20 6:41 ` Johannes Weiner
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=2f11576a0904190159t2898edfal858ba12d3460c4e5@mail.gmail.com \
--to=kosaki.motohiro@jp.fujitsu.com \
--cc=akpm@linux-foundation.org \
--cc=balbir@linux.vnet.ibm.com \
--cc=hannes@cmpxchg.org \
--cc=kamezawa.hiroyu@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--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;
as well as URLs for NNTP newsgroup(s).