| 526 | } |
| 527 | |
| 528 | static int |
| 529 | bpf_ioctl_getzmax(struct thread *td, struct bpf_d *d, size_t *i) |
| 530 | { |
| 531 | |
| 532 | if (d->bd_bufmode != BPF_BUFMODE_ZBUF) |
| 533 | return (EOPNOTSUPP); |
| 534 | return (bpf_zerocopy_ioctl_getzmax(td, d, i)); |
| 535 | } |
| 536 | |
| 537 | static int |
| 538 | bpf_ioctl_rotzbuf(struct thread *td, struct bpf_d *d, struct bpf_zbuf *bz) |
no test coverage detected