| 229 | } |
| 230 | |
| 231 | int |
| 232 | linux_writev(struct thread *td, struct linux_writev_args *uap) |
| 233 | { |
| 234 | struct uio *auio; |
| 235 | int error; |
| 236 | |
| 237 | error = linux32_copyinuio(uap->iovp, uap->iovcnt, &auio); |
| 238 | if (error) |
| 239 | return (error); |
| 240 | error = kern_writev(td, uap->fd, auio); |
| 241 | free(auio, M_IOV); |
| 242 | return (error); |
| 243 | } |
| 244 | |
| 245 | struct l_ipc_kludge { |
| 246 | l_uintptr_t msgp; |
nothing calls this directly
no test coverage detected