Home
last modified time | relevance | path

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

/xnu-8020.101.4/bsd/net/
H A Dbpf.c3635 struct bpf_if *bp_new; in bpf_attach() local
3641 bp_new = kalloc_type(struct bpf_if, M_WAIT | Z_ZERO); in bpf_attach()
3642 if (bp_new == 0) { in bpf_attach()
3676 kfree_type(struct bpf_if, bp_new); in bpf_attach()
3680 bp_new->bif_ifp = ifp; in bpf_attach()
3681 bp_new->bif_dlt = dlt; in bpf_attach()
3682 bp_new->bif_send = send; in bpf_attach()
3683 bp_new->bif_tap = tap; in bpf_attach()
3687 bp_new->bif_next = bpf_iflist; in bpf_attach()
3688 bpf_iflist = bp_new; in bpf_attach()
[all …]