The set of patches do fix a lot and make a strong start at addressing
the fragmentation problem, just not 100% of the way. [...]
do you have an expectation to be able to solve the 'fragmentation
problem', all the time, in a 100% way, now or in the future?
Considering anybody can allocate memory and never release it, _any_ 100%
solution is going to require migrating existing pages, regardless of
allocation strategy.
Three issues here. Fragmentation of memory in general, fragmentation of usage,
and being able to have 100% success rate at removing memory.
We will never be able to have 100% contiguous memory with no fragmentation.
Ever. Certainly not while we have non-movable pieces of memory. Even if we
could move every piece of memory it would be impractical. What these patches do
for general fragmentation is to keep the allocations that never will get freed
away from the rest of memory, so that memory has a chance to form larger
contiguous ranges when it is freed.
By separating memory based on usage there is another side effect. It also makes
possible some more active defragmentation methods on easier memory, because it
doesn't have annoying hard memory scattered throughout. Suddenly we can talk
about being able to do memory hotplug remove on significant portions of memory.
Or allocating these hugepages after boot. Or doing active defragmentation.
Or modules being able to be modules because they don't have to preallocate big
pieces of contiguous memory.
Some people will argue that we need 100% separation of usage or no separation at
all. Well, change the array of fallback to not allow kernel non-reclaimable to
fallback and we are done. 4 line change, 100% separation. But the tradeoff is
that under memory pressure we might fail allocations when we still have free
memory. There are other options for fallback of course, the fallback_alloc()
function is easily replaceable if somebody wants to. Many of these options get
easier once memory migration is in. The way fallback is done in the current
patches is to maintain current behavior as much as possible, satisfy
allocations, and not affect performance.
As to the 100% success at removing memory, this set of patches doesn't solve
that. But it solves the 80% problem quite nicely (when combined with the memory
migration patches). 80% is great for virtualized systems where the OS has some
choice over which memory to remove, but not the quantity to remove. It is also
a good start to 100%, because we can separate and identify the easy memory from
the hard memory. Dave Hansen has outlined in separate posts how we can get to
100%, including hard memory.
can you always, under any circumstance hot unplug RAM with these patches
applied? If not, do you have any expectation to reach 100%?
You're asking intentionally leading questions, aren't you? Without on-demand
page migration a given area of physical memory would only ever be free by
sheer coincidence. Less fragmented page allocation doesn't address _where_
the free areas are, it just tries to make them contiguous.
A page migration strategy would have to do less work if there's less
fragmention, and it also allows you to cluster the "difficult" cases (such as
kernel structures that just ain't moving) so you can much more easily
hot-unplug everything else. It also makes larger order allocations easier to
do so drivers needing that can load as modules after boot, and it also means
hugetlb comes a lot closer to general purpose infrastructure rather than a
funky boot-time reservation thing. Plus page prezeroing approaches get to
work on larger chunks, and so on.
But any strategy to demand that "this physical memory range must be freed up
now" will by definition require moving pages...
Perfectly stated.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]