mm, compaction: ignore pageblock skip when manually invoking compaction
The cached pageblock hint should be ignored when triggering compaction through /proc/sys/vm/compact_memory so all eligible memory is isolated. Manually invoking compaction is known to be expensive, there's no need to skip pageblocks based on heuristics (mainly for debugging). Signed-off-by: David Rientjes <rientjes@google.com> Acked-by: Mel Gorman <mgorman@suse.de> Cc: Rik van Riel <riel@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Родитель
3115cd9145
Коммит
91ca918648
|
@ -1186,6 +1186,7 @@ static void compact_node(int nid)
|
|||
struct compact_control cc = {
|
||||
.order = -1,
|
||||
.sync = true,
|
||||
.ignore_skip_hint = true,
|
||||
};
|
||||
|
||||
__compact_pgdat(NODE_DATA(nid), &cc);
|
||||
|
|
Загрузка…
Ссылка в новой задаче