diff options
author | Hugh Dickins <hugh@veritas.com> | 2005-04-19 16:29:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org.(none)> | 2005-04-19 16:29:17 -0400 |
commit | 8f6c99c11ae63ce887686f3e51c412cc4d8d8a7d (patch) | |
tree | 4c3f29ce21f2a69f9105581c95e07de5bc5bb7aa /include/asm-generic/pgtable.h | |
parent | 3bf5ee95648c694bac4d13529563c230cd4fe5f2 (diff) |
[PATCH] freepgt: remove arch pgd_addr_end
ia64 and sparc64 hurriedly had to introduce their own variants of
pgd_addr_end, to leapfrog over the holes in their virtual address spaces which
the final clear_page_range suddenly presented when converted from pgd_index to
pgd_addr_end. But now that free_pgtables respects the vma list, those holes
are never presented, and the arch variants can go.
Signed-off-by: Hugh Dickins <hugh@veritas.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-generic/pgtable.h')
-rw-r--r-- | include/asm-generic/pgtable.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/asm-generic/pgtable.h b/include/asm-generic/pgtable.h index a3b28710d56c..1f4ec7b70270 100644 --- a/include/asm-generic/pgtable.h +++ b/include/asm-generic/pgtable.h | |||
@@ -140,17 +140,15 @@ static inline void ptep_set_wrprotect(struct mm_struct *mm, unsigned long addres | |||
140 | #endif | 140 | #endif |
141 | 141 | ||
142 | /* | 142 | /* |
143 | * When walking page tables, get the address of the next boundary, or | 143 | * When walking page tables, get the address of the next boundary, |
144 | * the end address of the range if that comes earlier. Although end might | 144 | * or the end address of the range if that comes earlier. Although no |
145 | * wrap to 0 only in clear_page_range, __boundary may wrap to 0 throughout. | 145 | * vma end wraps to 0, rounded up __boundary may wrap to 0 throughout. |
146 | */ | 146 | */ |
147 | 147 | ||
148 | #ifndef pgd_addr_end | ||
149 | #define pgd_addr_end(addr, end) \ | 148 | #define pgd_addr_end(addr, end) \ |
150 | ({ unsigned long __boundary = ((addr) + PGDIR_SIZE) & PGDIR_MASK; \ | 149 | ({ unsigned long __boundary = ((addr) + PGDIR_SIZE) & PGDIR_MASK; \ |
151 | (__boundary - 1 < (end) - 1)? __boundary: (end); \ | 150 | (__boundary - 1 < (end) - 1)? __boundary: (end); \ |
152 | }) | 151 | }) |
153 | #endif | ||
154 | 152 | ||
155 | #ifndef pud_addr_end | 153 | #ifndef pud_addr_end |
156 | #define pud_addr_end(addr, end) \ | 154 | #define pud_addr_end(addr, end) \ |