diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2007-07-17 07:03:03 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 13:22:59 -0400 |
commit | f0e47c229b489e37ba7e4159ef7f9cf9ccd44e19 (patch) | |
tree | 52ec70d775bb7f7eafa6863829646ee49cbf427f /include/asm-ia64 | |
parent | 5ee403f584a67fb8725cca4d55218925b9295528 (diff) |
mm: remove ptep_establish()
The last user of ptep_establish in mm/ is long gone. Remove the architecture
primitive as well.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Hugh Dickins <hugh@veritas.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-ia64')
-rw-r--r-- | include/asm-ia64/pgtable.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/asm-ia64/pgtable.h b/include/asm-ia64/pgtable.h index f923d811c421..47642e06b920 100644 --- a/include/asm-ia64/pgtable.h +++ b/include/asm-ia64/pgtable.h | |||
@@ -543,8 +543,10 @@ extern void lazy_mmu_prot_update (pte_t pte); | |||
543 | # define ptep_set_access_flags(__vma, __addr, __ptep, __entry, __safely_writable) \ | 543 | # define ptep_set_access_flags(__vma, __addr, __ptep, __entry, __safely_writable) \ |
544 | ({ \ | 544 | ({ \ |
545 | int __changed = !pte_same(*(__ptep), __entry); \ | 545 | int __changed = !pte_same(*(__ptep), __entry); \ |
546 | if (__changed) \ | 546 | if (__changed) { \ |
547 | ptep_establish(__vma, __addr, __ptep, __entry); \ | 547 | set_pte_at((__vma)->vm_mm, (__addr), __ptep, __entry); \ |
548 | flush_tlb_page(__vma, __addr); \ | ||
549 | } \ | ||
548 | __changed; \ | 550 | __changed; \ |
549 | }) | 551 | }) |
550 | #endif | 552 | #endif |