| 517 | } |
| 518 | |
| 519 | static int |
| 520 | bpf_ioctl_sblen(struct bpf_d *d, u_int *i) |
| 521 | { |
| 522 | |
| 523 | if (d->bd_bufmode != BPF_BUFMODE_BUFFER) |
| 524 | return (EOPNOTSUPP); |
| 525 | return (bpf_buffer_ioctl_sblen(d, i)); |
| 526 | } |
| 527 | |
| 528 | static int |
| 529 | bpf_ioctl_getzmax(struct thread *td, struct bpf_d *d, size_t *i) |
no test coverage detected