mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	sched: move tcf_proto_destroy and tcf_destroy_chain helpers into cls_api
Creation is done in this file, move destruction to be at the same place. Signed-off-by: Jiri Pirko <jiri@mellanox.com> Acked-by: Jamal Hadi Salim <jhs@mojatatu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
							parent
							
								
									79112c26f1
								
							
						
					
					
						commit
						cf1facda2f
					
				
					 15 changed files with 34 additions and 26 deletions
				
			
		| 
						 | 
					@ -17,6 +17,8 @@ struct tcf_walker {
 | 
				
			||||||
int register_tcf_proto_ops(struct tcf_proto_ops *ops);
 | 
					int register_tcf_proto_ops(struct tcf_proto_ops *ops);
 | 
				
			||||||
int unregister_tcf_proto_ops(struct tcf_proto_ops *ops);
 | 
					int unregister_tcf_proto_ops(struct tcf_proto_ops *ops);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void tcf_destroy_chain(struct tcf_proto __rcu **fl);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline unsigned long
 | 
					static inline unsigned long
 | 
				
			||||||
__cls_set_class(unsigned long *clp, unsigned long cl)
 | 
					__cls_set_class(unsigned long *clp, unsigned long cl)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -405,8 +405,6 @@ struct Qdisc *qdisc_create_dflt(struct netdev_queue *dev_queue,
 | 
				
			||||||
				const struct Qdisc_ops *ops, u32 parentid);
 | 
									const struct Qdisc_ops *ops, u32 parentid);
 | 
				
			||||||
void __qdisc_calculate_pkt_len(struct sk_buff *skb,
 | 
					void __qdisc_calculate_pkt_len(struct sk_buff *skb,
 | 
				
			||||||
			       const struct qdisc_size_table *stab);
 | 
								       const struct qdisc_size_table *stab);
 | 
				
			||||||
bool tcf_proto_destroy(struct tcf_proto *tp, bool force);
 | 
					 | 
				
			||||||
void tcf_destroy_chain(struct tcf_proto __rcu **fl);
 | 
					 | 
				
			||||||
