| 508 | } |
| 509 | |
| 510 | static int |
| 511 | bpf_uiomove(struct bpf_d *d, caddr_t buf, u_int len, struct uio *uio) |
| 512 | { |
| 513 | |
| 514 | if (d->bd_bufmode != BPF_BUFMODE_BUFFER) |
| 515 | return (EOPNOTSUPP); |
| 516 | return (bpf_buffer_uiomove(d, buf, len, uio)); |
| 517 | } |
| 518 | |
| 519 | static int |
| 520 | bpf_ioctl_sblen(struct bpf_d *d, u_int *i) |
no test coverage detected