The patch titled Subject: mm/zsmalloc: avoid unnecessary iteration in get_pages_per_zspage() has been removed from the -mm tree. Its filename was mm-zsmalloc-avoid-unnecessary-iteration-in-get_pages_per_zspage.patch This patch was dropped because it was nacked ------------------------------------------------------ From: Ganesh Mahendran <opensource.ganesh@xxxxxxxxx> Subject: mm/zsmalloc: avoid unnecessary iteration in get_pages_per_zspage() If we find a zspage with usage == 100%, there is no need to try other zspages. Link: http://lkml.kernel.org/r/1462425447-13385-1-git-send-email-opensource.ganesh@xxxxxxxxx Signed-off-by: Ganesh Mahendran <opensource.ganesh@xxxxxxxxx> Cc: Minchan Kim <minchan@xxxxxxxxxx> Cc: Sergey Senozhatsky <sergey.senozhatsky.work@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/zsmalloc.c | 3 +++ 1 file changed, 3 insertions(+) diff -puN mm/zsmalloc.c~mm-zsmalloc-avoid-unnecessary-iteration-in-get_pages_per_zspage mm/zsmalloc.c --- a/mm/zsmalloc.c~mm-zsmalloc-avoid-unnecessary-iteration-in-get_pages_per_zspage +++ a/mm/zsmalloc.c @@ -770,6 +770,9 @@ static int get_pages_per_zspage(int clas if (usedpc > max_usedpc) { max_usedpc = usedpc; max_usedpc_order = i; + + if (max_usedpc == 100) + break; } } _ Patches currently in -mm which might be from opensource.ganesh@xxxxxxxxx are -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html