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>,
Dave Hansen <haveblue@us.ibm.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>,
Ray Bryant <raybry@sgi.com>, Paul Jackson <pj@sgi.com>,
Nick Piggin <piggin@cyberone.com.au>
Subject: Re: [PATCH 1/2] mm: page cache mempolicy for page cache allocation
Date: Thu, 23 Sep 2004 11:24:16 +0200 [thread overview]
Message-ID: <20040923092416.GC6146@wotan.suse.de> (raw)
In-Reply-To: <20040923043246.2132.91877.24290@raybryhome.rayhome.net>
> +/* policy selection bits are passed from user shifted left by this amount */
> +#define REQUEST_POLICY_SHIFT 16
> +#define REQUEST_POLICY_PAGE POLICY_PAGE << REQUEST_POLICY_SHIFT
> +#define REQUEST_POLICY_PAGECACHE POLICY_PAGECACHE << REQUEST_POLICY_SHIFT
> +#define REQUEST_POLICY_MASK (0x3FFF) << REQUEST_POLICY_SHIFT
Please put brackets around the macros. Putting them around numbers
is not needed though @)
> +#define REQUEST_POLICY_DEFAULT (0x8000) << REQUEST_POLICY_SHIFT
> +
> /* Flags for get_mem_policy */
> #define MPOL_F_NODE (1<<0) /* return next IL mode instead of node mask */
> #define MPOL_F_ADDR (1<<1) /* look up vma using address */
> @@ -31,6 +54,8 @@
> #include <linux/slab.h>
> #include <linux/rbtree.h>
> #include <asm/semaphore.h>
> +#include <linux/sched.h>
> +#include <asm/current.h>
Why is that needed? I don't see any users for this. Please avoid this
if possible, we already have too much include dependency spagetti.
> --- linux-2.6.9-rc2-mm1.orig/include/linux/sched.h 2004-09-16 12:54:41.000000000 -0700
> +++ linux-2.6.9-rc2-mm1/include/linux/sched.h 2004-09-22 08:48:45.000000000 -0700
> @@ -31,6 +31,8 @@
> #include <linux/pid.h>
> #include <linux/percpu.h>
>
> +#include <linux/mempolicy.h>
I also don't see why this should be needed. Please remove.
> + for(i=0;i<NR_MEM_POLICIES;i++)
There should be more spaces here (similar in other loops)
> int err, pval;
> struct mm_struct *mm = current->mm;
> struct vm_area_struct *vma = NULL;
> - struct mempolicy *pol = current->mempolicy;
> + struct mempolicy *pol = NULL;
> + int policy_type, request_policy_default;
>
> if (flags & ~(unsigned long)(MPOL_F_NODE|MPOL_F_ADDR))
> return -EINVAL;
> if (nmask != NULL && maxnode < numnodes)
> return -EINVAL;
> +
> + policy_type = (flags & REQUEST_POLICY_MASK) > REQUEST_POLICY_SHIFT;
> + request_policy_default = (flags & REQUEST_POLICY_DEFAULT);
Why is that not an MPOL_F_* ?
> /* Slow path of a mempolicy copy */
> struct mempolicy *__mpol_copy(struct mempolicy *old)
> @@ -1093,8 +1146,8 @@ void __init numa_policy_init(void)
> /* Set interleaving policy for system init. This way not all
> the data structures allocated at system boot end up in node zero. */
>
> - if (sys_set_mempolicy(MPOL_INTERLEAVE, nodes_addr(node_online_map),
> - MAX_NUMNODES) < 0)
> + if (sys_set_mempolicy(REQUEST_POLICY_PAGE | MPOL_INTERLEAVE,
> + nodes_addr(node_online_map), MAX_NUMNODES) < 0)
That's definitely wrong, the boot time interleaving is not for the page
cache but for all allocations. There are not even page cache allocations
that early.
Overall when I look at all the complications you add for the per process
page policy which doesn't even have a demonstrated need I'm not sure
it is really worth it.
> printk("numa_policy_init: interleaving failed\n");
> }
>
> @@ -1102,5 +1155,5 @@ void __init numa_policy_init(void)
> * Assumes fs == KERNEL_DS */
> void numa_default_policy(void)
> {
> - sys_set_mempolicy(MPOL_DEFAULT, NULL, 0);
> + sys_set_mempolicy(REQUEST_POLICY_PAGE | MPOL_DEFAULT, NULL, 0);
Same.
-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:24 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-09-23 4:32 [PATCH 0/2] mm: memory policy " Ray Bryant
2004-09-23 4:32 ` [PATCH 1/2] mm: page cache mempolicy " Ray Bryant
2004-09-23 9:24 ` Andi Kleen [this message]
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
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
2004-09-23 18:56 [PATCH 1/2] mm: page cache mempolicy " Ray Bryant
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=20040923092416.GC6146@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