mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
net_sched: move tc_action into tcf_common
struct tc_action is confusing, currently we use it for two purposes: 1) Pass in arguments and carry out results from helper functions 2) A generic representation for tc actions The first one is error-prone, since we need to make sure we don't miss anything. This patch aims to get rid of this use, by moving tc_action into tcf_common, so that they are allocated together in hashtable and can be cast'ed easily. And together with the following patch, we could really make tc_action a generic representation for all tc actions and each type of action can inherit from it. Cc: Jamal Hadi Salim <jhs@mojatatu.com> Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b93dd49c1a
commit
a85a970af2
27 changed files with 298 additions and 329 deletions
|
@ -27,12 +27,13 @@
|
|||
#define SIMP_TAB_MASK 7
|
||||
|
||||
static int simp_net_id;
|
||||
static struct tc_action_ops act_simp_ops;
|
||||
|
||||
#define SIMP_MAX_DATA 32
|
||||
static int tcf_simp(struct sk_buff *skb, const struct tc_action *a,
|
||||
struct tcf_result *res)
|
||||
{
|
||||
struct tcf_defact *d = a->priv;
|
||||
struct tcf_defact *d = to_defact(a);
|
||||
|
||||
spin_lock(&d->tcf_lock);
|
||||
tcf_lastuse_update(&d->tcf_tm);
|
||||
|
@ -79,7 +80,7 @@ static const struct nla_policy simple_policy[TCA_DEF_MAX + 1] = {
|
|||
};
|
||||
|
||||
static int tcf_simp_init(struct net *net, struct nlattr *nla,
|
||||
struct nlattr *est, struct tc_action *a,
|
||||
struct nlattr *est, struct tc_action **a,
|
||||
int ovr, int bind)
|
||||
{
|
||||
struct tc_action_net *tn = net_generic(net, simp_net_id);
|
||||
|
@ -100,7 +101,6 @@ static int tcf_simp_init(struct net *net, struct nlattr *nla,
|
|||
if (tb[TCA_DEF_PARMS] == NULL)
|
||||
return -EINVAL;
|
||||
|
||||
|
||||
parm = nla_data(tb[TCA_DEF_PARMS]);
|
||||
exists = tcf_hash_check(tn, parm->index, a, bind);
|
||||
if (exists && bind)
|
||||
|
@ -108,7 +108,7 @@ static int tcf_simp_init(struct net *net, struct nlattr *nla,
|
|||
|
||||
if (tb[TCA_DEF_DATA] == NULL) {
|
||||
if (exists)
|
||||
tcf_hash_release(a, bind);
|
||||
tcf_hash_release(*a, bind);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
|
@ -116,22 +116,22 @@ static int tcf_simp_init(struct net *net, struct nlattr *nla,
|
|||
|
||||
if (!exists) {
|
||||
ret = tcf_hash_create(tn, parm->index, est, a,
|
||||
sizeof(*d), bind, false);
|
||||
&act_simp_ops, bind, false);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
d = to_defact(a);
|
||||
d = to_defact(*a);
|
||||
ret = alloc_defdata(d, defdata);
|
||||
if (ret < 0) {
|
||||
tcf_hash_cleanup(a, est);
|
||||
tcf_hash_cleanup(*a, est);
|
||||
return ret;
|
||||
}
|
||||
d->tcf_action = parm->action;
|
||||
ret = ACT_P_CREATED;
|
||||
} else {
|
||||
d = to_defact(a);
|
||||
d = to_defact(*a);
|
||||
|
||||
tcf_hash_release(a, bind);
|
||||
tcf_hash_release(*a, bind);
|
||||
if (!ovr)
|
||||
return -EEXIST;
|
||||
|
||||
|
@ -139,7 +139,7 @@ static int tcf_simp_init(struct net *net, struct nlattr *nla,
|
|||
}
|
||||
|
||||
if (ret == ACT_P_CREATED)
|
||||
tcf_hash_insert(tn, a);
|
||||
tcf_hash_insert(tn, *a);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
@ -147,7 +147,7 @@ static int tcf_simp_dump(struct sk_buff *skb, struct tc_action *a,
|
|||
int bind, int ref)
|
||||
{
|
||||
unsigned char *b = skb_tail_pointer(skb);
|
||||
struct tcf_defact *d = a->priv;
|
||||
struct tcf_defact *d = to_defact(a);
|
||||
struct tc_defact opt = {
|
||||
.index = d->tcf_index,
|
||||
.refcnt = d->tcf_refcnt - ref,
|
||||
|
@ -172,14 +172,14 @@ nla_put_failure:
|
|||
|
||||
static int tcf_simp_walker(struct net *net, struct sk_buff *skb,
|
||||
struct netlink_callback *cb, int type,
|
||||
struct tc_action *a)
|
||||
const struct tc_action_ops *ops)
|
||||
{
|
||||
struct tc_action_net *tn = net_generic(net, simp_net_id);
|
||||
|
||||
return tcf_generic_walker(tn, skb, cb, type, a);
|
||||
return tcf_generic_walker(tn, skb, cb, type, ops);
|
||||
}
|
||||
|
||||
static int tcf_simp_search(struct net *net, struct tc_action *a, u32 index)
|
||||
static int tcf_simp_search(struct net *net, struct tc_action **a, u32 index)
|
||||
{
|
||||
struct tc_action_net *tn = net_generic(net, simp_net_id);
|
||||
|
||||
|
@ -196,6 +196,7 @@ static struct tc_action_ops act_simp_ops = {
|
|||
.init = tcf_simp_init,
|
||||
.walk = tcf_simp_walker,
|
||||
.lookup = tcf_simp_search,
|
||||
.size = sizeof(struct tcf_defact),
|
||||
};
|
||||
|
||||
static __net_init int simp_init_net(struct net *net)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue