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

Function vnode_pager_local_getpages_async

freebsd/vm/vnode_pager.c:776–786  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

774}
775
776int
777vnode_pager_local_getpages_async(struct vop_getpages_async_args *ap)
778{
779 int error;
780
781 error = vnode_pager_generic_getpages(ap->a_vp, ap->a_m, ap->a_count,
782 ap->a_rbehind, ap->a_rahead, ap->a_iodone, ap->a_arg);
783 if (error != 0 && ap->a_iodone != NULL)
784 ap->a_iodone(ap->a_arg, ap->a_m, ap->a_count, error);
785 return (error);
786}
787
788/*
789 * This is now called from local media FS's to operate against their

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected