commit | 351618b203acef13946a03ecf18fbe328c3cdb58 | [log] [tgz] |
---|---|---|
author | Vitaly Wool <[email protected]> | Mon May 13 17:22:46 2019 -0700 |
committer | Linus Torvalds <[email protected]> | Tue May 14 09:47:50 2019 -0700 |
tree | d50a6a22e0674d460c73acac7a03ab3d696bd9b6 | |
parent | 9050cce104c04982fb7b5dea9aee4f66f245d6d3 [diff] |
mm/z3fold.c: improve compression by extending search The current z3fold implementation only searches this CPU's page lists for a fitting page to put a new object into. This patch adds quick search for very well fitting pages (i. e. those having exactly the required number of free space) on other CPUs too, before allocating a new page for that object. Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Vitaly Wool <[email protected]> Cc: Bartlomiej Zolnierkiewicz <[email protected]> Cc: Dan Streetman <[email protected]> Cc: Krzysztof Kozlowski <[email protected]> Cc: Oleksiy Avramchenko <[email protected]> Cc: Uladzislau Rezki <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>