aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Weiner <hannes@cmpxchg.org>2016-12-12 19:43:35 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-01-12 05:39:32 -0500
commitdc1b6d0aed97a5e7c95afd1a2eff20151f440513 (patch)
tree62060fb0a274aeb3ca40663d5bd8688140a29753
parent058a4a534c2392ce6a70ea8372b635de2af1d48f (diff)
mm: khugepaged: fix radix tree node leak in shmem collapse error path
commit 59749e6ce53735d8b696763742225f126e94603f upstream. The radix tree counts valid entries in each tree node. Entries stored in the tree cannot be removed by simpling storing NULL in the slot or the internal counters will be off and the node never gets freed again. When collapsing a shmem page fails, restore the holes that were filled with radix_tree_insert() with a proper radix tree deletion. Fixes: f3f0e1d2150b ("khugepaged: add support of collapse for tmpfs/shmem pages") Link: http://lkml.kernel.org/r/20161117191138.22769-3-hannes@cmpxchg.org Signed-off-by: Johannes Weiner <hannes@cmpxchg.org> Reported-by: Jan Kara <jack@suse.cz> Acked-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Reviewed-by: Jan Kara <jack@suse.cz> Cc: Hugh Dickins <hughd@google.com> Cc: Matthew Wilcox <mawilcox@linuxonhyperv.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--mm/khugepaged.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/mm/khugepaged.c b/mm/khugepaged.c
index 2779c63bdea0..5d7c006373d3 100644
--- a/mm/khugepaged.c
+++ b/mm/khugepaged.c
@@ -1525,9 +1525,11 @@ tree_unlocked:
1525 if (!page || iter.index < page->index) { 1525 if (!page || iter.index < page->index) {
1526 if (!nr_none) 1526 if (!nr_none)
1527 break; 1527 break;
1528 /* Put holes back where they were */
1529 radix_tree_replace_slot(slot, NULL);
1530 nr_none--; 1528 nr_none--;
1529 /* Put holes back where they were */
1530 radix_tree_delete(&mapping->page_tree,
1531 iter.index);
1532 slot = radix_tree_iter_next(&iter);
1531 continue; 1533 continue;
1532 } 1534 }
1533 1535