From: Nick Piggin <nickpiggin@yahoo.com.au>
To: Jack Steiner <steiner@sgi.com>
Cc: Linux Memory Management <linux-mm@kvack.org>
Subject: [patch 4/4] pcp: only local pagesets
Date: Sat, 09 Apr 2005 23:25:05 +1000 [thread overview]
Message-ID: <4257D7B1.2000303@yahoo.com.au> (raw)
In-Reply-To: <4257D78F.7020609@yahoo.com.au>
[-- Attachment #1: Type: text/plain, Size: 32 bytes --]
4/4
--
SUSE Labs, Novell Inc.
[-- Attachment #2: pcp-only-local-pagesets.patch --]
[-- Type: text/plain, Size: 1171 bytes --]
Index: linux-2.6/mm/page_alloc.c
===================================================================
--- linux-2.6.orig/mm/page_alloc.c 2005-04-09 22:45:07.000000000 +1000
+++ linux-2.6/mm/page_alloc.c 2005-04-09 23:13:53.000000000 +1000
@@ -1626,14 +1626,24 @@ void __init build_percpu_pagelists(void)
init_percpu_pageset(&zone->pageset, batch);
for (cpu = 0; cpu < NR_CPUS; cpu++) {
struct zone_pagesets *zp;
- struct per_cpu_pageset *pageset;
+ struct per_cpu_pageset *pageset = NULL;
zp = cpu_zone_pagesets(cpu);
- pageset = alloc_bootmem_node(pgdat, sizeof(*pageset));
- init_percpu_pageset(pageset, batch);
+
+ /*
+ * XXX: this test could be something like
+ * if (node_distance <= blah)
+ * which would allow pagesets on close
+ * remote nodes as well as the local node.
+ */
+ if (cpu_to_node(cpu) == nid) {
+ pageset = alloc_bootmem_node(pgdat,
+ sizeof(*pageset));
+ init_percpu_pageset(pageset, batch);
+ }
zp->p[NODEZONE(nid, j)] = pageset;
-
}
+
printk(KERN_DEBUG " %s zone: %lu pages, LIFO batch:%lu\n",
zone_names[j], zone->present_pages, batch);
}
next prev parent reply other threads:[~2005-04-09 13:25 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-04-09 13:23 [patch 1/4] pcp: zonequeues Nick Piggin
2005-04-09 13:24 ` [patch 2/4] pcp: dynamic lists Nick Piggin
2005-04-09 13:24 ` [patch 3/4] pcp: NULL pagesets Nick Piggin
2005-04-09 13:25 ` Nick Piggin [this message]
2005-04-09 13:28 ` [patch 1/4] pcp: zonequeues Nick Piggin
2005-04-09 15:25 ` Nick Piggin
2005-04-12 16:15 ` Jack Steiner
2005-04-13 1:34 ` Nick Piggin
2005-04-12 19:02 ` Christoph Lameter
2005-04-13 1:40 ` Nick Piggin
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=4257D7B1.2000303@yahoo.com.au \
--to=nickpiggin@yahoo.com.au \
--cc=linux-mm@kvack.org \
--cc=steiner@sgi.com \
/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