| 774 | } |
| 775 | |
| 776 | int |
| 777 | vnode_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 |
nothing calls this directly
no test coverage detected