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

Function vm_pager_put_pages

freebsd/vm/vm_pager.h:131–142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129vm_object_t vm_pager_object_lookup(struct pagerlst *, void *);
130
131static __inline void
132vm_pager_put_pages(
133 vm_object_t object,
134 vm_page_t *m,
135 int count,
136 int flags,
137 int *rtvals
138) {
139 VM_OBJECT_ASSERT_WLOCKED(object);
140 (*pagertab[object->type]->pgo_putpages)
141 (object, m, count, flags, rtvals);
142}
143
144/*
145 * vm_pager_haspage

Callers 1

vm_pageout_flushFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected