The patch titled Subject: mm: fix typo ni cache_alloc_zspage() has been added to the -mm tree. Its filename is mm-fix-typo-of-cache_alloc_zspage.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-fix-typo-of-cache_alloc_zspage.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-fix-typo-of-cache_alloc_zspage.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: Xishi Qiu <qiuxishi@xxxxxxxxxx> Subject: mm: fix typo ni cache_alloc_zspage() Delete extra semicolon, it was introduced in 3783689 ("zsmalloc: introduce zspage structure"). Link: http://lkml.kernel.org/r/5864C12F.60709@xxxxxxxxxx Signed-off-by: Xishi Qiu <qiuxishi@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/zsmalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/zsmalloc.c~mm-fix-typo-of-cache_alloc_zspage mm/zsmalloc.c --- a/mm/zsmalloc.c~mm-fix-typo-of-cache_alloc_zspage +++ a/mm/zsmalloc.c @@ -364,7 +364,7 @@ static struct zspage *cache_alloc_zspage { return kmem_cache_alloc(pool->zspage_cachep, flags & ~(__GFP_HIGHMEM|__GFP_MOVABLE)); -}; +} static void cache_free_zspage(struct zs_pool *pool, struct zspage *zspage) { _ Patches currently in -mm which might be from qiuxishi@xxxxxxxxxx are mm-fix-typo-of-cache_alloc_zspage.patch -- 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