[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Active Memory Defragmentation: Our implementation & problems
Richard B. Johnson wrote:
> If this is an Intel x86 machine, it is impossible for pages
> to get fragmented in the first place. The hardware allows any
> page, from anywhere in memory, to be concatenated into linear
> virtual address space. Even the kernel address space is virtual.
> The only time you need physically-adjacent pages is if you
> are doing DMA that is more than a page-length at a time. The
> kernel keeps a bunch of those pages around for just that
> purpose.
>
> So, if you are making a "memory defragmenter", it is a CPU time-sink.
> That's all.
Would memory fragmentation have any appreciable impact on L2 cache line
collisions?
Would defragmenting it help?
In the case of the Opteron, there is a 1M cache that is (I forget) N-way
set associative, and it's physically indexed. If a bunch of pages were
located such that there were a disproportionately large number of lines
which hit the same tag, you could be thrashing the cache.
There are two ways to deal with this: (1) intelligently locates pages
in physical memory; (2) hope that natural entropy keeps things random
enough that it doesn't matter.
--
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>