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

Function vnode_pager_local_getpages

freebsd/vm/vnode_pager.c:768–774  ·  view source on GitHub ↗

* The implementation of VOP_GETPAGES() and VOP_GETPAGES_ASYNC() for * local filesystems, where partially valid pages can only occur at * the end of file. */

Source from the content-addressed store, hash-verified

766 * the end of file.
767 */
768int
769vnode_pager_local_getpages(struct vop_getpages_args *ap)
770{
771
772 return (vnode_pager_generic_getpages(ap->a_vp, ap->a_m, ap->a_count,
773 ap->a_rbehind, ap->a_rahead, NULL, NULL));
774}
775
776int
777vnode_pager_local_getpages_async(struct vop_getpages_async_args *ap)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected