Subject: + mm-zswap-bugfix-memory-leak-when-re-swapon.patch added to -mm tree To: weijie.yang@xxxxxxxxxxx,bob.liu@xxxxxxxxxx,minchan@xxxxxxxxxx,stable@xxxxxxxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Thu, 10 Oct 2013 12:52:43 -0700 The patch titled Subject: mm/zswap: bugfix: memory leak when re-swapon has been added to the -mm tree. Its filename is mm-zswap-bugfix-memory-leak-when-re-swapon.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-zswap-bugfix-memory-leak-when-re-swapon.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-zswap-bugfix-memory-leak-when-re-swapon.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Weijie Yang <weijie.yang@xxxxxxxxxxx> Subject: mm/zswap: bugfix: memory leak when re-swapon zswap_tree is not freed when swapoff, and it got re-kmalloced in swapon, so a memory leak occurs. Free the memory of zswap_tree in zswap_frontswap_invalidate_area(). Signed-off-by: Weijie Yang <weijie.yang@xxxxxxxxxxx> Reviewed-by: Bob Liu <bob.liu@xxxxxxxxxx> Cc: Minchan Kim <minchan@xxxxxxxxxx> Reviewed-by: Minchan Kim <minchan@xxxxxxxxxx> Cc: <stable@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/zswap.c | 4 ++++ 1 file changed, 4 insertions(+) diff -puN mm/zswap.c~mm-zswap-bugfix-memory-leak-when-re-swapon mm/zswap.c --- a/mm/zswap.c~mm-zswap-bugfix-memory-leak-when-re-swapon +++ a/mm/zswap.c @@ -804,6 +804,10 @@ static void zswap_frontswap_invalidate_a } tree->rbroot = RB_ROOT; spin_unlock(&tree->lock); + + zbud_destroy_pool(tree->pool); + kfree(tree); + zswap_trees[type] = NULL; } static struct zbud_ops zswap_zbud_ops = { _ Patches currently in -mm which might be from weijie.yang@xxxxxxxxxxx are mm-zswap-bugfix-memory-leak-when-re-swapon.patch mm-zswap-bugfix-memory-leak-when-invalidate-and-reclaim-occur-concurrently.patch mm-zswap-avoid-unnecessary-page-scanning.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html