[PATCH] VM: Fix typos in get_locked_pte
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
2f12c74f0c
commit
49c91fb01f
1 changed files with 2 additions and 2 deletions
|
@ -1146,12 +1146,12 @@ int zeromap_page_range(struct vm_area_struct *vma,
|
|||
return err;
|
||||
}
|
||||
|
||||
pte_t *get_locked_pte(struct mm_struct *mm, unsigned long addr, spinlock_t **ptl)
|
||||
pte_t * fastcall get_locked_pte(struct mm_struct *mm, unsigned long addr, spinlock_t **ptl)
|
||||
{
|
||||
pgd_t * pgd = pgd_offset(mm, addr);
|
||||
pud_t * pud = pud_alloc(mm, pgd, addr);
|
||||
if (pud) {
|
||||
pmd_t * pmd = pmd_alloc(mm, pgd, addr);
|
||||
pmd_t * pmd = pmd_alloc(mm, pud, addr);
|
||||
if (pmd)
|
||||
return pte_alloc_map_lock(mm, pmd, addr, ptl);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue