From: Ray Bryant <raybry@austin.rr.com>
To: Andi Kleen <ak@suse.de>
Cc: William Lee Irwin III <wli@holomorphy.com>,
Andrew Morton <akpm@osdl.org>, linux-mm <linux-mm@kvack.org>,
Jesse Barnes <jbarnes@sgi.com>, Dan Higgins <djh@sgi.com>,
lse-tech <lse-tech@lists.sourceforge.net>,
Brent Casavant <bcasavan@sgi.com>,
Ray Bryant <raybry@austin.rr.com>,
"Martin J. Bligh" <mbligh@aracnet.com>,
linux-kernel <linux-kernel@vger.kernel.org>,
Nick Piggin <piggin@cyberone.com.au>, Ray Bryant <raybry@sgi.com>,
Paul Jackson <pj@sgi.com>, Dave Hansen <haveblue@us.ibm.com>
Subject: [PATCH 2/2] mm: eliminate node 0 bias in MPOL_INTERLEAVE
Date: Wed, 22 Sep 2004 23:32:45 -0500 (CDT) [thread overview]
Message-ID: <20040923043256.2132.93167.33080@raybryhome.rayhome.net> (raw)
In-Reply-To: <20040923043236.2132.2385.23158@raybryhome.rayhome.net>
This is a new patch in this series (it does not in any way replaced the
MPOL_ROUDROBIN patch, which has been dropped).
This patches fixes the following problems with MPOL_INTERLEAVE: In
the existing implementation, every time a new process is created and it
is using MPOL_INTERLEAVE, the interleave "rotator" (current->il_next)
is set to zero. This biases storage allocation toward lower numberd
nodes (this effect is more apparent on systems with hundreds of nodes.)
This patch fixes this problem by setting il_next to pid % MAX_NUMNODES.
Similarly, in the existing implementation of MPOL_INTERLEAVE, each time
a new policy of type MPOL_INTERLEAVE is created, current->il_next is set
to the lowest numbered node that is in the policy mask policy->v.nodes.
This biass storage allocation toward the lowest numbered node in that
mask. This is again fixed by setting il_next to pid % MAX_NUMNODES.
Each of these cases potentially breaks the (assumed) invariant of
interleave_nodes(), that is that "bit il_next of the nodemask is set"
(because the value of il_next on entry to interleave_nodes() is returned
as the node to be used for the allocation, and we calculate the next
il_next, before returning.)
Solving this requires adding the small bit of code in interleave_nodes()
that checks the invariant and if it is not true, updates the return
value to be the next bit in the nodemask that is set.
Signed-off-by: Ray Bryant <raybry@sgi.com>
Index: linux-2.6.9-rc2-mm1/mm/mempolicy.c
===================================================================
--- linux-2.6.9-rc2-mm1.orig/mm/mempolicy.c 2004-09-21 16:49:00.000000000 -0700
+++ linux-2.6.9-rc2-mm1/mm/mempolicy.c 2004-09-21 17:44:58.000000000 -0700
@@ -435,7 +435,7 @@ asmlinkage long sys_set_mempolicy(int re
default_policy[policy] = new;
}
if (new && new->policy == MPOL_INTERLEAVE)
- current->il_next = find_first_bit(new->v.nodes, MAX_NUMNODES);
+ current->il_next = current->pid % MAX_NUMNODES;
return 0;
}
@@ -714,6 +714,11 @@ static unsigned interleave_nodes(struct
nid = me->il_next;
BUG_ON(nid >= MAX_NUMNODES);
+ if (!test_bit(nid, policy->v.nodes)) {
+ nid = find_next_bit(policy->v.nodes, MAX_NUMNODES, 1+nid);
+ if (nid >= MAX_NUMNODES)
+ nid = find_first_bit(policy->v.nodes, MAX_NUMNODES);
+ }
next = find_next_bit(policy->v.nodes, MAX_NUMNODES, 1+nid);
if (next >= MAX_NUMNODES)
next = find_first_bit(policy->v.nodes, MAX_NUMNODES);
Index: linux-2.6.9-rc2-mm1/kernel/fork.c
===================================================================
--- linux-2.6.9-rc2-mm1.orig/kernel/fork.c 2004-09-21 16:24:49.000000000 -0700
+++ linux-2.6.9-rc2-mm1/kernel/fork.c 2004-09-21 17:41:12.000000000 -0700
@@ -873,6 +873,8 @@ static task_t *copy_process(unsigned lon
goto bad_fork_cleanup;
}
}
+ /* randomize placement of first page across nodes */
+ p->il_next = p->pid % MAX_NUMNODES;
#endif
p->tgid = p->pid;
--
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:"aart@kvack.org"> aart@kvack.org </a>
next prev parent reply other threads:[~2004-09-23 4:32 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-09-23 4:32 [PATCH 0/2] mm: memory policy for page cache allocation Ray Bryant
2004-09-23 4:32 ` [PATCH 1/2] mm: page cache mempolicy " Ray Bryant
2004-09-23 9:24 ` Andi Kleen
2004-09-24 4:12 ` Ray Bryant
2004-09-23 4:32 ` Ray Bryant [this message]
2004-09-23 9:29 ` [PATCH 2/2] mm: eliminate node 0 bias in MPOL_INTERLEAVE Andi Kleen
2004-09-24 6:33 ` Ray Bryant
2004-09-24 6:43 ` Ray Bryant
2004-09-23 9:09 ` [PATCH 0/2] mm: memory policy for page cache allocation Andi Kleen
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=20040923043256.2132.93167.33080@raybryhome.rayhome.net \
--to=raybry@austin.rr.com \
--cc=ak@suse.de \
--cc=akpm@osdl.org \
--cc=bcasavan@sgi.com \
--cc=djh@sgi.com \
--cc=haveblue@us.ibm.com \
--cc=jbarnes@sgi.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=lse-tech@lists.sourceforge.net \
--cc=mbligh@aracnet.com \
--cc=piggin@cyberone.com.au \
--cc=pj@sgi.com \
--cc=raybry@sgi.com \
--cc=wli@holomorphy.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