Hi Andrew, Today's linux-next merge of the akpm tree got a conflict in mm/mprotect.c between commit ("2083d67027ad") from the tip tree and commit "thp: change split_huge_page_pmd() interface" from the akpm tree. I fixed it up (see below) and can carry the fix as necessary (no action is required). -- Cheers, Stephen Rothwell sfr@canb.auug.org.au diff --cc mm/mprotect.c index b5be3f1,d74a6fb..0000000 --- a/mm/mprotect.c +++ b/mm/mprotect.c @@@ -126,8 -89,8 +126,8 @@@ static inline unsigned long change_pmd_ next = pmd_addr_end(addr, end); if (pmd_trans_huge(*pmd)) { if (next - addr != HPAGE_PMD_SIZE) - split_huge_page_pmd(vma->vm_mm, pmd); + split_huge_page_pmd(vma, addr, pmd); - else if (change_huge_pmd(vma, pmd, addr, newprot)) { + else if (change_huge_pmd(vma, pmd, addr, newprot, prot_numa)) { pages += HPAGE_PMD_NR; continue; }