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

Function vop_stdputpages

freebsd/kern/vfs_default.c:799–812  ·  view source on GitHub ↗

XXX Needs good comment and more info in the manpage (VOP_PUTPAGES(9)). */

(ap)

Source from the content-addressed store, hash-verified

797
798/* XXX Needs good comment and more info in the manpage (VOP_PUTPAGES(9)). */
799int
800vop_stdputpages(ap)
801 struct vop_putpages_args /* {
802 struct vnode *a_vp;
803 vm_page_t *a_m;
804 int a_count;
805 int a_sync;
806 int *a_rtvals;
807 } */ *ap;
808{
809
810 return vnode_pager_generic_putpages(ap->a_vp, ap->a_m, ap->a_count,
811 ap->a_sync, ap->a_rtvals);
812}
813
814int
815vop_stdvptofh(struct vop_vptofh_args *ap)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected