2 * address space "slices" (meta-segments) support
4 * Copyright (C) 2007 Benjamin Herrenschmidt, IBM Corporation.
6 * Based on hugetlb implementation
8 * Copyright (C) 2003 David Gibson, IBM Corporation.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <linux/kernel.h>
29 #include <linux/pagemap.h>
30 #include <linux/err.h>
31 #include <linux/spinlock.h>
32 #include <linux/export.h>
33 #include <linux/hugetlb.h>
34 #include <linux/sched/mm.h>
35 #include <linux/security.h>
38 #include <asm/copro.h>
39 #include <asm/hugetlb.h>
40 #include <asm/mmu_context.h>
42 static DEFINE_SPINLOCK(slice_convert_lock);
47 static void slice_print_mask(const char *label, const struct slice_mask *mask)
51 pr_devel("%s low_slice: %*pbl\n", label,
52 (int)SLICE_NUM_LOW, &mask->low_slices);
53 pr_devel("%s high_slice: %*pbl\n", label,
54 (int)SLICE_NUM_HIGH, mask->high_slices);
57 #define slice_dbg(fmt...) do { if (_slice_debug) pr_devel(fmt); } while (0)
61 static void slice_print_mask(const char *label, const struct slice_mask *mask) {}
62 #define slice_dbg(fmt...)
66 static inline bool slice_addr_is_low(unsigned long addr)
70 return tmp < SLICE_LOW_TOP;
73 static void slice_range_to_mask(unsigned long start, unsigned long len,
74 struct slice_mask *ret)
76 unsigned long end = start + len - 1;
80 bitmap_zero(ret->high_slices, SLICE_NUM_HIGH);
82 if (slice_addr_is_low(start)) {
83 unsigned long mend = min(end,
84 (unsigned long)(SLICE_LOW_TOP - 1));
86 ret->low_slices = (1u << (GET_LOW_SLICE_INDEX(mend) + 1))
87 - (1u << GET_LOW_SLICE_INDEX(start));
90 if (SLICE_NUM_HIGH && !slice_addr_is_low(end)) {
91 unsigned long start_index = GET_HIGH_SLICE_INDEX(start);
92 unsigned long align_end = ALIGN(end, (1UL << SLICE_HIGH_SHIFT));
93 unsigned long count = GET_HIGH_SLICE_INDEX(align_end) - start_index;
95 bitmap_set(ret->high_slices, start_index, count);
99 static int slice_area_is_free(struct mm_struct *mm, unsigned long addr,
102 struct vm_area_struct *vma;
104 if ((mm->context.slb_addr_limit - len) < addr)
106 vma = find_vma(mm, addr);
107 return (!vma || (addr + len) <= vm_start_gap(vma));
110 static int slice_low_has_vma(struct mm_struct *mm, unsigned long slice)
112 return !slice_area_is_free(mm, slice << SLICE_LOW_SHIFT,
113 1ul << SLICE_LOW_SHIFT);
116 static int slice_high_has_vma(struct mm_struct *mm, unsigned long slice)
118 unsigned long start = slice << SLICE_HIGH_SHIFT;
119 unsigned long end = start + (1ul << SLICE_HIGH_SHIFT);
122 /* Hack, so that each addresses is controlled by exactly one
123 * of the high or low area bitmaps, the first high area starts
126 start = SLICE_LOW_TOP;
129 return !slice_area_is_free(mm, start, end - start);
132 static void slice_mask_for_free(struct mm_struct *mm, struct slice_mask *ret,
133 unsigned long high_limit)
139 bitmap_zero(ret->high_slices, SLICE_NUM_HIGH);
141 for (i = 0; i < SLICE_NUM_LOW; i++)
142 if (!slice_low_has_vma(mm, i))
143 ret->low_slices |= 1u << i;
145 if (slice_addr_is_low(high_limit - 1))
148 for (i = 0; i < GET_HIGH_SLICE_INDEX(high_limit); i++)
149 if (!slice_high_has_vma(mm, i))
150 __set_bit(i, ret->high_slices);
153 #ifdef CONFIG_PPC_BOOK3S_64
154 static struct slice_mask *slice_mask_for_size(struct mm_struct *mm, int psize)
156 #ifdef CONFIG_PPC_64K_PAGES
157 if (psize == MMU_PAGE_64K)
158 return &mm->context.mask_64k;
160 if (psize == MMU_PAGE_4K)
161 return &mm->context.mask_4k;
162 #ifdef CONFIG_HUGETLB_PAGE
163 if (psize == MMU_PAGE_16M)
164 return &mm->context.mask_16m;
165 if (psize == MMU_PAGE_16G)
166 return &mm->context.mask_16g;
170 #elif defined(CONFIG_PPC_8xx)
171 static struct slice_mask *slice_mask_for_size(struct mm_struct *mm, int psize)
173 if (psize == mmu_virtual_psize)
174 return &mm->context.mask_base_psize;
175 #ifdef CONFIG_HUGETLB_PAGE
176 if (psize == MMU_PAGE_512K)
177 return &mm->context.mask_512k;
178 if (psize == MMU_PAGE_8M)
179 return &mm->context.mask_8m;
184 #error "Must define the slice masks for page sizes supported by the platform"
187 static bool slice_check_range_fits(struct mm_struct *mm,
188 const struct slice_mask *available,
189 unsigned long start, unsigned long len)
191 unsigned long end = start + len - 1;
194 if (slice_addr_is_low(start)) {
195 unsigned long mend = min(end,
196 (unsigned long)(SLICE_LOW_TOP - 1));
198 low_slices = (1u << (GET_LOW_SLICE_INDEX(mend) + 1))
199 - (1u << GET_LOW_SLICE_INDEX(start));
201 if ((low_slices & available->low_slices) != low_slices)
204 if (SLICE_NUM_HIGH && !slice_addr_is_low(end)) {
205 unsigned long start_index = GET_HIGH_SLICE_INDEX(start);
206 unsigned long align_end = ALIGN(end, (1UL << SLICE_HIGH_SHIFT));
207 unsigned long count = GET_HIGH_SLICE_INDEX(align_end) - start_index;
210 for (i = start_index; i < start_index + count; i++) {
211 if (!test_bit(i, available->high_slices))
219 static void slice_flush_segments(void *parm)
222 struct mm_struct *mm = parm;
225 if (mm != current->active_mm)
228 copy_mm_to_paca(current->active_mm);
230 local_irq_save(flags);
231 slb_flush_and_restore_bolted();
232 local_irq_restore(flags);
236 static void slice_convert(struct mm_struct *mm,
237 const struct slice_mask *mask, int psize)
239 int index, mask_index;
240 /* Write the new slice psize bits */
241 unsigned char *hpsizes, *lpsizes;
242 struct slice_mask *psize_mask, *old_mask;
243 unsigned long i, flags;
246 slice_dbg("slice_convert(mm=%p, psize=%d)\n", mm, psize);
247 slice_print_mask(" mask", mask);
249 psize_mask = slice_mask_for_size(mm, psize);
251 /* We need to use a spinlock here to protect against
252 * concurrent 64k -> 4k demotion ...
254 spin_lock_irqsave(&slice_convert_lock, flags);
256 lpsizes = mm->context.low_slices_psize;
257 for (i = 0; i < SLICE_NUM_LOW; i++) {
258 if (!(mask->low_slices & (1u << i)))
261 mask_index = i & 0x1;
264 /* Update the slice_mask */
265 old_psize = (lpsizes[index] >> (mask_index * 4)) & 0xf;
266 old_mask = slice_mask_for_size(mm, old_psize);
267 old_mask->low_slices &= ~(1u << i);
268 psize_mask->low_slices |= 1u << i;
270 /* Update the sizes array */
271 lpsizes[index] = (lpsizes[index] & ~(0xf << (mask_index * 4))) |
272 (((unsigned long)psize) << (mask_index * 4));
275 hpsizes = mm->context.high_slices_psize;
276 for (i = 0; i < GET_HIGH_SLICE_INDEX(mm->context.slb_addr_limit); i++) {
277 if (!test_bit(i, mask->high_slices))
280 mask_index = i & 0x1;
283 /* Update the slice_mask */
284 old_psize = (hpsizes[index] >> (mask_index * 4)) & 0xf;
285 old_mask = slice_mask_for_size(mm, old_psize);
286 __clear_bit(i, old_mask->high_slices);
287 __set_bit(i, psize_mask->high_slices);
289 /* Update the sizes array */
290 hpsizes[index] = (hpsizes[index] & ~(0xf << (mask_index * 4))) |
291 (((unsigned long)psize) << (mask_index * 4));
294 slice_dbg(" lsps=%lx, hsps=%lx\n",
295 (unsigned long)mm->context.low_slices_psize,
296 (unsigned long)mm->context.high_slices_psize);
298 spin_unlock_irqrestore(&slice_convert_lock, flags);
300 copro_flush_all_slbs(mm);
304 * Compute which slice addr is part of;
305 * set *boundary_addr to the start or end boundary of that slice
306 * (depending on 'end' parameter);
307 * return boolean indicating if the slice is marked as available in the
308 * 'available' slice_mark.
310 static bool slice_scan_available(unsigned long addr,
311 const struct slice_mask *available,
312 int end, unsigned long *boundary_addr)
315 if (slice_addr_is_low(addr)) {
316 slice = GET_LOW_SLICE_INDEX(addr);
317 *boundary_addr = (slice + end) << SLICE_LOW_SHIFT;
318 return !!(available->low_slices & (1u << slice));
320 slice = GET_HIGH_SLICE_INDEX(addr);
321 *boundary_addr = (slice + end) ?
322 ((slice + end) << SLICE_HIGH_SHIFT) : SLICE_LOW_TOP;
323 return !!test_bit(slice, available->high_slices);
327 static unsigned long slice_find_area_bottomup(struct mm_struct *mm,
329 const struct slice_mask *available,
330 int psize, unsigned long high_limit)
332 int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT);
333 unsigned long addr, found, next_end;
334 struct vm_unmapped_area_info info;
338 info.align_mask = PAGE_MASK & ((1ul << pshift) - 1);
339 info.align_offset = 0;
341 addr = TASK_UNMAPPED_BASE;
343 * Check till the allow max value for this mmap request
345 while (addr < high_limit) {
346 info.low_limit = addr;
347 if (!slice_scan_available(addr, available, 1, &addr))
352 * At this point [info.low_limit; addr) covers
353 * available slices only and ends at a slice boundary.
354 * Check if we need to reduce the range, or if we can
355 * extend it to cover the next available slice.
357 if (addr >= high_limit)
359 else if (slice_scan_available(addr, available, 1, &next_end)) {
363 info.high_limit = addr;
365 found = vm_unmapped_area(&info);
366 if (!(found & ~PAGE_MASK))
373 static unsigned long slice_find_area_topdown(struct mm_struct *mm,
375 const struct slice_mask *available,
376 int psize, unsigned long high_limit)
378 int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT);
379 unsigned long addr, found, prev;
380 struct vm_unmapped_area_info info;
381 unsigned long min_addr = max(PAGE_SIZE, mmap_min_addr);
383 info.flags = VM_UNMAPPED_AREA_TOPDOWN;
385 info.align_mask = PAGE_MASK & ((1ul << pshift) - 1);
386 info.align_offset = 0;
388 addr = mm->mmap_base;
390 * If we are trying to allocate above DEFAULT_MAP_WINDOW
391 * Add the different to the mmap_base.
392 * Only for that request for which high_limit is above
393 * DEFAULT_MAP_WINDOW we should apply this.
395 if (high_limit > DEFAULT_MAP_WINDOW)
396 addr += mm->context.slb_addr_limit - DEFAULT_MAP_WINDOW;
398 while (addr > min_addr) {
399 info.high_limit = addr;
400 if (!slice_scan_available(addr - 1, available, 0, &addr))
405 * At this point [addr; info.high_limit) covers
406 * available slices only and starts at a slice boundary.
407 * Check if we need to reduce the range, or if we can
408 * extend it to cover the previous available slice.
412 else if (slice_scan_available(addr - 1, available, 0, &prev)) {
416 info.low_limit = addr;
418 found = vm_unmapped_area(&info);
419 if (!(found & ~PAGE_MASK))
424 * A failed mmap() very likely causes application failure,
425 * so fall back to the bottom-up function here. This scenario
426 * can happen with large stack limits and large mmap()
429 return slice_find_area_bottomup(mm, len, available, psize, high_limit);
433 static unsigned long slice_find_area(struct mm_struct *mm, unsigned long len,
434 const struct slice_mask *mask, int psize,
435 int topdown, unsigned long high_limit)
438 return slice_find_area_topdown(mm, len, mask, psize, high_limit);
440 return slice_find_area_bottomup(mm, len, mask, psize, high_limit);
443 static inline void slice_copy_mask(struct slice_mask *dst,
444 const struct slice_mask *src)
446 dst->low_slices = src->low_slices;
449 bitmap_copy(dst->high_slices, src->high_slices, SLICE_NUM_HIGH);
452 static inline void slice_or_mask(struct slice_mask *dst,
453 const struct slice_mask *src1,
454 const struct slice_mask *src2)
456 dst->low_slices = src1->low_slices | src2->low_slices;
459 bitmap_or(dst->high_slices, src1->high_slices, src2->high_slices, SLICE_NUM_HIGH);
462 static inline void slice_andnot_mask(struct slice_mask *dst,
463 const struct slice_mask *src1,
464 const struct slice_mask *src2)
466 dst->low_slices = src1->low_slices & ~src2->low_slices;
469 bitmap_andnot(dst->high_slices, src1->high_slices, src2->high_slices, SLICE_NUM_HIGH);
472 #ifdef CONFIG_PPC_64K_PAGES
473 #define MMU_PAGE_BASE MMU_PAGE_64K
475 #define MMU_PAGE_BASE MMU_PAGE_4K
478 unsigned long slice_get_unmapped_area(unsigned long addr, unsigned long len,
479 unsigned long flags, unsigned int psize,
482 struct slice_mask good_mask;
483 struct slice_mask potential_mask;
484 const struct slice_mask *maskp;
485 const struct slice_mask *compat_maskp = NULL;
486 int fixed = (flags & MAP_FIXED);
487 int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT);
488 unsigned long page_size = 1UL << pshift;
489 struct mm_struct *mm = current->mm;
490 unsigned long newaddr;
491 unsigned long high_limit;
493 high_limit = DEFAULT_MAP_WINDOW;
494 if (addr >= high_limit || (fixed && (addr + len > high_limit)))
495 high_limit = TASK_SIZE;
497 if (len > high_limit)
499 if (len & (page_size - 1))
502 if (addr & (page_size - 1))
504 if (addr > high_limit - len)
508 if (high_limit > mm->context.slb_addr_limit) {
510 * Increasing the slb_addr_limit does not require
511 * slice mask cache to be recalculated because it should
512 * be already initialised beyond the old address limit.
514 mm->context.slb_addr_limit = high_limit;
516 on_each_cpu(slice_flush_segments, mm, 1);
520 BUG_ON(mm->task_size == 0);
521 BUG_ON(mm->context.slb_addr_limit == 0);
522 VM_BUG_ON(radix_enabled());
524 slice_dbg("slice_get_unmapped_area(mm=%p, psize=%d...\n", mm, psize);
525 slice_dbg(" addr=%lx, len=%lx, flags=%lx, topdown=%d\n",
526 addr, len, flags, topdown);
528 /* If hint, make sure it matches our alignment restrictions */
529 if (!fixed && addr) {
530 addr = _ALIGN_UP(addr, page_size);
531 slice_dbg(" aligned addr=%lx\n", addr);
532 /* Ignore hint if it's too large or overlaps a VMA */
533 if (addr > high_limit - len || addr < mmap_min_addr ||
534 !slice_area_is_free(mm, addr, len))
538 /* First make up a "good" mask of slices that have the right size
541 maskp = slice_mask_for_size(mm, psize);
544 * Here "good" means slices that are already the right page size,
545 * "compat" means slices that have a compatible page size (i.e.
546 * 4k in a 64k pagesize kernel), and "free" means slices without
550 * check if fits in good | compat => OK
551 * check if fits in good | compat | free => convert free
554 * check if hint fits in good => OK
555 * check if hint fits in good | free => convert free
557 * search in good, found => OK
558 * search in good | free, found => convert free
559 * search in good | compat | free, found => convert free.
563 * If we support combo pages, we can allow 64k pages in 4k slices
564 * The mask copies could be avoided in most cases here if we had
565 * a pointer to good mask for the next code to use.
567 if (IS_ENABLED(CONFIG_PPC_64K_PAGES) && psize == MMU_PAGE_64K) {
568 compat_maskp = slice_mask_for_size(mm, MMU_PAGE_4K);
570 slice_or_mask(&good_mask, maskp, compat_maskp);
572 slice_copy_mask(&good_mask, maskp);
574 slice_copy_mask(&good_mask, maskp);
577 slice_print_mask(" good_mask", &good_mask);
579 slice_print_mask(" compat_mask", compat_maskp);
581 /* First check hint if it's valid or if we have MAP_FIXED */
582 if (addr != 0 || fixed) {
583 /* Check if we fit in the good mask. If we do, we just return,
586 if (slice_check_range_fits(mm, &good_mask, addr, len)) {
587 slice_dbg(" fits good !\n");
592 /* Now let's see if we can find something in the existing
593 * slices for that size
595 newaddr = slice_find_area(mm, len, &good_mask,
596 psize, topdown, high_limit);
597 if (newaddr != -ENOMEM) {
598 /* Found within the good mask, we don't have to setup,
599 * we thus return directly
601 slice_dbg(" found area at 0x%lx\n", newaddr);
606 * We don't fit in the good mask, check what other slices are
607 * empty and thus can be converted
609 slice_mask_for_free(mm, &potential_mask, high_limit);
610 slice_or_mask(&potential_mask, &potential_mask, &good_mask);
611 slice_print_mask(" potential", &potential_mask);
613 if (addr != 0 || fixed) {
614 if (slice_check_range_fits(mm, &potential_mask, addr, len)) {
615 slice_dbg(" fits potential !\n");
621 /* If we have MAP_FIXED and failed the above steps, then error out */
625 slice_dbg(" search...\n");
627 /* If we had a hint that didn't work out, see if we can fit
628 * anywhere in the good area.
631 newaddr = slice_find_area(mm, len, &good_mask,
632 psize, topdown, high_limit);
633 if (newaddr != -ENOMEM) {
634 slice_dbg(" found area at 0x%lx\n", newaddr);
639 /* Now let's see if we can find something in the existing slices
640 * for that size plus free slices
642 newaddr = slice_find_area(mm, len, &potential_mask,
643 psize, topdown, high_limit);
645 #ifdef CONFIG_PPC_64K_PAGES
646 if (newaddr == -ENOMEM && psize == MMU_PAGE_64K) {
647 /* retry the search with 4k-page slices included */
648 slice_or_mask(&potential_mask, &potential_mask, compat_maskp);
649 newaddr = slice_find_area(mm, len, &potential_mask,
650 psize, topdown, high_limit);
654 if (newaddr == -ENOMEM)
657 slice_range_to_mask(newaddr, len, &potential_mask);
658 slice_dbg(" found potential area at 0x%lx\n", newaddr);
659 slice_print_mask(" mask", &potential_mask);
663 * Try to allocate the context before we do slice convert
664 * so that we handle the context allocation failure gracefully.
666 if (need_extra_context(mm, newaddr)) {
667 if (alloc_extended_context(mm, newaddr) < 0)
671 slice_andnot_mask(&potential_mask, &potential_mask, &good_mask);
672 if (compat_maskp && !fixed)
673 slice_andnot_mask(&potential_mask, &potential_mask, compat_maskp);
674 if (potential_mask.low_slices ||
676 !bitmap_empty(potential_mask.high_slices, SLICE_NUM_HIGH))) {
677 slice_convert(mm, &potential_mask, psize);
678 if (psize > MMU_PAGE_BASE)
679 on_each_cpu(slice_flush_segments, mm, 1);
684 if (need_extra_context(mm, newaddr)) {
685 if (alloc_extended_context(mm, newaddr) < 0)
690 EXPORT_SYMBOL_GPL(slice_get_unmapped_area);
692 unsigned long arch_get_unmapped_area(struct file *filp,
698 return slice_get_unmapped_area(addr, len, flags,
699 current->mm->context.user_psize, 0);
702 unsigned long arch_get_unmapped_area_topdown(struct file *filp,
703 const unsigned long addr0,
704 const unsigned long len,
705 const unsigned long pgoff,
706 const unsigned long flags)
708 return slice_get_unmapped_area(addr0, len, flags,
709 current->mm->context.user_psize, 1);
712 unsigned int get_slice_psize(struct mm_struct *mm, unsigned long addr)
714 unsigned char *psizes;
715 int index, mask_index;
717 VM_BUG_ON(radix_enabled());
719 if (slice_addr_is_low(addr)) {
720 psizes = mm->context.low_slices_psize;
721 index = GET_LOW_SLICE_INDEX(addr);
723 psizes = mm->context.high_slices_psize;
724 index = GET_HIGH_SLICE_INDEX(addr);
726 mask_index = index & 0x1;
727 return (psizes[index >> 1] >> (mask_index * 4)) & 0xf;
729 EXPORT_SYMBOL_GPL(get_slice_psize);
731 void slice_init_new_context_exec(struct mm_struct *mm)
733 unsigned char *hpsizes, *lpsizes;
734 struct slice_mask *mask;
735 unsigned int psize = mmu_virtual_psize;
737 slice_dbg("slice_init_new_context_exec(mm=%p)\n", mm);
740 * In the case of exec, use the default limit. In the
741 * case of fork it is just inherited from the mm being
745 mm->context.slb_addr_limit = DEFAULT_MAP_WINDOW_USER64;
747 mm->context.slb_addr_limit = DEFAULT_MAP_WINDOW;
750 mm->context.user_psize = psize;
753 * Set all slice psizes to the default.
755 lpsizes = mm->context.low_slices_psize;
756 memset(lpsizes, (psize << 4) | psize, SLICE_NUM_LOW >> 1);
758 hpsizes = mm->context.high_slices_psize;
759 memset(hpsizes, (psize << 4) | psize, SLICE_NUM_HIGH >> 1);
762 * Slice mask cache starts zeroed, fill the default size cache.
764 mask = slice_mask_for_size(mm, psize);
765 mask->low_slices = ~0UL;
767 bitmap_fill(mask->high_slices, SLICE_NUM_HIGH);
770 #ifdef CONFIG_PPC_BOOK3S_64
771 void slice_setup_new_exec(void)
773 struct mm_struct *mm = current->mm;
775 slice_dbg("slice_setup_new_exec(mm=%p)\n", mm);
777 if (!is_32bit_task())
780 mm->context.slb_addr_limit = DEFAULT_MAP_WINDOW;
784 void slice_set_range_psize(struct mm_struct *mm, unsigned long start,
785 unsigned long len, unsigned int psize)
787 struct slice_mask mask;
789 VM_BUG_ON(radix_enabled());
791 slice_range_to_mask(start, len, &mask);
792 slice_convert(mm, &mask, psize);
795 #ifdef CONFIG_HUGETLB_PAGE
797 * is_hugepage_only_range() is used by generic code to verify whether
798 * a normal mmap mapping (non hugetlbfs) is valid on a given area.
800 * until the generic code provides a more generic hook and/or starts
801 * calling arch get_unmapped_area for MAP_FIXED (which our implementation
802 * here knows how to deal with), we hijack it to keep standard mappings
805 * because of that generic code limitation, MAP_FIXED mapping cannot
806 * "convert" back a slice with no VMAs to the standard page size, only
807 * get_unmapped_area() can. It would be possible to fix it here but I
808 * prefer working on fixing the generic code instead.
810 * WARNING: This will not work if hugetlbfs isn't enabled since the
811 * generic code will redefine that function as 0 in that. This is ok
812 * for now as we only use slices with hugetlbfs enabled. This should
813 * be fixed as the generic code gets fixed.
815 int slice_is_hugepage_only_range(struct mm_struct *mm, unsigned long addr,
818 const struct slice_mask *maskp;
819 unsigned int psize = mm->context.user_psize;
821 VM_BUG_ON(radix_enabled());
823 maskp = slice_mask_for_size(mm, psize);
824 #ifdef CONFIG_PPC_64K_PAGES
825 /* We need to account for 4k slices too */
826 if (psize == MMU_PAGE_64K) {
827 const struct slice_mask *compat_maskp;
828 struct slice_mask available;
830 compat_maskp = slice_mask_for_size(mm, MMU_PAGE_4K);
831 slice_or_mask(&available, maskp, compat_maskp);
832 return !slice_check_range_fits(mm, &available, addr, len);
836 return !slice_check_range_fits(mm, maskp, addr, len);