LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
To: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org,
akpm@linux-foundation.org, clameter@sgi.com
Subject: Re: [PATCH] change global zonelist order v4 [2/2] auto configuration
Date: Mon, 30 Apr 2007 12:26:57 -0400 [thread overview]
Message-ID: <1177950417.5623.44.camel@localhost> (raw)
In-Reply-To: <20070427151722.dfd142b1.kamezawa.hiroyu@jp.fujitsu.com>
On Fri, 2007-04-27 at 15:17 +0900, KAMEZAWA Hiroyuki wrote:
> Add auto zone ordering configuration.
>
> This function will select ZONE_ORDER_NODE when
>
> - There are only ZONE_DMA or ZONE_DMA32.
> (or) size of (ZONE_DMA/DMA32) > (System Total Memory)/2
> (or) Assume Node(A)
> * Node (A)'s total memory > System Total Memory/num_of_node+1
> (and) Node (A)'s ZONE_DMA/DMA32 occupies 60% of Node(A)'s memory.
>
> otherwise, ZONE_ORDER_ZONE is selected.
>
> Note: a user can specifiy this ordering from boot option.
specify
>
> Signed-Off-By: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Minor editorial [spelling, ...] comments.
Acked-by: Lee Schermerhorn <lee.schermerhorn@hp.com>
>
> ---
> mm/page_alloc.c | 44 +++++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 43 insertions(+), 1 deletion(-)
>
> Index: linux-2.6.21-rc7-mm2/mm/page_alloc.c
> ===================================================================
> --- linux-2.6.21-rc7-mm2.orig/mm/page_alloc.c 2007-04-27 15:39:49.000000000 +0900
> +++ linux-2.6.21-rc7-mm2/mm/page_alloc.c 2007-04-27 15:55:51.000000000 +0900
> @@ -2211,8 +2211,50 @@
>
> static int estimate_zonelist_order(void)
> {
> - /* dummy, just select node order. */
> - return ZONELIST_ORDER_NODE;
> + int nid, zone_type;
> + unsigned long low_kmem_size,total_size;
> + struct zone *z;
> + int average_size;
> + /* ZONE_DMA and ZONE_DMA32 can be very small area in the sytem.
> + If they are really small and used heavily,
> + the system can fall into OOM very easily.
> + This function detect ZONE_DMA/DMA32 size and confgigure
detects configures
> + zone ordering */
> + /* Is there ZONE_NORMAL ? (ex. ppc has only DMA zone..) */
> + low_kmem_size = 0;
> + total_size = 0;
> + for_each_online_node(nid) {
> + for (zone_type = 0; zone_type < MAX_NR_ZONES; zone_type++) {
> + z = &NODE_DATA(nid)->node_zones[zone_type];
> + if (populated_zone(z)) {
> + if (zone_type < ZONE_NORMAL)
> + low_kmem_size += z->present_pages;
> + total_size += z->present_pages;
> + }
> + }
> + }
> + if (!low_kmem_size || /* there is no DMA area. */
> + !low_kmem_size > total_size/2) /* DMA/DMA32 is big. */
> + return ZONELIST_ORDER_NODE;
> + /* look into each node's config. where all processes starts... */
> + /* average size..a bit smaller than real average size */
> + average_size = total_size / (num_online_nodes() + 1);
> + for_each_online_node(nid) {
> + low_kmem_size = 0;
> + total_size = 0;
> + for (zone_type = 0; zone_type < MAX_NR_ZONES; zone_type++) {
> + z = &NODE_DATA(nid)->node_zones[zone_type];
> + if (populated_zone(z)) {
> + if (zone_type < ZONE_NORMAL)
> + low_kmem_size += z->present_pages;
> + total_size += z->present_pages;
> + }
> + }
> + if (total_size > average_size && /* ignore unbalanced node */
> + low_kmem_size > total_size * 60/100)
> + return ZONELIST_ORDER_NODE;
> + }
> + return ZONELIST_ORDER_ZONE;
> }
>
>
>
next prev parent reply other threads:[~2007-04-30 16:41 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-04-27 5:45 [PATCH] change global zonelist order v4 [0/2] KAMEZAWA Hiroyuki
2007-04-27 6:04 ` [PATCH] change global zonelist order v4 [1/2] change zonelist ordering KAMEZAWA Hiroyuki
2007-04-30 16:12 ` Lee Schermerhorn
2007-04-27 6:17 ` [PATCH] change global zonelist order v4 [2/2] auto configuration KAMEZAWA Hiroyuki
2007-04-30 16:26 ` Lee Schermerhorn [this message]
2007-05-04 5:47 ` [PATCH] change global zonelist order v4 [0/2] Andrew Morton
2007-05-04 15:26 ` Jesse Barnes
2007-05-04 16:18 ` Christoph Lameter
2007-05-04 17:24 ` Lee Schermerhorn
2007-05-04 17:28 ` Christoph Lameter
2007-05-04 17:36 ` Jesse Barnes
2007-05-04 18:03 ` Christoph Lameter
2007-05-04 17:12 ` Lee Schermerhorn
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=1177950417.5623.44.camel@localhost \
--to=lee.schermerhorn@hp.com \
--cc=akpm@linux-foundation.org \
--cc=clameter@sgi.com \
--cc=kamezawa.hiroyu@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--subject='Re: [PATCH] change global zonelist order v4 [2/2] auto configuration' \
/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
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).