Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/io/mac/
H A Dmac_bcast.c347 flow_desc_t flow_desc; in mac_bcast_add() local
366 bzero(&flow_desc, sizeof (flow_desc)); in mac_bcast_add()
367 bcopy(addr, &flow_desc.fd_dst_mac, addr_len); in mac_bcast_add()
368 flow_desc.fd_mac_len = (uint32_t)addr_len; in mac_bcast_add()
370 flow_desc.fd_mask = FLOW_LINK_DST; in mac_bcast_add()
372 flow_desc.fd_vid = vid; in mac_bcast_add()
373 flow_desc.fd_mask |= FLOW_LINK_VID; in mac_bcast_add()
380 rc = mac_flow_create(&flow_desc, NULL, flow_name, in mac_bcast_add()
H A Dmac_client.c486 flow_desc_t flow_desc; in mac_client_vid() local
493 mac_flow_get_desc(mcip->mci_flent, &flow_desc); in mac_client_vid()
494 if ((flow_desc.fd_mask & FLOW_LINK_VID) != 0) in mac_client_vid()
495 vid = flow_desc.fd_vid; in mac_client_vid()
767 flow_desc_t flow_desc; in i_mac_flow_vid() local
769 mac_flow_get_desc(flent, &flow_desc); in i_mac_flow_vid()
771 if ((flow_desc.fd_mask & FLOW_LINK_VID) != 0) in i_mac_flow_vid()
772 return (flow_desc.fd_vid); in i_mac_flow_vid()
834 flow_desc_t flow_desc; in mac_unicast_update_client_flow() local
839 mac_flow_get_desc(flent, &flow_desc); in mac_unicast_update_client_flow()
[all …]
H A Dmac_flow.c1210 flow_desc_t *flow_desc, mac_resource_props_t *mrp) in mac_link_flow_add() argument
1230 err = mac_flow_create(flow_desc, mrp, flow_name, NULL, in mac_link_flow_add()
/titanic_41/usr/src/uts/common/io/dld/
H A Ddld_flow.c40 dld_add_flow(datalink_id_t linkid, char *flow_name, flow_desc_t *flow_desc, in dld_add_flow() argument
43 return (mac_link_flow_add(linkid, flow_name, flow_desc, mrp)); in dld_add_flow()