| 339 | } |
| 340 | |
| 341 | static __inline int |
| 342 | fo_truncate(struct file *fp, off_t length, struct ucred *active_cred, |
| 343 | struct thread *td) |
| 344 | { |
| 345 | |
| 346 | return ((*fp->f_ops->fo_truncate)(fp, length, active_cred, td)); |
| 347 | } |
| 348 | |
| 349 | static __inline int |
| 350 | fo_ioctl(struct file *fp, u_long com, void *data, struct ucred *active_cred, |
no outgoing calls
no test coverage detected