[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20121113112410.GW8218@suse.de>
Date: Tue, 13 Nov 2012 11:24:10 +0000
From: Mel Gorman <mgorman@...e.de>
To: Ingo Molnar <mingo@...nel.org>
Cc: Peter Zijlstra <a.p.zijlstra@...llo.nl>,
Andrea Arcangeli <aarcange@...hat.com>,
Rik van Riel <riel@...hat.com>,
Johannes Weiner <hannes@...xchg.org>,
Hugh Dickins <hughd@...gle.com>,
Thomas Gleixner <tglx@...utronix.de>,
Linus Torvalds <torvalds@...ux-foundation.org>,
Andrew Morton <akpm@...ux-foundation.org>,
Linux-MM <linux-mm@...ck.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 05/19] mm: numa: pte_numa() and pmd_numa()
Hi Ingo,
On Tue, Nov 13, 2012 at 10:54:17AM +0100, Ingo Molnar wrote:
>
> * Mel Gorman <mgorman@...e.de> wrote:
>
> > From: Andrea Arcangeli <aarcange@...hat.com>
> >
> > Implement pte_numa and pmd_numa.
> >
> > <Changlog SNIP>
> > ---
> > arch/x86/include/asm/pgtable.h | 65 ++++++++++++++++++++++++++++++++++++++--
> > include/asm-generic/pgtable.h | 12 ++++++++
> > 2 files changed, 75 insertions(+), 2 deletions(-)
> >
> > <Patch SNIP>
>
> Hm, this overcomplicates things quite a bit and adds arch
> specific code, and there's no explanation given for that
> approach that I can see?
>
So there are two possible problems here - the PTE flag naming and how
it's implemented.
On the PTE flag naming front, the changelog explains the disadvantages
to using PROT_NONE and this arrangement allows an architecture to make a
better decision if one is available. The relevant parts of the changelog are
_PAGE_NUMA on x86 shares the same bit number of _PAGE_PROTNONE (but
it could also use a different bitflag, it's up to the architecture
to decide).
and
Sharing the same bitflag with _PAGE_PROTNONE in fact complicates
things: it requires us to ensure the code paths executed by
_PAGE_PROTNONE remains mutually exclusive to the code paths executed
by _PAGE_NUMA at all times, to avoid _PAGE_NUMA and _PAGE_PROTNONE
to step into each other toes.
so I'd like to keep that. Any major objections?
> Basically, what's wrong with the generic approach that numa/core
> has:
>
> __weak bool pte_numa(struct vm_area_struct *vma, pte_t pte)
>
> [see the full function below.]
>
> Then we can reuse existing protection-changing functionality and
> keep it all tidy.
>
I very much like this idea of this approach. Superficially I see nothing
wrong with it. I just didn't think of it when I was trying to resolve
the two trees together.
> an architecture that wants to do something special could
> possibly override it in the future - but we want to keep the
> generic logic in generic code.
>
Sensible and probably less mess in the future.
> __weak bool pte_numa(struct vm_area_struct *vma, pte_t pte)
> {
I'll lift this and see can it be modified to use _PAGE_NUMA instead of
hard-coding for PROT_NONE. Of course if you beat me to it and send a patch,
that'd be cool too :)
Thanks!
--
Mel Gorman
SUSE Labs
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists