Home
last modified time | relevance | path

Searched refs:req_class (Results 1 – 2 of 2) sorted by relevance

/freebsd-12-stable/sys/vm/
Dvm_page.c167 static int vm_page_reclaim_run(int req_class, int domain, u_long npages,
1759 _vm_domain_allocate(struct vm_domain *vmd, int req_class, int npages) in _vm_domain_allocate() argument
1763 if (req_class == VM_ALLOC_INTERRUPT) in _vm_domain_allocate()
1765 else if (req_class == VM_ALLOC_SYSTEM) in _vm_domain_allocate()
1796 int req_class; in vm_domain_allocate() local
1801 req_class = req & VM_ALLOC_CLASS_MASK; in vm_domain_allocate()
1802 if (curproc == pageproc && req_class != VM_ALLOC_INTERRUPT) in vm_domain_allocate()
1803 req_class = VM_ALLOC_SYSTEM; in vm_domain_allocate()
1804 return (_vm_domain_allocate(vmd, req_class, npages)); in vm_domain_allocate()
2509 vm_page_reclaim_run(int req_class, int domain, u_long npages, vm_page_t m_run, in vm_page_reclaim_run() argument
[all …]
/freebsd-12-stable/sys/mips/mips/
Dpmap.c1143 int i, req_class; in pmap_pinit() local
1148 req_class = VM_ALLOC_NORMAL; in pmap_pinit()
1149 while ((ptdpg = pmap_alloc_direct_page(NUSERPGTBLS, req_class)) == in pmap_pinit()
1151 pmap_grow_direct_page(req_class); in pmap_pinit()
1175 int req_class; in _pmap_allocpte() local
1180 req_class = VM_ALLOC_NORMAL; in _pmap_allocpte()
1181 if ((m = pmap_alloc_direct_page(ptepindex, req_class)) == NULL) { in _pmap_allocpte()
1185 pmap_grow_direct_page(req_class); in _pmap_allocpte()
1309 int i, req_class; in pmap_growkernel() local
1312 req_class = VM_ALLOC_INTERRUPT; in pmap_growkernel()
[all …]