In a consolidated environment, even at the cost of some CPU to run
let me try to reason a bit. First let me explain theSounds like this should be done unconditionally, then. An empty
problem
Memory is a precious resource in a consolidated environment.
We don't want to waste memory via page cache duplication
(cache=writethrough and cache=writeback mode).
Now here is what we are trying to do
1. A slab page will not be freed until the entire page is free (all
slabs have been kfree'd so to speak). Normal reclaim will definitely
free this page, but a lot of it depends on how frequently we are
scanning the LRU list and when this page got added.
2. In the case of page cache (specifically unmapped page cache), there
is duplication already, so why not go after unmapped page caches when
the system is under memory pressure?
In the case of 1, we don't force a dentry to be freed, but rather a
freed page in the slab cache to be reclaimed ahead of forcing reclaim
of mapped pages.
slab page is worth less than an unmapped pagecache page at all
times, no?
shrinkers, I think potentially yes.
True, that is why the first patch is controlled via a boot parameterDoes the problem statement make sense? If so, do you agree with 1 andIn the case of 2, how do you know there is duplication? You know
2? Is there major concern about subverting regular reclaim? Does
subverting it make sense in the duplicated scenario?
the guest caches the page, but you have no information about the
host. Since the page is cached in the guest, the host doesn't see
it referenced, and is likely to drop it.
that the host can pass. For the second patch, I think we'll need
something like a balloon<size> <cache?> with the cache argument being
optional.
If there is no duplication, then you may have dropped aYes, agreed.
recently-used page and will likely cause a major fault soon.