Speeding up the page allocator
While many kernel memory allocations are done at the slab level (using kmem_cache_alloc() or kmalloc()), there is another layer of memory management below the slab allocators. In the end, all dynamic memory management comes down to the page allocator, which hands out memory in units of full pages. The page allocator must manage memory without allowing it to become overly fragmented; it also must deal with details like CPU and NUMA node affinity, DMA accessibility, and high memory. It also clearly needs to be fast; if it is slowing things down, there is little that the higher levels can do to make things better. So one might do well to be concerned when memory management hacker Mel Gorman writes:
As might be expected, Mel has come up with a set of patches designed to speed up the page allocator and do away the the temptation to try to work around it. The result appears to be a significant cleaning-up of the code and a real improvement in performance; it also shows the kind of work which is necessary to keep this sort of vital subsystem in top shape.
Mel's 20-part patch (linked with the quote, above) attacks the problem in a number of ways. Many of them are small tweaks; for example, the core page allocation function (alloc_pages_node()) includes the following test:
if (unlikely(order >= MAX_ORDER)) return NULL;
But, as Mel puts it, no proper user of the page allocator should be allocating something larger than MAX_ORDER in any case. So his patch set removes this test from the fast path of the allocator, replacing it with a rather more attention-getting test (VM_BUG_ON) in the slow path. The fast allocation path gets a little faster, and misuse of the interface should eventually be caught (and complained about) anyway.
Then, there is the little function gfp_zone(), which takes the flags passed to the allocation request and decides which memory zone to try to allocate from. Different requests must be satisfied from different regions of memory, depending on factors like whether the memory will be used for DMA, whether high memory is acceptable, or whether the memory can be relocated if needed for defragmentation purposes. The current code accomplishes this test with a series of four if tests, but lots of jumps can be expensive in fast-path code. So Mel's patch replaces the tests with a table lookup.
There are a number of other changes along these lines - seeming micro-optimizations that one would not normally bother with. But, in fast-path code deep within the system, this level of optimization can be worth doing. The patch set also reorganizes things to make the fast path more explicit and contiguous; that, too, can speed things up, but it also helps ensure that developers know when they are working with performance-critical code.
The change which provoked the most discussion, though, was the removal of the distinction between hot and cold pages. This feature, merged for 2.5.45, attempts to track which pages are most likely to be present in the processor's caches. If the memory allocator can give cache-warm pages to requesters, memory performance should improve. But, notes Mel, it turns out that very few pages are being freed as "cold," and that, in general, the decisions on whether to tag specific pages as being hot or cold are questionable. This feature adds some complexity to the page allocator and doesn't seem to improve performance, so Mel decided to take it out. After running some benchmarks, though, he concluded that, in fact, he has no idea whether the feature helps or not. So the second version of the patch has left out the hot/cold removal, but this topic will be revisited in the future.
Mel claims some good results:
A number of standard user-space benchmarks also show improvements with this
patch set. The reviews are generally good, so the chances are that these
changes could avoid the lengthy delays that characterize memory management
patches and head for the mainline in the relatively near future. Then
there should be no excuse for trying to avoid the page allocator.
Index entries for this article | |
---|---|
Kernel | Memory management/Page allocator |
Posted Feb 26, 2009 4:12 UTC (Thu)
by bluefoxicy (guest, #25366)
[Link] (20 responses)
mov 4096, %ecx
versus...
mov srcaddr, %esi ; Source
This is easily pipelined, internalized, and also runs 1/4 the operations. Unfortunately it requires a big sweep through two pages of data; the CPU's cache algorithms should keep this up to date, but will probably destroy 8k of cache in the process.
Posted Feb 26, 2009 4:28 UTC (Thu)
by agrover (guest, #55381)
[Link] (7 responses)
You can use it to zero the page and not touch CPU cache.
Posted Feb 26, 2009 12:09 UTC (Thu)
by nix (subscriber, #2304)
[Link] (6 responses)
Posted Feb 26, 2009 14:35 UTC (Thu)
by etienne_lorrain@yahoo.fr (guest, #38022)
[Link] (5 responses)
Posted Feb 26, 2009 20:17 UTC (Thu)
by bluefoxicy (guest, #25366)
[Link] (3 responses)
Posted Feb 27, 2009 1:21 UTC (Fri)
by jzbiciak (guest, #5246)
[Link]
While it's true that zeroing all freed pages is a bad idea, keeping a pool of freed pages that's refilled during idle periods isn't so crazy. I believe the Windows NT kernel does something along those lines. You do end up putting more code in the fast-path to detect whether the "prezeroed pool" is non-empty, and it only applies to GFP_ZERO pages anyway, so I suspect it ends up not being a win under Linux. Mel's patches bring a noticeable speedup at the benchmark level, and suggest to me that GFP_ZERO pages are not the most numerous allocations in the system. This makes intuitive sense--most allocations back other higher-level allocators in the kernel and/or provide buffer space that's about to be filled. There's no reason to zero it. Complicating those allocations for a minor speedup in GFP_ZERO allocations seems misplaced.
Posted Feb 27, 2009 10:26 UTC (Fri)
by etienne_lorrain@yahoo.fr (guest, #38022)
[Link] (1 responses)
Posted Feb 27, 2009 23:14 UTC (Fri)
by nix (subscriber, #2304)
[Link]
IIRC the zero page was removed from the kernel because zeroing pages was
Posted Mar 4, 2009 8:03 UTC (Wed)
by xoddam (subscriber, #2322)
[Link]
Posted Feb 26, 2009 14:42 UTC (Thu)
by jzbiciak (guest, #5246)
[Link] (11 responses)
If you want to get really fancy on a modern ISAs but not touch DMA engines, you'd use the various prefetch-for-write and streaming write instructions that write 128 bits or more at a go. (I'm not limiting myself to x86 and SSE variants here.)
Posted Feb 26, 2009 20:23 UTC (Thu)
by bluefoxicy (guest, #25366)
[Link] (10 responses)
You'd copy because the whole "copy 4096 bytes" instruction is ONE instruction, "rep movsd" (or "rep movsb" which is probably internally optimized to operate on words except for non-word-aligned start/end data). The entire loop logic is internalized on the CPU, and there's no stepping through macroinstructions like "cmp," "jnz," "dec," or "loop"
The assumption here is that the CPU's internal microcode for running a loop is a lot faster than stepping through two instructions:
rep movsd ; Copy based on registers %esi, %edi, %ecx
vs...
@j00: ; label, not an instruction
One of these involves branching, and thus branch prediction. One of these involves cache, and thus prefetching... but also works internally. Which is faster?
Posted Feb 26, 2009 20:46 UTC (Thu)
by bcopeland (subscriber, #51750)
[Link] (1 responses)
I admit I haven't kept up with the ISAs since pentium era, but for a while the rep functions were in fact slower than open-coded loops. Anyway if it were true that rep movs was faster than dec/jmp, there is rep stosd which does the same thing but without copying.
Posted Feb 27, 2009 0:00 UTC (Fri)
by bluefoxicy (guest, #25366)
[Link]
Posted Feb 26, 2009 21:24 UTC (Thu)
by nix (subscriber, #2304)
[Link] (2 responses)
Uncached memory is *far* slower than CPUs, and cache is precious and
Posted Feb 26, 2009 21:46 UTC (Thu)
by jzbiciak (guest, #5246)
[Link] (1 responses)
I believe AMD recommended "rep stosd" for filling memory at one time. If you want to go faster still, I imagine there are SSE equivalents that store 128 or 256 bits at a go. (I haven't kept up with the latest SSE2 and SSE3. I focus on C6000-family TI DSPs.)
If you throw in "prefetch for write" instructions, you optimize the cache transfers too. I believe on AMD devices at least, it moves the line into the "O"wner state in its MOESI protocol directly, rather than waiting for the "S"hared -> "O"wner transition on the first write. (In a traditional MESI, it seems like it'd pull the line to the "E"xclusive state.)
Posted Feb 27, 2009 1:08 UTC (Fri)
by jzbiciak (guest, #5246)
[Link]
Here's the MMX and AMD optimized copies and fills the kernel currently uses. I can't imagine they'd settle for a crappy loop here, and it looks like some thought was put into these.
http://lxr.linux.no/linux+v2.6.28.7/arch/x86/lib/mmx_32.c
On regular x86, they do indeed use "rep stosl". (I guess the AT&T syntax spells it "stosl" instead of "stosd"?) See around like 92.
http://lxr.linux.no/linux+v2.6.28.7/arch/x86/include/asm/...
Rampant speculation is fun and all, but I suspect Arjan actually measured these. :-) (Or, at least the ones in the MMX file.)
Posted Feb 26, 2009 22:45 UTC (Thu)
by iabervon (subscriber, #722)
[Link] (1 responses)
Posted Feb 27, 2009 0:01 UTC (Fri)
by bluefoxicy (guest, #25366)
[Link]
As another poster said, rep may or may not be faster/slower than open coded loops.
Posted Feb 28, 2009 17:53 UTC (Sat)
by anton (subscriber, #25547)
[Link] (2 responses)
Concerning speed, this stuff is probably bandwidth-limited in the
usual case (when the page has cooled down for a while), so the time
for the in-core execution probably does not really matter. The branch
in the looping version should be very well predictable. Hmm, I think
it's more likely that "rep stosd" avoids the write-allocation
cache-line reads than the looping version, and that would have an
effect with the page being cold. If you want to know for certain, just
measure it.
About using the DMA engine, I remember (but could not find last I
looked) a posting (by IIRC Linus Torvalds) many years ago that
compared the Linux approach of clearing on-demand with some other OS
(BSD?) that cleared pages in the idle process or something (where it
costs nothing in theory). In the bottom line (i.e., when measuring
application performance) the Linux approach was faster, because the
page was warm in the cache afterwards, and accesses to the page did
not incur cache misses. This should still hold, even with clearing by
a DMA engine.
Posted Mar 5, 2009 8:18 UTC (Thu)
by efexis (guest, #26355)
[Link]
Posted Mar 5, 2009 8:37 UTC (Thu)
by jzbiciak (guest, #5246)
[Link]
Posted Feb 27, 2009 18:04 UTC (Fri)
by giraffedata (guest, #1954)
[Link]
Strange that the article states this as an afterthought, after giving details about a meaningless measurement: reduction in allocation time as a fraction of the former allocation time. I wonder how much the changes speed up something people care about (such as these standard benchmarks measure).
The improvements mentioned in the article just don't seem like they would make a noticeable improvement.
Speeding up the page allocator
@@j0:
mov 0, [addr+%ecx]
loop @@j0 ; dec %ecx + jnz @@j0
mov dstaddr, %edi ; Destination
mov 1024, %ecx ; Number to copy
rep movsd ; Copy 4-byte double-words
Speeding up the page allocator
Speeding up the page allocator
Speeding up the page allocator
Speeding up the page allocator
Speeding up the page allocator
Speeding up the page allocator
The big advantage is that it should also remove those cache-lines from the memory cache (layer 1, 2 and 3 if present) at time of free(), so it should still be better if you "free, allocate, don't use, free, allocate, don't use" because the allocated and unused memory isn't even fetched into the memory cache, and isn't made dirty for the other processors cache.
But it is probably more complex (multiprocessor DMA semaphore), and for these kind of things only testing can tell the truth, and that truth is only valid for the tested environment.
Speeding up the page allocator
zeroed, and then not used soon enough that it's still in cache?
faster than doing pagetable tricks to share a single zero page. Pagetable
manipulation is particularly expensive, but even so...
we have /dev/zero, why not use the hardware implementation?
Speeding up the page allocator
Speeding up the page allocator
mov 0,[addr+%ecx] ; Write 0x00 to addr+offset
loop ; dec %ecx && jnz @j00
Speeding up the page allocator
> running a loop is a lot faster than stepping through two instructions:
Speeding up the page allocator
Speeding up the page allocator
copy.
limited.
Speeding up the page allocator
Speeding up the page allocator
Speeding up the page allocator
Speeding up the page allocator
Speeding up the page allocator
You'd copy because the whole "copy 4096 bytes" instruction is ONE instruction, "rep movsd"
And filling is also just one instruction: "rep stosd".
Speeding up the page allocator
Speeding up the page allocator
Speeding up the page allocator
A number of standard user-space benchmarks also show improvements with this patch set.