Symbol: tcf_register_action
include/net/act_api.h
207
int tcf_register_action(struct tc_action_ops *a, struct pernet_operations *ops);
net/sched/act_api.c
1060
EXPORT_SYMBOL(tcf_register_action);
net/sched/act_bpf.c
425
return tcf_register_action(&act_bpf_ops, &bpf_net_ops);
net/sched/act_connmark.c
272
return tcf_register_action(&act_connmark_ops, &connmark_net_ops);
net/sched/act_csum.c
738
return tcf_register_action(&act_csum_ops, &csum_net_ops);
net/sched/act_ct.c
1677
err = tcf_register_action(&act_ct_ops, &ct_net_ops);
net/sched/act_ctinfo.c
392
return tcf_register_action(&act_ctinfo_ops, &ctinfo_net_ops);
net/sched/act_gact.c
332
return tcf_register_action(&act_gact_ops, &gact_net_ops);
net/sched/act_gate.c
772
return tcf_register_action(&act_gate_ops, &gate_net_ops);
net/sched/act_ife.c
914
return tcf_register_action(&act_ife_ops, &ife_net_ops);
net/sched/act_mirred.c
685
err = tcf_register_action(&act_mirred_ops, &mirred_net_ops);
net/sched/act_mpls.c
475
return tcf_register_action(&act_mpls_ops, &mpls_net_ops);
net/sched/act_nat.c
352
return tcf_register_action(&act_nat_ops, &nat_net_ops);
net/sched/act_pedit.c
650
return tcf_register_action(&act_pedit_ops, &pedit_net_ops);
net/sched/act_police.c
526
return tcf_register_action(&act_police_ops, &police_net_ops);
net/sched/act_sample.c
354
return tcf_register_action(&act_sample_ops, &sample_net_ops);
net/sched/act_simple.c
238
int ret = tcf_register_action(&act_simp_ops, &simp_net_ops);
net/sched/act_skbedit.c
458
return tcf_register_action(&act_skbedit_ops, &skbedit_net_ops);
net/sched/act_skbmod.c
315
return tcf_register_action(&act_skbmod_ops, &skbmod_net_ops);
net/sched/act_tunnel_key.c
866
return tcf_register_action(&act_tunnel_key_ops, &tunnel_key_net_ops);
net/sched/act_vlan.c
452
return tcf_register_action(&act_vlan_ops, &vlan_net_ops);