From: Yanfei Xu Date: Tue, 13 Oct 2020 23:53:29 +0000 (-0700) Subject: mm/memory.c: replace vmf->vma with variable vma X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a7069ee3f891b22727303dfe0857ae47ef0c4936;p=uclinux-h8%2Flinux.git mm/memory.c: replace vmf->vma with variable vma The code has declared a vma_struct named vma which is assigned a value of vmf->vma. Thus, use variable vma directly here. Signed-off-by: Yanfei Xu Signed-off-by: Andrew Morton Reviewed-by: Matthew Wilcox (Oracle) Link: http://lkml.kernel.org/r/20200818084607.37616-1-yanfei.xu@windriver.com Signed-off-by: Linus Torvalds --- diff --git a/mm/memory.c b/mm/memory.c index 1ba65e981541..817ac9c58473 100644 --- a/mm/memory.c +++ b/mm/memory.c @@ -3597,7 +3597,7 @@ static vm_fault_t __do_fault(struct vm_fault *vmf) * # flush A, B to clear the writeback */ if (pmd_none(*vmf->pmd) && !vmf->prealloc_pte) { - vmf->prealloc_pte = pte_alloc_one(vmf->vma->vm_mm); + vmf->prealloc_pte = pte_alloc_one(vma->vm_mm); if (!vmf->prealloc_pte) return VM_FAULT_OOM; smp_wmb(); /* See comment in __pte_alloc() */