Home
last modified time | relevance | path

Searched refs:fl_action (Results 1 – 14 of 14) sorted by relevance

/openbmc/linux/net/sched/
H A Dact_gact.c270 struct flow_offload_action *fl_action = entry_data; in tcf_gact_offload_act_setup() local
273 fl_action->id = FLOW_ACTION_ACCEPT; in tcf_gact_offload_act_setup()
275 fl_action->id = FLOW_ACTION_DROP; in tcf_gact_offload_act_setup()
277 fl_action->id = FLOW_ACTION_TRAP; in tcf_gact_offload_act_setup()
279 fl_action->id = FLOW_ACTION_GOTO; in tcf_gact_offload_act_setup()
H A Dact_vlan.c391 struct flow_offload_action *fl_action = entry_data; in tcf_vlan_offload_act_setup() local
395 fl_action->id = FLOW_ACTION_VLAN_PUSH; in tcf_vlan_offload_act_setup()
398 fl_action->id = FLOW_ACTION_VLAN_POP; in tcf_vlan_offload_act_setup()
401 fl_action->id = FLOW_ACTION_VLAN_MANGLE; in tcf_vlan_offload_act_setup()
404 fl_action->id = FLOW_ACTION_VLAN_POP_ETH; in tcf_vlan_offload_act_setup()
407 fl_action->id = FLOW_ACTION_VLAN_PUSH_ETH; in tcf_vlan_offload_act_setup()
H A Dact_mirred.c486 struct flow_offload_action *fl_action = entry_data; in tcf_mirred_offload_act_setup() local
489 fl_action->id = FLOW_ACTION_REDIRECT; in tcf_mirred_offload_act_setup()
491 fl_action->id = FLOW_ACTION_MIRRED; in tcf_mirred_offload_act_setup()
493 fl_action->id = FLOW_ACTION_REDIRECT_INGRESS; in tcf_mirred_offload_act_setup()
495 fl_action->id = FLOW_ACTION_MIRRED_INGRESS; in tcf_mirred_offload_act_setup()
H A Dact_skbedit.c399 struct flow_offload_action *fl_action = entry_data; in tcf_skbedit_offload_act_setup() local
402 fl_action->id = FLOW_ACTION_MARK; in tcf_skbedit_offload_act_setup()
404 fl_action->id = FLOW_ACTION_PTYPE; in tcf_skbedit_offload_act_setup()
406 fl_action->id = FLOW_ACTION_PRIORITY; in tcf_skbedit_offload_act_setup()
408 fl_action->id = FLOW_ACTION_RX_QUEUE_MAPPING; in tcf_skbedit_offload_act_setup()
H A Dact_mpls.c424 struct flow_offload_action *fl_action = entry_data; in tcf_mpls_offload_act_setup() local
428 fl_action->id = FLOW_ACTION_MPLS_PUSH; in tcf_mpls_offload_act_setup()
431 fl_action->id = FLOW_ACTION_MPLS_POP; in tcf_mpls_offload_act_setup()
434 fl_action->id = FLOW_ACTION_MPLS_MANGLE; in tcf_mpls_offload_act_setup()
H A Dact_api.c187 fl_action->extack = extack; in offload_action_init()
188 fl_action->command = cmd; in offload_action_init()
189 fl_action->index = act->tcfa_index; in offload_action_init()
190 fl_action->cookie = (unsigned long)act; in offload_action_init()
194 err = act->ops->offload_act_setup(act, fl_action, NULL, in offload_action_init()
255 struct flow_offload_action *fl_action; in tcf_action_offload_add_ex() local
263 fl_action = offload_action_alloc(num); in tcf_action_offload_add_ex()
264 if (!fl_action) in tcf_action_offload_add_ex()
271 err = tc_setup_action(&fl_action->action, actions, 0, extack); in tcf_action_offload_add_ex()
286 tc_cleanup_offload_action(&fl_action->action); in tcf_action_offload_add_ex()
[all …]
H A Dact_sample.c298 struct flow_offload_action *fl_action = entry_data; in tcf_sample_offload_act_setup() local
300 fl_action->id = FLOW_ACTION_SAMPLE; in tcf_sample_offload_act_setup()
H A Dact_pedit.c584 struct flow_offload_action *fl_action = entry_data; in tcf_pedit_offload_act_setup() local
590 fl_action->id = FLOW_ACTION_MANGLE; in tcf_pedit_offload_act_setup()
593 fl_action->id = FLOW_ACTION_ADD; in tcf_pedit_offload_act_setup()
H A Dact_tunnel_key.c821 struct flow_offload_action *fl_action = entry_data; in tcf_tunnel_key_offload_act_setup() local
824 fl_action->id = FLOW_ACTION_TUNNEL_ENCAP; in tcf_tunnel_key_offload_act_setup()
826 fl_action->id = FLOW_ACTION_TUNNEL_DECAP; in tcf_tunnel_key_offload_act_setup()
H A Dact_police.c481 struct flow_offload_action *fl_action = entry_data; in tcf_police_offload_act_setup() local
483 fl_action->id = FLOW_ACTION_POLICE; in tcf_police_offload_act_setup()
H A Dact_csum.c692 struct flow_offload_action *fl_action = entry_data; in tcf_csum_offload_act_setup() local
694 fl_action->id = FLOW_ACTION_CSUM; in tcf_csum_offload_act_setup()
H A Dact_gate.c627 struct flow_offload_action *fl_action = entry_data; in tcf_gate_offload_act_setup() local
629 fl_action->id = FLOW_ACTION_GATE; in tcf_gate_offload_act_setup()
H A Dact_ct.c1585 struct flow_offload_action *fl_action = entry_data; in tcf_ct_offload_act_setup() local
1587 fl_action->id = FLOW_ACTION_CT; in tcf_ct_offload_act_setup()
/openbmc/linux/net/core/
H A Dflow_offload.c33 struct flow_offload_action *fl_action; in offload_action_alloc() local
36 fl_action = kzalloc(struct_size(fl_action, action.entries, num_actions), in offload_action_alloc()
38 if (!fl_action) in offload_action_alloc()
41 fl_action->action.num_entries = num_actions; in offload_action_alloc()
46 fl_action->action.entries[i].hw_stats = FLOW_ACTION_HW_STATS_DONT_CARE; in offload_action_alloc()
48 return fl_action; in offload_action_alloc()