Lines Matching refs:a_o
1302 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()
1446 struct tc_action_ops *a_o; in tcf_action_init() local
1448 a_o = tc_action_load_ops(tb[i], flags & TCA_ACT_FLAGS_POLICE, in tcf_action_init()
1451 if (IS_ERR(a_o)) { in tcf_action_init()
1452 err = PTR_ERR(a_o); in tcf_action_init()
1455 ops[i - 1] = a_o; in tcf_action_init()
2090 struct tc_action_ops *a_o; in tc_dump_action() local
2112 a_o = tc_lookup_action(kind); in tc_dump_action()
2113 if (a_o == NULL) in tc_dump_action()
2147 ret = __tcf_generic_walker(net, skb, cb, RTM_GETACTION, a_o, NULL); in tc_dump_action()
2163 module_put(a_o->owner); in tc_dump_action()
2167 module_put(a_o->owner); in tc_dump_action()