netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [Patch net-next] net_sched: remove internal use of TC_POLICE_*
@ 2016-06-13 17:47 Cong Wang
  2016-06-13 17:47 ` [Patch net-next] act_police: rename tcf_act_police_locate() to tcf_act_police_init() Cong Wang
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Cong Wang @ 2016-06-13 17:47 UTC (permalink / raw)
  To: netdev; +Cc: Cong Wang, Jamal Hadi Salim

These should be gone when we removed CONFIG_NET_CLS_POLICE.
We can not totally remove them since they are exposed
to userspace.

Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
---
 net/sched/act_ipt.c | 2 +-
 net/sched/sch_atm.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net/sched/act_ipt.c b/net/sched/act_ipt.c
index e7c0f4d..8998a35 100644
--- a/net/sched/act_ipt.c
+++ b/net/sched/act_ipt.c
@@ -243,7 +243,7 @@ static int tcf_ipt(struct sk_buff *skb, const struct tc_action *a,
 	default:
 		net_notice_ratelimited("tc filter: Bogus netfilter code %d assume ACCEPT\n",
 				       ret);
-		result = TC_POLICE_OK;
+		result = TC_ACT_OK;
 		break;
 	}
 	spin_unlock(&ipt->tcf_lock);
diff --git a/net/sched/sch_atm.c b/net/sched/sch_atm.c
index 0785b23..e04ea69 100644
--- a/net/sched/sch_atm.c
+++ b/net/sched/sch_atm.c
@@ -366,7 +366,7 @@ static int atm_tc_enqueue(struct sk_buff *skb, struct Qdisc *sch)
 	int ret = NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
 
 	pr_debug("atm_tc_enqueue(skb %p,sch %p,[qdisc %p])\n", skb, sch, p);
-	result = TC_POLICE_OK;	/* be nice to gcc */
+	result = TC_ACT_OK;	/* be nice to gcc */
 	flow = NULL;
 	if (TC_H_MAJ(skb->priority) != sch->handle ||
 	    !(flow = (struct atm_flow_data *)atm_tc_get(sch, skb->priority))) {
@@ -403,7 +403,7 @@ static int atm_tc_enqueue(struct sk_buff *skb, struct Qdisc *sch)
 		case TC_ACT_SHOT:
 			kfree_skb(skb);
 			goto drop;
-		case TC_POLICE_RECLASSIFY:
+		case TC_ACT_RECLASSIFY:
 			if (flow->excess)
 				flow = flow->excess;
 			else
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Patch net-next] act_police: rename tcf_act_police_locate() to tcf_act_police_init()
  2016-06-13 17:47 [Patch net-next] net_sched: remove internal use of TC_POLICE_* Cong Wang
@ 2016-06-13 17:47 ` Cong Wang
  2016-06-13 21:54   ` Jamal Hadi Salim
  2016-06-13 21:54 ` [Patch net-next] net_sched: remove internal use of TC_POLICE_* Jamal Hadi Salim
  2016-06-15  7:06 ` David Miller
  2 siblings, 1 reply; 5+ messages in thread
From: Cong Wang @ 2016-06-13 17:47 UTC (permalink / raw)
  To: netdev; +Cc: Cong Wang, Jamal Hadi Salim

This function is just ->init(), rename it to make it obvious.

Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
---
 net/sched/act_police.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/net/sched/act_police.c b/net/sched/act_police.c
index ff34dd3..1e8ede3 100644
--- a/net/sched/act_police.c
+++ b/net/sched/act_police.c
@@ -115,9 +115,9 @@ static const struct nla_policy police_policy[TCA_POLICE_MAX + 1] = {
 	[TCA_POLICE_RESULT]	= { .type = NLA_U32 },
 };
 
-static int tcf_act_police_locate(struct net *net, struct nlattr *nla,
-				 struct nlattr *est, struct tc_action *a,
-				 int ovr, int bind)
+static int tcf_act_police_init(struct net *net, struct nlattr *nla,
+			       struct nlattr *est, struct tc_action *a,
+			       int ovr, int bind)
 {
 	int ret = 0, err;
 	struct nlattr *tb[TCA_POLICE_MAX + 1];
@@ -366,7 +366,7 @@ static struct tc_action_ops act_police_ops = {
 	.owner		=	THIS_MODULE,
 	.act		=	tcf_act_police,
 	.dump		=	tcf_act_police_dump,
-	.init		=	tcf_act_police_locate,
+	.init		=	tcf_act_police_init,
 	.walk		=	tcf_act_police_walker,
 	.lookup		=	tcf_police_search,
 };
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Patch net-next] net_sched: remove internal use of TC_POLICE_*
  2016-06-13 17:47 [Patch net-next] net_sched: remove internal use of TC_POLICE_* Cong Wang
  2016-06-13 17:47 ` [Patch net-next] act_police: rename tcf_act_police_locate() to tcf_act_police_init() Cong Wang
