From: Andi Kleen <ak@suse.de>
To: Ray Bryant <raybry@austin.rr.com>
Cc: Andi Kleen <ak@suse.de>,
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>,
"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: Re: [PATCH 2/2] mm: eliminate node 0 bias in MPOL_INTERLEAVE
Date: Thu, 23 Sep 2004 11:29:54 +0200 [thread overview]
Message-ID: <20040923092954.GA4836@wotan.suse.de> (raw)
In-Reply-To: <20040923043256.2132.93167.33080@raybryhome.rayhome.net>
On Wed, Sep 22, 2004 at 11:32:45PM -0500, Ray Bryant wrote:
> Each of these cases potentially breaks the (assumed) invariant of
I would prefer to keep the invariant.
> +++ 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;
Please do the find_next/find_first bit here in the slow path.
Another useful change may be to check if il_next points to a node
that is in the current interleaving mask. If yes don't change it.
This way skew when interleaving policy is set often could be avoided.
> 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);
> + }
And remove it here.
> 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;
Same here.
-Andi
--
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 9:29 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 ` [PATCH 2/2] mm: eliminate node 0 bias in MPOL_INTERLEAVE Ray Bryant
2004-09-23 9:29 ` Andi Kleen [this message]
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=20040923092954.GA4836@wotan.suse.de \
--to=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@austin.rr.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