Lines Matching defs:ceiling
187 unsigned long floor, unsigned long ceiling)
205 if (ceiling) {
206 ceiling &= PUD_MASK;
207 if (!ceiling)
210 if (end - 1 > ceiling - 1)
221 unsigned long floor, unsigned long ceiling)
233 free_pmd_range(tlb, pud, addr, next, floor, ceiling);
239 if (ceiling) {
240 ceiling &= P4D_MASK;
241 if (!ceiling)
244 if (end - 1 > ceiling - 1)
255 unsigned long floor, unsigned long ceiling)
267 free_pud_range(tlb, p4d, addr, next, floor, ceiling);
273 if (ceiling) {
274 ceiling &= PGDIR_MASK;
275 if (!ceiling)
278 if (end - 1 > ceiling - 1)
292 * @ceiling: highest address boundary
300 unsigned long floor, unsigned long ceiling)
316 * the address space, but end 0 and ceiling 0 refer to the top
317 * Comparisons need to use "end - 1" and "ceiling - 1" (though
320 * Wherever addr is brought up or ceiling brought down, we must
325 * Whereas we round start (addr) and ceiling down, by different
337 if (ceiling) {
338 ceiling &= PMD_MASK;
339 if (!ceiling)
342 if (end - 1 > ceiling - 1)
356 free_p4d_range(tlb, pgd, addr, next, floor, ceiling);