tcf_register_action
int tcf_register_action(struct tc_action_ops *a, struct pernet_operations *ops);
EXPORT_SYMBOL(tcf_register_action);
return tcf_register_action(&act_bpf_ops, &bpf_net_ops);
return tcf_register_action(&act_connmark_ops, &connmark_net_ops);
return tcf_register_action(&act_csum_ops, &csum_net_ops);
err = tcf_register_action(&act_ct_ops, &ct_net_ops);
return tcf_register_action(&act_ctinfo_ops, &ctinfo_net_ops);
return tcf_register_action(&act_gact_ops, &gact_net_ops);
return tcf_register_action(&act_gate_ops, &gate_net_ops);
return tcf_register_action(&act_ife_ops, &ife_net_ops);
err = tcf_register_action(&act_mirred_ops, &mirred_net_ops);
return tcf_register_action(&act_mpls_ops, &mpls_net_ops);
return tcf_register_action(&act_nat_ops, &nat_net_ops);
return tcf_register_action(&act_pedit_ops, &pedit_net_ops);
return tcf_register_action(&act_police_ops, &police_net_ops);
return tcf_register_action(&act_sample_ops, &sample_net_ops);
int ret = tcf_register_action(&act_simp_ops, &simp_net_ops);
return tcf_register_action(&act_skbedit_ops, &skbedit_net_ops);
return tcf_register_action(&act_skbmod_ops, &skbmod_net_ops);
return tcf_register_action(&act_tunnel_key_ops, &tunnel_key_net_ops);
return tcf_register_action(&act_vlan_ops, &vlan_net_ops);