| 326 | } |
| 327 | |
| 328 | static void |
| 329 | bpfd_rele(struct bpf_d *d) |
| 330 | { |
| 331 | |
| 332 | if (!refcount_release(&d->bd_refcnt)) |
| 333 | return; |
| 334 | NET_EPOCH_CALL(bpfd_free, &d->epoch_ctx); |
| 335 | } |
| 336 | |
| 337 | static struct bpf_program_buffer* |
| 338 | bpf_program_buffer_alloc(size_t size, int flags) |
no test coverage detected