int skb_do_redirect(struct sk_buff *);
 | 
					int skb_do_redirect(struct sk_buff *);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline void skb_reset_tc(struct sk_buff *skb)
 | 
					static inline void skb_reset_tc(struct sk_buff *skb)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -127,6 +127,27 @@ static inline u32 tcf_auto_prio(struct tcf_proto *tp)
 | 
				
			||||||
	return first;
 | 
						return first;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static bool tcf_proto_destroy(struct tcf_proto *tp, bool force)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						if (tp->ops->destroy(tp, force)) {
 | 
				
			||||||
 | 
							module_put(tp->ops->owner);
 | 
				
			||||||
 | 
							kfree_rcu(tp, rcu);
 | 
				
			||||||
 | 
							return true;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						return false;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void tcf_destroy_chain(struct tcf_proto __rcu **fl)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						struct tcf_proto *tp;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						while ((tp = rtnl_dereference(*fl)) != NULL) {
 | 
				
			||||||
 | 
							RCU_INIT_POINTER(*fl, tp->next);
 | 
				
			||||||
 | 
							tcf_proto_destroy(tp, true);
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					EXPORT_SYMBOL(tcf_destroy_chain);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* Add/change/delete/get a filter node */
 | 
					/* Add/change/delete/get a filter node */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int tc_ctl_tfilter(struct sk_buff *skb, struct nlmsghdr *n)
 | 
					static int tc_ctl_tfilter(struct sk_buff *skb, struct nlmsghdr *n)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1900,28 +1900,6 @@ int tc_classify(struct sk_buff *skb, const struct tcf_proto *tp,
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
EXPORT_SYMBOL(tc_classify);
 | 
					EXPORT_SYMBOL(tc_classify);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bool tcf_proto_destroy(struct tcf_proto *tp, bool force)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	if (tp->ops->destroy(tp, force)) {
 | 
					 | 
				
			||||||
		module_put(tp->ops->owner);
 | 
					 | 
				
			||||||
		kfree_rcu(tp, rcu);
 | 
					 | 
				
			||||||
		return true;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	return false;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
void tcf_destroy_chain(struct tcf_proto __rcu **fl)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	struct tcf_proto *tp;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	while ((tp = rtnl_dereference(*fl)) != NULL) {
 | 
					 | 
				
			||||||
		RCU_INIT_POINTER(*fl, tp->next);
 | 
					 | 
				
			||||||
		tcf_proto_destroy(tp, true);
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
EXPORT_SYMBOL(tcf_destroy_chain);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#ifdef CONFIG_PROC_FS
 | 
					#ifdef CONFIG_PROC_FS
 | 
				
			||||||
static int psched_show(struct seq_file *seq, void *v)
 | 
					static int psched_show(struct seq_file *seq, void *v)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -15,6 +15,7 @@
 | 
				
			||||||
#include <linux/file.h>		/* for fput */
 | 
					#include <linux/file.h>		/* for fput */
 | 
				
			||||||
#include <net/netlink.h>
 | 
					#include <net/netlink.h>
 | 
				
			||||||
#include <net/pkt_sched.h>
 | 
					#include <net/pkt_sched.h>
 | 
				
			||||||
 | 
					#include <net/pkt_cls.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
 * The ATM queuing discipline provides a framework for invoking classifiers
 | 
					 * The ATM queuing discipline provides a framework for invoking classifiers
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -19,6 +19,7 @@
 | 
				
			||||||
#include <linux/skbuff.h>
 | 
					#include <linux/skbuff.h>
 | 
				
			||||||
#include <net/netlink.h>
 | 
					#include <net/netlink.h>
 | 
				
			||||||
#include <net/pkt_sched.h>
 | 
					#include <net/pkt_sched.h>
 | 
				
			||||||
 | 
					#include <net/pkt_cls.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*	Class-Based Queueing (CBQ) algorithm.
 | 
					/*	Class-Based Queueing (CBQ) algorithm.
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -16,6 +16,7 @@
 | 
				
			||||||
#include <linux/skbuff.h>
 | 
					#include <linux/skbuff.h>
 | 
				
			||||||
#include <linux/vmalloc.h>
 | 
					#include <linux/vmalloc.h>
 | 
				
			||||||
#include <net/pkt_sched.h>
 | 
					#include <net/pkt_sched.h>
 | 
				
			||||||
 | 
					#include <net/pkt_cls.h>
 | 
				
			||||||
#include <net/inet_ecn.h>
 | 
					#include <net/inet_ecn.h>
 | 
				
			||||||
#include <net/red.h>
 | 
					#include <net/red.h>
 | 
				
			||||||
#include <net/flow_dissector.h>
 | 
					#include <net/flow_dissector.h>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -13,6 +13,7 @@
 | 
				
			||||||
#include <linux/rtnetlink.h>
 | 
					#include <linux/rtnetlink.h>
 | 
				
			||||||
#include <linux/bitops.h>
 | 
					#include <linux/bitops.h>
 | 
				
			||||||
#include <net/pkt_sched.h>
 | 
					#include <net/pkt_sched.h>
 | 
				
			||||||
 | 
					#include <net/pkt_cls.h>
 | 
				
			||||||
#include <net/dsfield.h>
 | 
					#include <net/dsfield.h>
 | 
				
			||||||
#include <net/inet_ecn.h>
 | 
					#include <net/inet_ecn.h>
 | 
				
			||||||
#include <asm/byteorder.h>
 | 
					#include <asm/byteorder.h>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -23,6 +23,7 @@
 | 
				
			||||||
#include <linux/vmalloc.h>
 | 
					#include <linux/vmalloc.h>
 | 
				
			||||||
#include <net/netlink.h>
 | 
					#include <net/netlink.h>
 | 
				
			||||||
#include <net/pkt_sched.h>
 | 
					#include <net/pkt_sched.h>
 | 
				
			||||||
 | 
					#include <net/pkt_cls.h>
 | 
				
			||||||
#include <net/codel.h>
 | 
					#include <net/codel.h>
 | 
				
			||||||
#include <net/codel_impl.h>
 | 
					#include <net/codel_impl.h>
 | 
				
			||||||
#include <net/codel_qdisc.h>
 | 
					#include <net/codel_qdisc.h>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -40,6 +40,7 @@
 | 
				
			||||||
#include <net/netlink.h>
 | 
					#include <net/netlink.h>
 | 
				
			||||||
#include <net/sch_generic.h>
 | 
					#include <net/sch_generic.h>
 | 
				
			||||||
#include <net/pkt_sched.h>
 | 
					#include <net/pkt_sched.h>
 | 
				
			||||||
 | 
					#include <net/pkt_cls.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* HTB algorithm.
 | 
					/* HTB algorithm.
 | 
				
			||||||
    Author: devik@cdi.cz
 | 
					    Author: devik@cdi.cz
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -16,6 +16,7 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <net/netlink.h>
 | 
					#include <net/netlink.h>
 | 
				
			||||||
#include <net/pkt_sched.h>
 | 
					#include <net/pkt_sched.h>
 | 
				
			||||||
 | 
					#include <net/pkt_cls.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static struct Qdisc *ingress_leaf(struct Qdisc *sch, unsigned long arg)
 | 
					static struct Qdisc *ingress_leaf(struct Qdisc *sch, unsigned long arg)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -25,7 +25,7 @@
 | 
				
			||||||
#include <linux/skbuff.h>
 | 
					#include <linux/skbuff.h>
 | 
				
			||||||
#include <net/netlink.h>
 | 
					#include <net/netlink.h>
 | 
				
			||||||
#include <net/pkt_sched.h>
 | 
					#include <net/pkt_sched.h>
 | 
				
			||||||
 | 
					#include <net/pkt_cls.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct multiq_sched_data {
 | 
					struct multiq_sched_data {
 | 
				
			||||||
	u16 bands;
 | 
						u16 bands;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -20,7 +20,7 @@
 | 
				
			||||||
#include <linux/skbuff.h>
 | 
					#include <linux/skbuff.h>
 | 
				
			||||||
#include <net/netlink.h>
 | 
					#include <net/netlink.h>
 | 
				
			||||||
#include <net/pkt_sched.h>
 | 
					#include <net/pkt_sched.h>
 | 
				
			||||||
 | 
					#include <net/pkt_cls.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct prio_sched_data {
 | 
					struct prio_sched_data {
 | 
				
			||||||
	int bands;
 | 
						int bands;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -25,6 +25,7 @@
 | 
				
			||||||
#include <linux/jhash.h>
 | 
					#include <linux/jhash.h>
 | 
				
			||||||
#include <net/ip.h>
 | 
					#include <net/ip.h>
 | 
				
			||||||
#include <net/pkt_sched.h>
 | 
					#include <net/pkt_sched.h>
 | 
				
			||||||
 | 
					#include <net/pkt_cls.h>
 | 
				
			||||||
#include <net/inet_ecn.h>
 | 
					#include <net/inet_ecn.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -23,6 +23,7 @@
 | 
				
			||||||
#include <linux/vmalloc.h>
 | 
					#include <linux/vmalloc.h>
 | 
				
			||||||
#include <net/netlink.h>
 | 
					#include <net/netlink.h>
 | 
				
			||||||
#include <net/pkt_sched.h>
 | 
					#include <net/pkt_sched.h>
 | 
				
			||||||
 | 
					#include <net/pkt_cls.h>
 | 
				
			||||||
#include <net/red.h>
 | 
					#include <net/red.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue