Home
last modified time | relevance | path

Searched refs:bp_new (Results 1 – 1 of 1) sorted by relevance

/xnu-8019.80.24/bsd/net/
H A Dbpf.c3646 struct bpf_if *bp_new; in bpf_attach() local
3652 bp_new = kalloc_type(struct bpf_if, M_WAIT | Z_ZERO); in bpf_attach()
3653 if (bp_new == 0) { in bpf_attach()
3687 kfree_type(struct bpf_if, bp_new); in bpf_attach()
3691 bp_new->bif_ifp = ifp; in bpf_attach()
3692 bp_new->bif_dlt = dlt; in bpf_attach()
3693 bp_new->bif_send = send; in bpf_attach()
3694 bp_new->bif_tap = tap; in bpf_attach()
3698 bp_new->bif_next = bpf_iflist; in bpf_attach()
3699 bpf_iflist = bp_new; in bpf_attach()
[all …]