* The implementation of VOP_GETPAGES() and VOP_GETPAGES_ASYNC() for * local filesystems, where partially valid pages can only occur at * the end of file. */
| 766 | * the end of file. |
| 767 | */ |
| 768 | int |
| 769 | vnode_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 | |
| 776 | int |
| 777 | vnode_pager_local_getpages_async(struct vop_getpages_async_args *ap) |
nothing calls this directly
no test coverage detected