Home
last modified time | relevance | path

Searched refs:a_o (Results 1 – 3 of 3) sorted by relevance

/kernel/linux/linux-5.10/net/sched/
Dact_api.c944 struct tc_action_ops *a_o; in tc_action_load_ops() local
971 a_o = tc_lookup_action_n(act_name); in tc_action_load_ops()
972 if (a_o == NULL) { in tc_action_load_ops()
980 a_o = tc_lookup_action_n(act_name); in tc_action_load_ops()
988 if (a_o != NULL) { in tc_action_load_ops()
989 module_put(a_o->owner); in tc_action_load_ops()
997 return a_o; in tc_action_load_ops()
1003 struct tc_action_ops *a_o, int *init_res, in tcf_action_init_1() argument
1032 err = a_o->init(net, tb[TCA_ACT_OPTIONS], est, &a, ovr, bind, in tcf_action_init_1()
1035 err = a_o->init(net, nla, est, &a, ovr, bind, rtnl_held, in tcf_action_init_1()
[all …]
Dcls_api.c3064 struct tc_action_ops *a_o; in tcf_exts_validate() local
3066 a_o = tc_action_load_ops("police", tb[exts->police], rtnl_held, extack); in tcf_exts_validate()
3067 if (IS_ERR(a_o)) in tcf_exts_validate()
3068 return PTR_ERR(a_o); in tcf_exts_validate()
3071 TCA_ACT_BIND, a_o, init_res, in tcf_exts_validate()
3073 module_put(a_o->owner); in tcf_exts_validate()
/kernel/linux/linux-5.10/include/net/
Dact_api.h191 struct tc_action_ops *a_o, int *init_res,