MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vm_pager_populate

Function vm_pager_populate

freebsd/vm/vm_pager.h:169–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167}
168
169static __inline int
170vm_pager_populate(vm_object_t object, vm_pindex_t pidx, int fault_type,
171 vm_prot_t max_prot, vm_pindex_t *first, vm_pindex_t *last)
172{
173
174 MPASS((object->flags & OBJ_POPULATE) != 0);
175 MPASS(pidx < object->size);
176 MPASS(blockcount_read(&object->paging_in_progress) > 0);
177 return ((*pagertab[object->type]->pgo_populate)(object, pidx,
178 fault_type, max_prot, first, last));
179}
180
181/*
182 * vm_pager_page_unswapped

Callers 1

vm_fault_populateFunction · 0.85

Calls 1

blockcount_readFunction · 0.85

Tested by

no test coverage detected