From: Jason Gunthorpe Date: Wed, 11 Mar 2020 20:03:33 +0000 (-0300) Subject: mm/hmm: do not check pmd_protnone twice in hmm_vma_handle_pmd() X-Git-Tag: v5.7-rc1~131^2~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=24cee8ab41eec51ea4cabd19c311719038084648;p=thirdparty%2Flinux.git mm/hmm: do not check pmd_protnone twice in hmm_vma_handle_pmd() pmd_to_hmm_pfn_flags() already checks it and makes the cpu flags 0. If no fault is requested then the pfns should be returned with the not valid flags. It should not unconditionally fault if faulting is not requested. Fixes: 2aee09d8c116 ("mm/hmm: change hmm_vma_fault() to allow write fault on page basis") Reviewed-by: Ralph Campbell Reviewed-by: Christoph Hellwig Signed-off-by: Jason Gunthorpe --- diff --git a/mm/hmm.c b/mm/hmm.c index 9c82ea972d4b8..37a6fca7da43f 100644 --- a/mm/hmm.c +++ b/mm/hmm.c @@ -226,7 +226,7 @@ static int hmm_vma_handle_pmd(struct mm_walk *walk, unsigned long addr, hmm_range_need_fault(hmm_vma_walk, pfns, npages, cpu_flags, &fault, &write_fault); - if (pmd_protnone(pmd) || fault || write_fault) + if (fault || write_fault) return hmm_vma_walk_hole_(addr, end, fault, write_fault, walk); pfn = pmd_pfn(pmd) + ((addr & ~PMD_MASK) >> PAGE_SHIFT);