/Linux-v5.10/drivers/gpu/drm/i915/selftests/ |
D | i915_gem_gtt.c | 222 u64 hole_start, u64 hole_end, in lowlevel_hole() argument 234 for (size = 12; (hole_end - hole_start) >> size; size++) { in lowlevel_hole() 240 hole_size = (hole_end - hole_start) >> size; in lowlevel_hole() 246 __func__, hole_start, hole_end, size, hole_size); in lowlevel_hole() 262 GEM_BUG_ON(hole_start + count * BIT_ULL(size) > hole_end); in lowlevel_hole() 293 hole_end = hole_start; /* quit */ in lowlevel_hole() 366 u64 hole_start, u64 hole_end, in fill_hole() argument 369 const u64 hole_size = hole_end - hole_start; in fill_hole() 393 { "top-down", hole_end, -1, }, in fill_hole() 442 if (offset + obj->base.size > hole_end) in fill_hole() [all …]
|
/Linux-v5.10/drivers/gpu/drm/ |
D | drm_mm.c | 456 u64 hole_start, hole_end; in drm_mm_reserve_node() local 470 adj_end = hole_end = hole_start + hole->hole_size; in drm_mm_reserve_node() 488 if (end < hole_end) in drm_mm_reserve_node() 547 u64 hole_end = hole_start + hole->hole_size; in drm_mm_insert_node_in_range() local 554 if (mode == DRM_MM_INSERT_HIGH && hole_end <= range_start) in drm_mm_insert_node_in_range() 558 col_end = hole_end; in drm_mm_insert_node_in_range() 606 if (adj_start + size < hole_end) in drm_mm_insert_node_in_range() 788 u64 hole_start, hole_end; in drm_mm_scan_add_block() local 808 hole_end = __drm_mm_hole_node_end(hole); in drm_mm_scan_add_block() 811 col_end = hole_end; in drm_mm_scan_add_block() [all …]
|
/Linux-v5.10/arch/sparc/kernel/ |
D | adi_64.c | 163 unsigned long end_addr, hole_start, hole_end; in alloc_tag_store() local 168 hole_end = ULONG_MAX; in alloc_tag_store() 195 (tag_desc->start < hole_end)) in alloc_tag_store() 196 hole_end = tag_desc->start; in alloc_tag_store() 251 if (hole_end < end_addr) { in alloc_tag_store() 258 end_addr = hole_end - 1; in alloc_tag_store()
|
/Linux-v5.10/kernel/ |
D | kexec_core.c | 440 unsigned long hole_start, hole_end, size; in kimage_alloc_crash_control_pages() local 446 hole_end = hole_start + size - 1; in kimage_alloc_crash_control_pages() 447 while (hole_end <= crashk_res.end) { in kimage_alloc_crash_control_pages() 452 if (hole_end > KEXEC_CRASH_CONTROL_MEMORY_LIMIT) in kimage_alloc_crash_control_pages() 460 if ((hole_end >= mstart) && (hole_start <= mend)) { in kimage_alloc_crash_control_pages() 463 hole_end = hole_start + size - 1; in kimage_alloc_crash_control_pages() 470 image->control_page = hole_end; in kimage_alloc_crash_control_pages()
|
/Linux-v5.10/include/drm/ |
D | drm_mm.h | 392 #define drm_mm_for_each_hole(pos, mm, hole_start, hole_end) \ argument 397 hole_end = hole_start + pos->hole_size, \
|
/Linux-v5.10/drivers/gpu/drm/selftests/ |
D | test-drm_mm.c | 57 u64 hole_start, hole_end; in assert_no_holes() local 61 drm_mm_for_each_hole(hole, mm, hole_start, hole_end) in assert_no_holes() 81 u64 hole_start, hole_end; in assert_one_hole() local 89 drm_mm_for_each_hole(hole, mm, hole_start, hole_end) { in assert_one_hole() 90 if (start != hole_start || end != hole_end) { in assert_one_hole() 93 hole_start, hole_end, in assert_one_hole() 1269 u64 hole_start, hole_end; in show_holes() local 1272 drm_mm_for_each_hole(hole, mm, hole_start, hole_end) { in show_holes() 1288 hole_start, hole_end, hole_end - hole_start, in show_holes()
|
/Linux-v5.10/fs/hugetlbfs/ |
D | inode.c | 592 loff_t hole_start, hole_end; in hugetlbfs_punch_hole() local 599 hole_end = round_down(offset + len, hpage_size); in hugetlbfs_punch_hole() 601 if (hole_end > hole_start) { in hugetlbfs_punch_hole() 617 hole_end >> PAGE_SHIFT); in hugetlbfs_punch_hole() 619 remove_inode_hugepages(inode, hole_start, hole_end); in hugetlbfs_punch_hole()
|
/Linux-v5.10/drivers/gpu/drm/i915/gt/ |
D | intel_ggtt.c | 510 unsigned long hole_start, hole_end; in init_ggtt() local 550 drm_mm_for_each_hole(entry, &ggtt->vm.mm, hole_start, hole_end) { in init_ggtt() 553 hole_start, hole_end); in init_ggtt() 555 hole_end - hole_start); in init_ggtt()
|
/Linux-v5.10/fs/proc/ |
D | task_mmu.c | 1327 unsigned long hole_end; in pagemap_pte_hole() local 1330 hole_end = min(end, vma->vm_start); in pagemap_pte_hole() 1332 hole_end = end; in pagemap_pte_hole() 1334 for (; addr < hole_end; addr += PAGE_SIZE) { in pagemap_pte_hole()
|
/Linux-v5.10/fs/btrfs/ |
D | volumes.c | 1428 u64 hole_end = *hole_start + *hole_size; in dev_extent_hole_check() local 1435 if (hole_end >= *hole_start) in dev_extent_hole_check() 1436 *hole_size = hole_end - *hole_start; in dev_extent_hole_check()
|
D | inode.c | 6849 const u64 hole_end = extent_map_end(hole_em); in btrfs_get_extent_fiemap() local 6865 if (hole_end <= start || hole_em->start > end) { in btrfs_get_extent_fiemap() 6870 hole_len = hole_end - hole_start; in btrfs_get_extent_fiemap()
|