From: Jack Steiner <steiner@sgi.com>
To: manfred@colorfullife.com (Manfred Spraul)
Cc: steiner@sgi.com (Jack Steiner),
linux-kernel@vger.kernel.org, lse-tech@lists.sourceforge.net
Subject: Re: [Lse-tech] [RFC] [PATCH] Scalable Statistics Counters
Date: Mon, 10 Dec 2001 10:32:59 -0600 (CST) [thread overview]
Message-ID: <200112101633.KAA45958@fsgi055.americas.sgi.com> (raw)
In-Reply-To: <3C1343B3.3090304@colorfullife.com> from "Manfred Spraul" at Dec 09, 2001 11:57:55 AM
>
> >
> >
> >Assuming the slab allocator manages by node, kmem_cache_alloc_node() &
> >kmem_cache_alloc_cpu() would be identical (exzcept for spelling :-).
> >Each would pick up the nodeid from the cpu_data struct, then allocate
> >from the slab cache for that node.
> >
>
> kmem_cache_alloc is simple - the complex operation is kmem_cache_free.
>
> The current implementation
> - assumes that virt_to_page() and reading one cacheline from the page
> structure is fast. Is that true for your setups?
> - uses an array to batch several free calls together: If the array
> overflows, then up to 120 objects are freed in one call, to reduce
> cacheline trashing.
>
> If virt_to_page is fast, then a NUMA allocator would be a simple
> extention of the current implementation:
I can give you 1 data point. This is for the SGI SN1 platform. This is a NUMA
platform & is running with the DISCONTIGMEM patch that is on sourceforge.
The virt_to_page() function currently generates the following code:
23 instructions
18 "real" instructions
5 noop (I would like to believe the compiler can eventually
use these instructions slots for something else)
The code has
2 load instructions that are always reference node-local memory & have
a high probability of hitting in the caches
1 load to the node that contains the target page
I think I see a couple opportunities for reducing the amount of code. However,
I consider the code to be "fast enough" for most purposes.
>
> * one slab chain for each node, one spinlock for each node.
> * 2 per-cpu arrays for each cpu: one for "correct node" kmem_cache_free
> calls , one for "foreign node" kmem_cache_free calls.
> * kmem_cache_alloc allocates from the "correct node" per-cpu array,
> fallback to the per-node slab chain, then fallback to __get_free_pages.
> * kmem_cache_free checks to which node the freed object belongs and adds
> it to the appropriate per-cpu array. The array overflow function then
> sorts the objects into the correct slab chains.
>
> If virt_to_page is slow we need a different design. Currently it's
> called in every kmem_cache_free/kfree call.
BTW, I think Tony Luck (at Intel) is currently changing the slab allocator
to be numa-aware. Are coordinating your work with his???
--
Thanks
Jack Steiner (651-683-5302) (vnet 233-5302) steiner@sgi.com
next prev parent reply other threads:[~2001-12-10 16:33 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-12-09 10:57 Manfred Spraul
2001-12-10 16:32 ` Jack Steiner [this message]
2001-12-10 17:00 ` Manfred Spraul
-- strict thread matches above, loose matches on Subject: below --
2001-12-08 17:43 Niels Christiansen
2001-12-09 11:46 ` Anton Blanchard
2001-12-07 9:52 Niels Christiansen
2001-12-07 10:10 ` Dipankar Sarma
2001-12-06 16:10 Niels Christiansen
2001-12-07 8:54 ` Dipankar Sarma
2001-12-08 22:24 ` Paul Jackson
2001-12-09 3:46 ` Jack Steiner
2001-12-09 4:44 ` Paul Jackson
2001-12-09 17:34 ` Jack Steiner
2001-12-11 23:27 ` Paul Jackson
2001-12-07 11:39 ` Ravikiran G Thirumalai
2001-12-08 13:46 ` Anton Blanchard
2001-12-05 15:02 Niels Christiansen
2001-12-06 12:33 ` Ravikiran G Thirumalai
2001-12-06 13:07 ` Arjan van de Ven
2001-12-06 14:09 ` Ravikiran G Thirumalai
2001-12-06 14:10 ` Arjan van de Ven
2001-12-06 19:35 ` Dipankar Sarma
2001-12-07 21:09 ` Alex Bligh - linux-kernel
2001-12-07 21:16 ` Arjan van de Ven
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=200112101633.KAA45958@fsgi055.americas.sgi.com \
--to=steiner@sgi.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lse-tech@lists.sourceforge.net \
--cc=manfred@colorfullife.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
all inboxes | Powered by JetHome®