Re: Hugepages demand paging V1 [4/4]: Numa patch

From: Christoph Lameter
Date: Fri Oct 22 2004 - 14:45:22 EST


On Fri, 22 Oct 2004, William Lee Irwin III wrote:

> On Thu, Oct 21, 2004 at 09:58:54PM -0700, Christoph Lameter wrote:
> > Changelog
> > * NUMA enhancements (rough first implementation)
> > * Do not begin search for huge page memory at the first node
> > but start at the current node and then search previous and
> > the following nodes for memory.
> > Signed-off-by: Christoph Lameter <clameter@xxxxxxx>
>
> dequeue_huge_page() seems to want a nodemask, not a vma, though I
> suppose it's not particularly pressing.

How about this variation following __alloc_page:

Index: linux-2.6.9/mm/hugetlb.c
===================================================================
--- linux-2.6.9.orig/mm/hugetlb.c 2004-10-21 20:39:50.000000000 -0700
+++ linux-2.6.9/mm/hugetlb.c 2004-10-22 10:53:18.000000000 -0700
@@ -32,14 +32,17 @@
{
int nid = numa_node_id();
struct page *page = NULL;
-
- if (list_empty(&hugepage_freelists[nid])) {
- for (nid = 0; nid < MAX_NUMNODES; ++nid)
- if (!list_empty(&hugepage_freelists[nid]))
- break;
+ struct zonelist *zonelist = NODE_DATA(nid)->node_zonelists;
+ struct zone **zones = zonelist->zones;
+ struct zone *z;
+ int i;
+
+ for(i=0; (z = zones[i])!= NULL; i++) {
+ nid = z->zone_pgdat->node_id;
+ if (list_empty(&hugepage_freelists[node_id]))
+ break;
}
- if (nid >= 0 && nid < MAX_NUMNODES &&
- !list_empty(&hugepage_freelists[nid])) {
+ if (z) {
page = list_entry(hugepage_freelists[nid].next,
struct page, lru);
list_del(&page->lru);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/