* Detach a file from its interface. */
| 830 | * Detach a file from its interface. |
| 831 | */ |
| 832 | static void |
| 833 | bpf_detachd(struct bpf_d *d) |
| 834 | { |
| 835 | BPF_LOCK(); |
| 836 | bpf_detachd_locked(d, false); |
| 837 | BPF_UNLOCK(); |
| 838 | } |
| 839 | |
| 840 | static void |
| 841 | bpf_detachd_locked(struct bpf_d *d, bool detached_ifp) |
no test coverage detected