mirror of
https://github.com/adulau/aha.git
synced 2025-01-01 05:36:24 +00:00
[PKT_SCHED] act_police: Rename methods.
Rename policer specific _generic_ methods to be specific to _act_police_ Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
bbadf503d7
commit
83b950c89c
1 changed files with 4 additions and 4 deletions
|
@ -66,7 +66,7 @@ static __inline__ struct tcf_police * tcf_police_lookup(u32 index)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_NET_CLS_ACT
|
#ifdef CONFIG_NET_CLS_ACT
|
||||||
static int tcf_generic_walker(struct sk_buff *skb, struct netlink_callback *cb,
|
static int tcf_act_police_walker(struct sk_buff *skb, struct netlink_callback *cb,
|
||||||
int type, struct tc_action *a)
|
int type, struct tc_action *a)
|
||||||
{
|
{
|
||||||
struct tcf_police *p;
|
struct tcf_police *p;
|
||||||
|
@ -113,7 +113,7 @@ rtattr_failure:
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int
|
static inline int
|
||||||
tcf_hash_search(struct tc_action *a, u32 index)
|
tcf_act_police_hash_search(struct tc_action *a, u32 index)
|
||||||
{
|
{
|
||||||
struct tcf_police *p = tcf_police_lookup(index);
|
struct tcf_police *p = tcf_police_lookup(index);
|
||||||
|
|
||||||
|
@ -387,9 +387,9 @@ static struct tc_action_ops act_police_ops = {
|
||||||
.act = tcf_act_police,
|
.act = tcf_act_police,
|
||||||
.dump = tcf_act_police_dump,
|
.dump = tcf_act_police_dump,
|
||||||
.cleanup = tcf_act_police_cleanup,
|
.cleanup = tcf_act_police_cleanup,
|
||||||
.lookup = tcf_hash_search,
|
.lookup = tcf_act_police_hash_search,
|
||||||
.init = tcf_act_police_locate,
|
.init = tcf_act_police_locate,
|
||||||
.walk = tcf_generic_walker
|
.walk = tcf_act_police_walker
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init
|
static int __init
|
||||||
|
|
Loading…
Reference in a new issue