Lines Matching refs:bond_init

1165 	struct ifnet_init_eparams       bond_init;  in bond_clone_create()  local
1189 bzero(&bond_init, sizeof(bond_init)); in bond_clone_create()
1190 bond_init.ver = IFNET_INIT_CURRENT_VERSION; in bond_clone_create()
1191 bond_init.len = sizeof(bond_init); in bond_clone_create()
1192 bond_init.flags = IFNET_INIT_LEGACY; in bond_clone_create()
1193 bond_init.uniqueid = ifb->ifb_name; in bond_clone_create()
1194 bond_init.uniqueid_len = strlen(ifb->ifb_name); in bond_clone_create()
1195 bond_init.name = ifc->ifc_name; in bond_clone_create()
1196 bond_init.unit = unit; in bond_clone_create()
1197 bond_init.family = IFNET_FAMILY_BOND; in bond_clone_create()
1198 bond_init.type = IFT_IEEE8023ADLAG; in bond_clone_create()
1199 bond_init.output = bond_output; in bond_clone_create()
1200 bond_init.demux = ether_demux; in bond_clone_create()
1201 bond_init.add_proto = ether_add_proto; in bond_clone_create()
1202 bond_init.del_proto = ether_del_proto; in bond_clone_create()
1203 bond_init.check_multi = ether_check_multi; in bond_clone_create()
1204 bond_init.framer_extended = ether_frameout_extended; in bond_clone_create()
1205 bond_init.ioctl = bond_ioctl; in bond_clone_create()
1206 bond_init.set_bpf_tap = bond_set_bpf_tap; in bond_clone_create()
1207 bond_init.detach = bond_if_free; in bond_clone_create()
1208 bond_init.broadcast_addr = etherbroadcastaddr; in bond_clone_create()
1209 bond_init.broadcast_len = ETHER_ADDR_LEN; in bond_clone_create()
1210 bond_init.softc = ifb; in bond_clone_create()
1211 error = ifnet_allocate_extended(&bond_init, &ifp); in bond_clone_create()