Commit 33f128c6 authored by Christophe Leroy's avatar Christophe Leroy Committed by Michael Ellerman

powerpc/8xx: get rid of #ifdef CONFIG_HUGETLB_PAGE for slices

The 8xx only selects CONFIG_PPC_MM_SLICES when CONFIG_HUGETLB_PAGE
is set.
Signed-off-by: default avatarChristophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 203a1fa6
...@@ -216,10 +216,8 @@ typedef struct { ...@@ -216,10 +216,8 @@ typedef struct {
unsigned char high_slices_psize[0]; unsigned char high_slices_psize[0];
unsigned long slb_addr_limit; unsigned long slb_addr_limit;
struct slice_mask mask_base_psize; /* 4k or 16k */ struct slice_mask mask_base_psize; /* 4k or 16k */
# ifdef CONFIG_HUGETLB_PAGE
struct slice_mask mask_512k; struct slice_mask mask_512k;
struct slice_mask mask_8m; struct slice_mask mask_8m;
# endif
#endif #endif
void *pte_frag; void *pte_frag;
} mm_context_t; } mm_context_t;
...@@ -257,12 +255,11 @@ static inline void mm_ctx_set_slb_addr_limit(mm_context_t *ctx, unsigned long li ...@@ -257,12 +255,11 @@ static inline void mm_ctx_set_slb_addr_limit(mm_context_t *ctx, unsigned long li
static inline struct slice_mask *slice_mask_for_size(mm_context_t *ctx, int psize) static inline struct slice_mask *slice_mask_for_size(mm_context_t *ctx, int psize)
{ {
#ifdef CONFIG_HUGETLB_PAGE
if (psize == MMU_PAGE_512K) if (psize == MMU_PAGE_512K)
return &ctx->mask_512k; return &ctx->mask_512k;
if (psize == MMU_PAGE_8M) if (psize == MMU_PAGE_8M)
return &ctx->mask_8m; return &ctx->mask_8m;
#endif
BUG_ON(psize != mmu_virtual_psize); BUG_ON(psize != mmu_virtual_psize);
return &ctx->mask_base_psize; return &ctx->mask_base_psize;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment