* Copy buffer storage to user space in read(). */
| 207 | * Copy buffer storage to user space in read(). |
| 208 | */ |
| 209 | int |
| 210 | bpf_buffer_uiomove(struct bpf_d *d, caddr_t buf, u_int len, struct uio *uio) |
| 211 | { |
| 212 | |
| 213 | return (uiomove(buf, len, uio)); |
| 214 | } |
no test coverage detected