Re: [PATCHv2 07/12] mm: convert try_to_unmap_one() to page_vma_mapped_walk()

From: Kirill A. Shutemov
Date: Wed Jan 25 2017 - 17:46:32 EST


On Wed, Jan 25, 2017 at 09:25:33PM +0300, Kirill A. Shutemov wrote:
> + /* Nuke the page table entry. */
> + flush_cache_page(vma, address, pte_pfn(pvmw.pte));

This has to be
flush_cache_page(vma, address, pte_pfn(*pvmw.pte));

Fixed version:

-------8<-------