| 310 | } |
| 311 | |
| 312 | static void |
| 313 | bpfif_rele(struct bpf_if *bp) |
| 314 | { |
| 315 | |
| 316 | if (!refcount_release(&bp->bif_refcnt)) |
| 317 | return; |
| 318 | NET_EPOCH_CALL(bpfif_free, &bp->epoch_ctx); |
| 319 | } |
| 320 | |
| 321 | static void |
| 322 | bpfd_ref(struct bpf_d *d) |
no test coverage detected