XXX Needs good comment and more info in the manpage (VOP_PUTPAGES(9)). */
(ap)
| 797 | |
| 798 | /* XXX Needs good comment and more info in the manpage (VOP_PUTPAGES(9)). */ |
| 799 | int |
| 800 | vop_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 | |
| 814 | int |
| 815 | vop_stdvptofh(struct vop_vptofh_args *ap) |
nothing calls this directly
no test coverage detected