On Wed, Feb 11, 2015 at 11:03:55PM +0200, Ebru Akagunduz wrote: > Changes in v2: > - Check zero pfn in release_pte_pages() (Andrea Arcangeli) .. and in: > @@ -2237,7 +2237,7 @@ static void __collapse_huge_page_copy(pte_t *pte, struct page *page, > pte_t pteval = *_pte; > struct page *src_page; > > - if (pte_none(pteval)) { > + if (pte_none(pteval) || is_zero_pfn(pte_pfn(pteval))) { > clear_user_highpage(page, address); > add_mm_counter(vma->vm_mm, MM_ANONPAGES, 1); > } else { __collapse_huge_page_copy, both were needed as far as I can tell. I haven't tested it but it's looking good. Reviewed-by: Andrea Arcangeli <aarcange@xxxxxxxxxx> -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>