[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <aec7e5c30608082300t3b903e89rff302dc25339c720@mail.gmail.com>
Date: Wed, 9 Aug 2006 15:00:01 +0900
From: "Magnus Damm" <magnus.damm@...il.com>
To: "Andi Kleen" <ak@...e.de>
Cc: "Nick Piggin" <nickpiggin@...oo.com.au>, rohitseth@...gle.com,
"Dave Hansen" <haveblue@...ibm.com>, "Kirill Korotaev" <dev@...ru>,
vatsa@...ibm.com, "Alan Cox" <alan@...rguk.ukuu.org.uk>,
"Andrew Morton" <akpm@...l.org>, mingo@...e.hu, sam@...ain.net,
linux-kernel@...r.kernel.org, dev@...nvz.org, efault@....de,
balbir@...ibm.com, sekharan@...ibm.com, nagar@...son.ibm.com,
pj@....com, "Andrey Savochkin" <saw@...ru>
Subject: Re: memory resource accounting (was Re: [RFC, PATCH 0/5] Going forward with Resource Management - A cpu controller)
On 09 Aug 2006 06:33:54 +0200, Andi Kleen <ak@...e.de> wrote:
> Nick Piggin <nickpiggin@...oo.com.au> writes:
> >
> > - each struct page has a backpointer to its billed container. At the mm
> > summit Linus said he didn't want back pointers, but I clarified with him
> > and he isn't against them if they are easily configured out when not using
> > memory controllers.
>
> This would need to be done at runtime though, otherwise it's useless
> for distributions and other people who want single kernel binary images.
>
> Probably would need a second parallel table, but for that you would
> need to know at boot already if you plan to use them or not. Ugly.
I've been thinking a bit about replacing the mapping and index members
in struct page with a single pointer that point into a cluster data
type. The cluster data type is aligned to a power of two and contains
a header that is shared between all pages within the cluster. The
header contains a base index and mapping. The rest of the cluster is
an array of pfn:s that point back to the actual page.
The cluster can be seen as a leaf node in the inode radix tree.
Contiguous pages in inode space are kept together in the cluster - not
physically contiguous pages. The cluster pointer in struct page is
used together with alignment to determine the address of the cluster
header and the real index (alignment + base index).
Anyway, what has all this to do with memory resource management? It
should be possible to add a per-cluster container pointer in the
header. This way the per-page overhead is fairly small - all depending
on the cluster size of course.
/ magnus
-
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