Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 14785
b: refs/heads/master
c: 49c91fb
h: refs/heads/master
i:
  14783: 2c090f6
v: v3
  • Loading branch information
Trond Myklebust authored and Linus Torvalds committed Nov 30, 2005
1 parent 4a89312 commit 173e1ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2f12c74f0cfdc93e1d47ac70766e837ef29472fd
refs/heads/master: 49c91fb01ff3948285608c65754b3ffbf57d50f2
4 changes: 2 additions & 2 deletions trunk/mm/memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 173e1ba

Please sign in to comment.