Hi all, Today's linux-next merge of the akpm-current tree got a conflict in: mm/zsmalloc.c between commit: 5718b5cdd6e5 ("zsmalloc: Stop using slab fields in struct page") from the slab tree and commit: efcc1718fe08 ("zsmalloc: move huge compressed obj from page to zspage") from the akpm-current tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc mm/zsmalloc.c index 0d3b65939016,7e03cc9363bb..000000000000 --- a/mm/zsmalloc.c +++ b/mm/zsmalloc.c @@@ -824,10 -820,12 +820,12 @@@ static struct zspage *get_zspage(struc static struct page *get_next_page(struct page *page) { - if (unlikely(PageHugeObject(page))) + struct zspage *zspage = get_zspage(page); + + if (unlikely(ZsHugePage(zspage))) return NULL; - return page->freelist; + return (struct page *)page->index; } /** @@@ -900,8 -893,7 +893,7 @@@ static void reset_page(struct page *pag ClearPagePrivate(page); set_page_private(page, 0); page_mapcount_reset(page); - ClearPageHugeObject(page); - page->freelist = NULL; + page->index = 0; } static int trylock_zspage(struct zspage *zspage) @@@ -1042,9 -1039,9 +1039,9 @@@ static void create_page_chain(struct si SetPagePrivate(page); if (unlikely(class->objs_per_zspage == 1 && class->pages_per_zspage == 1)) - SetPageHugeObject(page); + SetZsHugePage(zspage); } else { - prev_page->freelist = page; + prev_page->index = (unsigned long)page; } prev_page = page; }
Attachment:
pgpiaJXm4YxJb.pgp
Description: OpenPGP digital signature