}
        }
 
-       if (pmd_none(*vmf->pmd)) {
-               vmf->ptl = pmd_lock(mm, vmf->pmd);
-               if (likely(pmd_none(*vmf->pmd))) {
-                       mm_inc_nr_ptes(mm);
-                       pmd_populate(mm, vmf->pmd, vmf->prealloc_pte);
-                       vmf->prealloc_pte = NULL;
-               }
-               spin_unlock(vmf->ptl);
-       }
+       if (pmd_none(*vmf->pmd))
+               pmd_install(mm, vmf->pmd, &vmf->prealloc_pte);
 
        /* See comment in handle_pte_fault() */
        if (pmd_devmap_trans_unstable(vmf->pmd)) {
 
 
 void free_pgtables(struct mmu_gather *tlb, struct vm_area_struct *start_vma,
                unsigned long floor, unsigned long ceiling);
+void pmd_install(struct mm_struct *mm, pmd_t *pmd, pgtable_t *pte);
 
 static inline bool can_madv_lru_vma(struct vm_area_struct *vma)
 {
 
        }
 }
 
+void pmd_install(struct mm_struct *mm, pmd_t *pmd, pgtable_t *pte)
+{
+       spinlock_t *ptl = pmd_lock(mm, pmd);
+
+       if (likely(pmd_none(*pmd))) {   /* Has another populated it ? */
+               mm_inc_nr_ptes(mm);
+               pmd_populate(mm, pmd, *pte);
+               *pte = NULL;
+       }
+       spin_unlock(ptl);
+}
+
 int __pte_alloc(struct mm_struct *mm, pmd_t *pmd)
 {
-       spinlock_t *ptl;
        pgtable_t new = pte_alloc_one(mm);
        if (!new)
                return -ENOMEM;
         */
        smp_wmb(); /* Could be smp_wmb__xxx(before|after)_spin_lock */
 
-       ptl = pmd_lock(mm, pmd);
-       if (likely(pmd_none(*pmd))) {   /* Has another populated it ? */
-               mm_inc_nr_ptes(mm);
-               pmd_populate(mm, pmd, new);
-               new = NULL;
-       }
-       spin_unlock(ptl);
+       pmd_install(mm, pmd, &new);
        if (new)
                pte_free(mm, new);
        return 0;
                                return ret;
                }
 
-               if (vmf->prealloc_pte) {
-                       vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
-                       if (likely(pmd_none(*vmf->pmd))) {
-                               mm_inc_nr_ptes(vma->vm_mm);
-                               pmd_populate(vma->vm_mm, vmf->pmd, vmf->prealloc_pte);
-                               vmf->prealloc_pte = NULL;
-                       }
-                       spin_unlock(vmf->ptl);
-               } else if (unlikely(pte_alloc(vma->vm_mm, vmf->pmd))) {
+               if (vmf->prealloc_pte)
+                       pmd_install(vma->vm_mm, vmf->pmd, &vmf->prealloc_pte);
+               else if (unlikely(pte_alloc(vma->vm_mm, vmf->pmd)))
                        return VM_FAULT_OOM;
-               }
        }
 
        /* See comment in handle_pte_fault() */