Searched refs:child_fe (Results 1 – 3 of 3) sorted by relevance
| /xnu-11215.81.4/bsd/skywalk/nexus/flowswitch/flow/ |
| H A D | flow_manager.c | 1217 struct flow_entry *child_fe; 1219 TAILQ_FOREACH(child_fe, &fe->fe_child_list, fe_child_link) { 1220 flow_handler(child_fe); 1303 struct flow_entry *child_fe; in rx_lookup_child_flow() local 1314 TAILQ_FOREACH(child_fe, &parent_fe->fe_child_list, fe_child_link) { in rx_lookup_child_flow() 1315 if (rx_flow_demux_match(fsw, child_fe, pkt)) { in rx_lookup_child_flow() 1316 flow_entry_retain(child_fe); in rx_lookup_child_flow() 1318 return child_fe; in rx_lookup_child_flow() 1329 struct flow_entry *child_fe; in tx_lookup_child_flow() local 1334 TAILQ_FOREACH(child_fe, &parent_fe->fe_child_list, fe_child_link) { in tx_lookup_child_flow() [all …]
|
| H A D | flow_entry.c | 206 flow_entry_add_child(struct flow_entry *parent_fe, struct flow_entry *child_fe) in flow_entry_add_child() argument 225 if (!fe_id_cmp(fe, child_fe)) { in flow_entry_add_child() 242 flow_entry_retain(child_fe); in flow_entry_add_child() 243 TAILQ_INSERT_TAIL(&parent_fe->fe_child_list, child_fe, fe_child_link); in flow_entry_add_child()
|
| /xnu-11215.81.4/bsd/skywalk/nexus/flowswitch/ |
| H A D | fsw_dp.c | 789 struct flow_entry *child_fe = rx_lookup_child_flow(fsw, fe, pkt); in lookup_flow_with_pkt() local 790 if (child_fe != NULL) { in lookup_flow_with_pkt() 792 fe = child_fe; in lookup_flow_with_pkt()
|