Hi all, Today's linux-next merge of the kvm tree got a conflict in: mm/huge_memory.c between commit: 97d3d0f9a1cf ("mm/huge_memory.c: thp: fix conflict of above-47bit hint address and PMD alignment") from Linus' tree and commit: 0638468d2282 ("mm: thp: KVM: Explicitly check for THP when populating secondary MMU") from the kvm 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/huge_memory.c index a88093213674,9b3ee79d0edf..000000000000 --- a/mm/huge_memory.c +++ b/mm/huge_memory.c @@@ -527,13 -527,24 +527,24 @@@ void prep_transhuge_page(struct page *p set_compound_page_dtor(page, TRANSHUGE_PAGE_DTOR); } + bool is_transparent_hugepage(struct page *page) + { + if (!PageCompound(page)) + return 0; + + page = compound_head(page); + return is_huge_zero_page(page) || + page[1].compound_dtor == TRANSHUGE_PAGE_DTOR; + } + EXPORT_SYMBOL_GPL(is_transparent_hugepage); + -static unsigned long __thp_get_unmapped_area(struct file *filp, unsigned long len, +static unsigned long __thp_get_unmapped_area(struct file *filp, + unsigned long addr, unsigned long len, loff_t off, unsigned long flags, unsigned long size) { - unsigned long addr; loff_t off_end = off + len; loff_t off_align = round_up(off, size); - unsigned long len_pad; + unsigned long len_pad, ret; if (off_end <= off_align || (off_end - off_align) < size) return 0;
Attachment:
pgpLsOk27JKP8.pgp
Description: OpenPGP digital signature