Searched refs:child_fe (Results 1 – 3 of 3) sorted by relevance
| /xnu-10063.141.1/bsd/skywalk/nexus/flowswitch/flow/ |
| H A D | flow_manager.c | 1213 struct flow_entry *child_fe; 1215 TAILQ_FOREACH(child_fe, &fe->fe_child_list, fe_child_link) { 1216 flow_handler(child_fe); 1298 struct flow_entry *child_fe; in rx_lookup_child_flow() local 1309 TAILQ_FOREACH(child_fe, &parent_fe->fe_child_list, fe_child_link) { in rx_lookup_child_flow() 1310 if (rx_flow_demux_match(fsw, child_fe, pkt)) { in rx_lookup_child_flow() 1311 flow_entry_retain(child_fe); in rx_lookup_child_flow() 1313 return child_fe; in rx_lookup_child_flow() 1324 struct flow_entry *child_fe; in tx_lookup_child_flow() local 1329 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-10063.141.1/bsd/skywalk/nexus/flowswitch/ |
| H A D | fsw_dp.c | 728 struct flow_entry *child_fe = rx_lookup_child_flow(fsw, fe, pkt); in lookup_flow_with_pkt() local 729 if (child_fe != NULL) { in lookup_flow_with_pkt() 731 fe = child_fe; in lookup_flow_with_pkt()
|