Searched refs:pvzone (Results 1 - 2 of 2) sorted by last modified time

/freebsd-11-stable/sys/arm/arm/
H A Dpmap-v4.c399 static uma_zone_t pvzone = NULL; variable
1752 pvzone = uma_zcreate("PV ENTRY", sizeof (struct pv_entry), NULL, NULL,
1756 uma_zone_reserve_kva(pvzone, pv_entry_max);
2685 * The existence test for the pvzone is used to delay the recording of
2690 if (pvzone != NULL && (m = vm_phys_paddr_to_vm_page(pa)) != NULL) {
2798 * before the pvzone is initialized.
2802 if (pvzone != NULL && (m = vm_phys_paddr_to_vm_page(pa)) &&
3807 uma_zfree(pvzone, pv);
3825 ret_value = uma_zalloc(pvzone, M_NOWAIT);
/freebsd-11-stable/sys/powerpc/booke/
H A Dpmap.c214 static uma_zone_t pvzone; variable
784 pv = uma_zalloc(pvzone, M_NOWAIT);
795 uma_zfree(pvzone, pve);
1471 pvzone = uma_zcreate("PV ENTRY", sizeof(struct pv_entry), NULL, NULL,
1480 uma_zone_reserve_kva(pvzone, pv_entry_max);
1482 /* Pre-fill pvzone with initial number of pv entries. */
1483 uma_prealloc(pvzone, PV_ENTRY_ZONE_MIN);

Completed in 177 milliseconds