@ 2016-06-13 21:54 ` Jamal Hadi Salim
  2016-06-15  7:06 ` David Miller
  2 siblings, 0 replies; 5+ messages in thread
From: Jamal Hadi Salim @ 2016-06-13 21:54 UTC (permalink / raw)
  To: Cong Wang, netdev

On 16-06-13 01:47 PM, Cong Wang wrote:
> These should be gone when we removed CONFIG_NET_CLS_POLICE.
> We can not totally remove them since they are exposed
> to userspace.
>
> Cc: Jamal Hadi Salim <jhs@mojatatu.com>
> Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>

Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Patch net-next] act_police: rename tcf_act_police_locate() to tcf_act_police_init()
  2016-06-13 17:47 ` [Patch net-next] act_police: rename tcf_act_police_locate() to tcf_act_police_init() Cong Wang
@ 2016-06-13 21:54   ` Jamal Hadi Salim
  0 siblings, 0 replies; 5+ messages in thread
From: Jamal Hadi Salim @ 2016-06-13 21:54 UTC (permalink / raw)
  To: Cong Wang, netdev

On 16-06-13 01:47 PM, Cong Wang wrote:
> This function is just ->init(), rename it to make it obvious.
>
> Cc: Jamal Hadi Salim <jhs@mojatatu.com>
> Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>

Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>

cheers,
jamal

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Patch net-next] net_sched: remove internal use of TC_POLICE_*
  2016-06-13 17:47 [Patch net-next] net_sched: remove internal use of TC_POLICE_* Cong Wang
  2016-06-13 17:47 ` [Patch net-next] act_police: rename tcf_act_police_locate() to tcf_act_police_init() Cong Wang
  2016-06-13 21:54 ` [Patch net-next] net_sched: remove internal use of TC_POLICE_* Jamal Hadi Salim
@ 2016-06-15  7:06 ` David Miller
  2 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2016-06-15  7:06 UTC (permalink / raw)
  To: xiyou.wangcong; +Cc: netdev, jhs

From: Cong Wang <xiyou.wangcong@gmail.com>
Date: Mon, 13 Jun 2016 10:47:43 -0700

> These should be gone when we removed CONFIG_NET_CLS_POLICE.
> We can not totally remove them since they are exposed
> to userspace.
> 
> Cc: Jamal Hadi Salim <jhs@mojatatu.com>
> Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>

Applied.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-06-15  7:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-13 17:47 [Patch net-next] net_sched: remove internal use of TC_POLICE_* Cong Wang
2016-06-13 17:47 ` [Patch net-next] act_police: rename tcf_act_police_locate() to tcf_act_police_init() Cong Wang
2016-06-13 21:54   ` Jamal Hadi Salim
2016-06-13 21:54 ` [Patch net-next] net_sched: remove internal use of TC_POLICE_* Jamal Hadi Salim
2016-06-15  7:06 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).