Lines Matching refs:OfDpaFlowContext

165 } OfDpaFlowContext;  typedef
381 static void of_dpa_flow_pkt_hdr_reset(OfDpaFlowContext *fc) in of_dpa_flow_pkt_hdr_reset()
391 static void of_dpa_flow_pkt_parse(OfDpaFlowContext *fc, in of_dpa_flow_pkt_parse()
454 static void of_dpa_flow_pkt_insert_vlan(OfDpaFlowContext *fc, __be16 vlan_id) in of_dpa_flow_pkt_insert_vlan()
474 static void of_dpa_flow_pkt_strip_vlan(OfDpaFlowContext *fc) in of_dpa_flow_pkt_strip_vlan()
487 static void of_dpa_flow_pkt_hdr_rewrite(OfDpaFlowContext *fc, in of_dpa_flow_pkt_hdr_rewrite()
511 static void of_dpa_flow_ig_tbl(OfDpaFlowContext *fc, uint32_t tbl_id);
513 static void of_dpa_ig_port_build_match(OfDpaFlowContext *fc, in of_dpa_ig_port_build_match()
521 static void of_dpa_ig_port_miss(OfDpaFlowContext *fc) in of_dpa_ig_port_miss()
535 static void of_dpa_vlan_build_match(OfDpaFlowContext *fc, in of_dpa_vlan_build_match()
546 static void of_dpa_vlan_insert(OfDpaFlowContext *fc, in of_dpa_vlan_insert()
554 static void of_dpa_term_mac_build_match(OfDpaFlowContext *fc, in of_dpa_term_mac_build_match()
566 static void of_dpa_term_mac_miss(OfDpaFlowContext *fc) in of_dpa_term_mac_miss()
571 static void of_dpa_apply_actions(OfDpaFlowContext *fc, in of_dpa_apply_actions()
578 static void of_dpa_bridging_build_match(OfDpaFlowContext *fc, in of_dpa_bridging_build_match()
592 static void of_dpa_bridging_learn(OfDpaFlowContext *fc, in of_dpa_bridging_learn()
636 static void of_dpa_bridging_miss(OfDpaFlowContext *fc) in of_dpa_bridging_miss()
642 static void of_dpa_bridging_action_write(OfDpaFlowContext *fc, in of_dpa_bridging_action_write()
651 static void of_dpa_unicast_routing_build_match(OfDpaFlowContext *fc, in of_dpa_unicast_routing_build_match()
666 static void of_dpa_unicast_routing_miss(OfDpaFlowContext *fc) in of_dpa_unicast_routing_miss()
671 static void of_dpa_unicast_routing_action_write(OfDpaFlowContext *fc, in of_dpa_unicast_routing_action_write()
680 of_dpa_multicast_routing_build_match(OfDpaFlowContext *fc, in of_dpa_multicast_routing_build_match()
701 static void of_dpa_multicast_routing_miss(OfDpaFlowContext *fc) in of_dpa_multicast_routing_miss()
707 of_dpa_multicast_routing_action_write(OfDpaFlowContext *fc, in of_dpa_multicast_routing_action_write()
716 static void of_dpa_acl_build_match(OfDpaFlowContext *fc, in of_dpa_acl_build_match()
740 static void of_dpa_eg(OfDpaFlowContext *fc);
741 static void of_dpa_acl_hit(OfDpaFlowContext *fc, in of_dpa_acl_hit()
747 static void of_dpa_acl_action_write(OfDpaFlowContext *fc, in of_dpa_acl_action_write()
755 static void of_dpa_drop(OfDpaFlowContext *fc) in of_dpa_drop()
819 static void of_dpa_output_l2_interface(OfDpaFlowContext *fc, in of_dpa_output_l2_interface()
845 static void of_dpa_output_l2_rewrite(OfDpaFlowContext *fc, in of_dpa_output_l2_rewrite()
861 static void of_dpa_output_l2_flood(OfDpaFlowContext *fc, in of_dpa_output_l2_flood()
884 static void of_dpa_output_l3_unicast(OfDpaFlowContext *fc, OfDpaGroup *group) in of_dpa_output_l3_unicast()
900 static void of_dpa_eg(OfDpaFlowContext *fc) in of_dpa_eg()
946 void (*build_match)(OfDpaFlowContext *fc, OfDpaFlowMatch *match);
947 void (*hit)(OfDpaFlowContext *fc, OfDpaFlow *flow);
948 void (*miss)(OfDpaFlowContext *fc);
949 void (*hit_no_goto)(OfDpaFlowContext *fc);
950 void (*action_apply)(OfDpaFlowContext *fc, OfDpaFlow *flow);
951 void (*action_write)(OfDpaFlowContext *fc, OfDpaFlow *flow);
1000 static void of_dpa_flow_ig_tbl(OfDpaFlowContext *fc, uint32_t tbl_id) in of_dpa_flow_ig_tbl()
1047 OfDpaFlowContext fc = { in of_dpa_ig()