Searched refs:child_fe (Results 1 – 3 of 3) sorted by relevance
| /xnu-8792.41.9/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); 1299 struct flow_entry *child_fe; in rx_lookup_child_flow() local 1310 TAILQ_FOREACH(child_fe, &parent_fe->fe_child_list, fe_child_link) { in rx_lookup_child_flow() 1311 if (rx_flow_demux_match(fsw, child_fe, pkt)) { in rx_lookup_child_flow() 1312 flow_entry_retain(child_fe); in rx_lookup_child_flow() 1314 return child_fe; in rx_lookup_child_flow() 1325 struct flow_entry *child_fe; in tx_lookup_child_flow() local 1330 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-8792.41.9/bsd/skywalk/nexus/flowswitch/ |
| H A D | fsw_dp.c | 714 struct flow_entry *child_fe = rx_lookup_child_flow(fsw, fe, pkt); in lookup_flow_with_pkt() local 715 if (child_fe != NULL) { in lookup_flow_with_pkt() 717 fe = child_fe; in lookup_flow_with_pkt()
|