Lines Matching refs:phys
1329 void __ref kmemleak_alloc_phys(phys_addr_t phys, size_t size, gfp_t gfp) in kmemleak_alloc_phys() argument
1331 pr_debug("%s(0x%px, %zu)\n", __func__, &phys, size); in kmemleak_alloc_phys()
1338 create_object_phys((unsigned long)phys, size, 0, gfp); in kmemleak_alloc_phys()
1349 void __ref kmemleak_free_part_phys(phys_addr_t phys, size_t size) in kmemleak_free_part_phys() argument
1351 pr_debug("%s(0x%px)\n", __func__, &phys); in kmemleak_free_part_phys()
1354 delete_object_part((unsigned long)phys, size, OBJECT_PHYS); in kmemleak_free_part_phys()
1363 void __ref kmemleak_ignore_phys(phys_addr_t phys) in kmemleak_ignore_phys() argument
1365 pr_debug("%s(0x%px)\n", __func__, &phys); in kmemleak_ignore_phys()
1368 make_black_object((unsigned long)phys, OBJECT_PHYS); in kmemleak_ignore_phys()
1711 unsigned long phys = object->pointer; in kmemleak_scan() local
1713 if (PHYS_PFN(phys) < min_low_pfn || in kmemleak_scan()
1714 PHYS_PFN(phys + object->size) > max_low_pfn) in kmemleak_scan()