diff options
Diffstat (limited to 'include/asm-powerpc')
-rw-r--r-- | include/asm-powerpc/page_64.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-powerpc/page_64.h b/include/asm-powerpc/page_64.h index 1e6e7846824f..58a3dd9a79ec 100644 --- a/include/asm-powerpc/page_64.h +++ b/include/asm-powerpc/page_64.h | |||
@@ -135,9 +135,9 @@ extern unsigned int HPAGE_SHIFT; | |||
135 | 135 | ||
136 | #define in_hugepage_area(context, addr) \ | 136 | #define in_hugepage_area(context, addr) \ |
137 | (cpu_has_feature(CPU_FTR_16M_PAGE) && \ | 137 | (cpu_has_feature(CPU_FTR_16M_PAGE) && \ |
138 | ( ((1 << GET_HTLB_AREA(addr)) & (context).high_htlb_areas) || \ | 138 | ( ( (addr) >= 0x100000000UL) \ |
139 | ( ((addr) < 0x100000000L) && \ | 139 | ? ((1 << GET_HTLB_AREA(addr)) & (context).high_htlb_areas) \ |
140 | ((1 << GET_ESID(addr)) & (context).low_htlb_areas) ) ) ) | 140 | : ((1 << GET_ESID(addr)) & (context).low_htlb_areas) ) ) |
141 | 141 | ||
142 | #else /* !CONFIG_HUGETLB_PAGE */ | 142 | #else /* !CONFIG_HUGETLB_PAGE */ |
143 | 143 | ||