Searched refs:pv_entry_count (Results 1 – 7 of 7) sorted by relevance
/freebsd/sys/i386/i386/ |
H A D | pmap_base.c | 150 int pv_entry_count = 0; variable 151 SYSCTL_INT(_vm_pmap, OID_AUTO, pv_entry_count, CTLFLAG_RD, 152 &pv_entry_count, 0,
|
H A D | pmap.c | 249 extern int pv_entry_max, pv_entry_count; 2391 pv_entry_count -= freed; in pmap_pv_reclaim() 2448 pv_entry_count--; in free_pv_entry() 2506 pv_entry_count++; in get_pv_entry() 2507 if (pv_entry_count > pv_entry_high_water) in get_pv_entry() 2544 pv_entry_count--; in get_pv_entry() 2701 if (pv_entry_count < pv_entry_high_water && in pmap_try_insert_pv_entry() 2722 if ((noreclaim && pv_entry_count >= pv_entry_high_water) || in pmap_pv_insert_pde() 4917 pv_entry_count--; in __CONCAT()
|
/freebsd/sys/arm/arm/ |
H A D | pmap-v6.c | 275 static int pv_entry_count = 0, pv_entry_max = 0, pv_entry_high_water = 0; variable 2742 SYSCTL_INT(_vm_pmap, OID_AUTO, pv_entry_count, CTLFLAG_RD, &pv_entry_count, 0, 2892 pv_entry_count -= freed; in pmap_pv_reclaim() 2966 pv_entry_count--; in free_pv_entry() 3007 pv_entry_count++; in get_pv_entry() 3008 if (pv_entry_count > pv_entry_high_water) in get_pv_entry() 3045 pv_entry_count--; in get_pv_entry() 3202 if (pv_entry_count < pv_entry_high_water && in pmap_try_insert_pv_entry() 3223 if ((noreclaim && pv_entry_count >= pv_entry_high_water) || in pmap_pv_insert_pte1() 4481 pv_entry_count--; in pmap_remove_pages()
|
/freebsd/sys/riscv/riscv/ |
H A D | pmap.c | 1962 static long pv_entry_frees, pv_entry_allocs, pv_entry_count; variable 1969 SYSCTL_LONG(_vm_pmap, OID_AUTO, pv_entry_count, CTLFLAG_RD, &pv_entry_count, 0, 2006 PV_STAT(atomic_subtract_long(&pv_entry_count, 1)); in free_pv_entry() 2079 PV_STAT(atomic_add_long(&pv_entry_count, 1)); in get_pv_entry() 2108 PV_STAT(atomic_add_long(&pv_entry_count, 1)); in get_pv_entry() 2308 PV_STAT(atomic_add_long(&pv_entry_count, Ln_ENTRIES - 1)); in pmap_pv_demote_l2() 4310 PV_STAT(atomic_subtract_long(&pv_entry_count, freed)); in pmap_remove_pages()
|
/freebsd/sys/arm64/arm64/ |
H A D | pmap.c | 3105 static long pv_entry_frees, pv_entry_allocs, pv_entry_count; variable 3112 SYSCTL_LONG(_vm_pmap, OID_AUTO, pv_entry_count, CTLFLAG_RD, &pv_entry_count, 0, 3258 PV_STAT(atomic_subtract_long(&pv_entry_count, freed)); in reclaim_pv_chunk_domain() 3340 PV_STAT(atomic_subtract_long(&pv_entry_count, 1)); in free_pv_entry() 3447 PV_STAT(atomic_add_long(&pv_entry_count, 1)); in get_pv_entry() 3476 PV_STAT(atomic_add_long(&pv_entry_count, 1)); in get_pv_entry() 3640 PV_STAT(atomic_add_long(&pv_entry_count, Ln_ENTRIES - 1)); in pmap_pv_demote_l2() 7054 PV_STAT(atomic_subtract_long(&pv_entry_count, freed)); in pmap_remove_pages()
|
/freebsd/sys/powerpc/aim/ |
H A D | mmu_radix.c | 1346 PV_STAT(atomic_add_long(&pv_entry_count, NPTEPG - 1)); in pmap_pv_demote_l3e() 1494 PV_STAT(atomic_subtract_long(&pv_entry_count, freed)); in reclaim_pv_chunk() 1561 PV_STAT(atomic_subtract_long(&pv_entry_count, 1)); in free_pv_entry() 1633 PV_STAT(atomic_add_long(&pv_entry_count, 1)); in get_pv_entry() 1662 PV_STAT(atomic_add_long(&pv_entry_count, 1)); in get_pv_entry() 5604 PV_STAT(atomic_subtract_long(&pv_entry_count, freed)); in mmu_radix_remove_pages()
|
/freebsd/sys/amd64/amd64/ |
H A D | pmap.c | 5259 static COUNTER_U64_DEFINE_EARLY(pv_entry_count); 5260 SYSCTL_COUNTER_U64(_vm_pmap, OID_AUTO, pv_entry_count, CTLFLAG_RD, 5261 &pv_entry_count, "Current number of pv entries"); 5440 PV_STAT(counter_u64_add(pv_entry_count, -freed)); in reclaim_pv_chunk_domain() 5520 PV_STAT(counter_u64_add(pv_entry_count, -1)); in free_pv_entry() 5628 PV_STAT(counter_u64_add(pv_entry_count, 1)); in get_pv_entry() 5659 PV_STAT(counter_u64_add(pv_entry_count, 1)); in get_pv_entry() 5859 PV_STAT(counter_u64_add(pv_entry_count, NPTEPG - 1)); in pmap_pv_demote_pde() 8719 PV_STAT(counter_u64_add(pv_entry_count, -freed)); in pmap_remove_pages()
|