Home
last modified time | relevance | path

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

/Linux-v6.6/net/sched/
Dact_api.c1302 struct tc_action_ops *a_o; in tc_action_load_ops() local
1329 a_o = tc_lookup_action_n(act_name); in tc_action_load_ops()
1330 if (a_o == NULL) { in tc_action_load_ops()
1338 a_o = tc_lookup_action_n(act_name); in tc_action_load_ops()
1346 if (a_o != NULL) { in tc_action_load_ops()
1347 module_put(a_o->owner); in tc_action_load_ops()
1355 return a_o; in tc_action_load_ops()
1360 struct tc_action_ops *a_o, int *init_res, in tcf_action_init_1() argument
1394 err = a_o->init(net, tb[TCA_ACT_OPTIONS], est, &a, tp, in tcf_action_init_1()
1397 err = a_o->init(net, nla, est, &a, tp, userflags.value | flags, in tcf_action_init_1()
[all …]
Dcls_api.c3273 struct tc_action_ops *a_o; in tcf_exts_validate_ex() local
3275 a_o = tc_action_load_ops(tb[exts->police], true, in tcf_exts_validate_ex()
3278 if (IS_ERR(a_o)) in tcf_exts_validate_ex()
3279 return PTR_ERR(a_o); in tcf_exts_validate_ex()
3282 rate_tlv, a_o, init_res, flags, in tcf_exts_validate_ex()
3284 module_put(a_o->owner); in tcf_exts_validate_ex()
/Linux-v6.6/include/net/
Dact_api.h215 struct tc_action_ops *a_o, int *init_res,