| 323 | static __inline fo_sendfile_t fo_sendfile; |
| 324 | |
| 325 | static __inline int |
| 326 | fo_read(struct file *fp, struct uio *uio, struct ucred *active_cred, |
| 327 | int flags, struct thread *td) |
| 328 | { |
| 329 | |
| 330 | return ((*fp->f_ops->fo_read)(fp, uio, active_cred, flags, td)); |
| 331 | } |
| 332 | |
| 333 | static __inline int |
| 334 | fo_write(struct file *fp, struct uio *uio, struct ucred *active_cred, |
no outgoing calls
no test coverage detected