diff options
author | Paul Mundt <lethal@linux-sh.org> | 2006-12-05 21:20:53 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2006-12-05 21:20:53 -0500 |
commit | 5b67954e804465a4658dd4da8d52b87a8d1ea00c (patch) | |
tree | ecaf439834f2e6453c090700f051cd7952a6043a /include | |
parent | f36af73304555849985b1fb5c0821c1bfab3a5a0 (diff) |
sh: Fixup pte_mkhuge() build failure.
When hugetlbpage support isn't enabled, this can be bogus.
Wrap it back in _PAGE_FLAGS_HARD to avoid changes to the
base PTE when not aiming for larger sizes.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-sh/pgtable.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/asm-sh/pgtable.h b/include/asm-sh/pgtable.h index f87504abb43f..c84901dbd8e5 100644 --- a/include/asm-sh/pgtable.h +++ b/include/asm-sh/pgtable.h | |||
@@ -197,6 +197,14 @@ extern unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)]; | |||
197 | # endif | 197 | # endif |
198 | #endif | 198 | #endif |
199 | 199 | ||
200 | /* | ||
201 | * Stub out _PAGE_SZHUGE if we don't have a good definition for it, | ||
202 | * to make pte_mkhuge() happy. | ||
203 | */ | ||
204 | #ifndef _PAGE_SZHUGE | ||
205 | # define _PAGE_SZHUGE (_PAGE_FLAGS_HARD) | ||
206 | #endif | ||
207 | |||
200 | #define _PAGE_CHG_MASK \ | 208 | #define _PAGE_CHG_MASK \ |
201 | (PTE_MASK | _PAGE_ACCESSED | _PAGE_CACHABLE | _PAGE_DIRTY) | 209 | (PTE_MASK | _PAGE_ACCESSED | _PAGE_CACHABLE | _PAGE_DIRTY) |
202 | 210 | ||