| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __NET_SCHED_GENERIC_H | 
 | 2 | #define __NET_SCHED_GENERIC_H | 
 | 3 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | #include <linux/netdevice.h> | 
 | 5 | #include <linux/types.h> | 
 | 6 | #include <linux/rcupdate.h> | 
 | 7 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/pkt_sched.h> | 
 | 9 | #include <linux/pkt_cls.h> | 
 | 10 | #include <net/gen_stats.h> | 
| Thomas Graf | be577dd | 2007-03-22 11:55:50 -0700 | [diff] [blame] | 11 | #include <net/rtnetlink.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 |  | 
 | 13 | struct Qdisc_ops; | 
 | 14 | struct qdisc_walker; | 
 | 15 | struct tcf_walker; | 
 | 16 | struct module; | 
 | 17 |  | 
 | 18 | struct qdisc_rate_table | 
 | 19 | { | 
 | 20 | 	struct tc_ratespec rate; | 
 | 21 | 	u32		data[256]; | 
 | 22 | 	struct qdisc_rate_table *next; | 
 | 23 | 	int		refcnt; | 
 | 24 | }; | 
 | 25 |  | 
| David S. Miller | e2627c8 | 2008-07-16 00:56:32 -0700 | [diff] [blame] | 26 | enum qdisc_state_t | 
 | 27 | { | 
 | 28 | 	__QDISC_STATE_RUNNING, | 
| David S. Miller | 37437bb | 2008-07-16 02:15:04 -0700 | [diff] [blame] | 29 | 	__QDISC_STATE_SCHED, | 
| David S. Miller | a9312ae | 2008-08-17 21:51:03 -0700 | [diff] [blame] | 30 | 	__QDISC_STATE_DEACTIVATED, | 
| David S. Miller | e2627c8 | 2008-07-16 00:56:32 -0700 | [diff] [blame] | 31 | }; | 
 | 32 |  | 
| Jussi Kivilinna | 175f9c1 | 2008-07-20 00:08:47 -0700 | [diff] [blame] | 33 | struct qdisc_size_table { | 
 | 34 | 	struct list_head	list; | 
 | 35 | 	struct tc_sizespec	szopts; | 
 | 36 | 	int			refcnt; | 
 | 37 | 	u16			data[]; | 
 | 38 | }; | 
 | 39 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | struct Qdisc | 
 | 41 | { | 
 | 42 | 	int 			(*enqueue)(struct sk_buff *skb, struct Qdisc *dev); | 
 | 43 | 	struct sk_buff *	(*dequeue)(struct Qdisc *dev); | 
 | 44 | 	unsigned		flags; | 
 | 45 | #define TCQ_F_BUILTIN	1 | 
 | 46 | #define TCQ_F_THROTTLED	2 | 
 | 47 | #define TCQ_F_INGRESS	4 | 
 | 48 | 	int			padded; | 
 | 49 | 	struct Qdisc_ops	*ops; | 
| Jussi Kivilinna | 175f9c1 | 2008-07-20 00:08:47 -0700 | [diff] [blame] | 50 | 	struct qdisc_size_table	*stab; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | 	u32			handle; | 
 | 52 | 	u32			parent; | 
 | 53 | 	atomic_t		refcnt; | 
| David S. Miller | e2627c8 | 2008-07-16 00:56:32 -0700 | [diff] [blame] | 54 | 	unsigned long		state; | 
| Jarek Poplawski | 554794d | 2008-10-06 09:54:39 -0700 | [diff] [blame] | 55 | 	struct sk_buff		*gso_skb; | 
| David S. Miller | 242f8bfe | 2008-09-22 22:15:30 -0700 | [diff] [blame] | 56 | 	struct sk_buff_head	requeue; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | 	struct sk_buff_head	q; | 
| David S. Miller | bb949fb | 2008-07-08 16:55:56 -0700 | [diff] [blame] | 58 | 	struct netdev_queue	*dev_queue; | 
| David S. Miller | 37437bb | 2008-07-16 02:15:04 -0700 | [diff] [blame] | 59 | 	struct Qdisc		*next_sched; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | 	struct list_head	list; | 
 | 61 |  | 
 | 62 | 	struct gnet_stats_basic	bstats; | 
 | 63 | 	struct gnet_stats_queue	qstats; | 
 | 64 | 	struct gnet_stats_rate_est	rate_est; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | 	int			(*reshape_fail)(struct sk_buff *skb, | 
 | 66 | 					struct Qdisc *q); | 
 | 67 |  | 
| David S. Miller | 72b25a9 | 2008-07-18 20:54:17 -0700 | [diff] [blame] | 68 | 	void			*u32_node; | 
 | 69 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | 	/* This field is deprecated, but it is still used by CBQ | 
 | 71 | 	 * and it will live until better solution will be invented. | 
 | 72 | 	 */ | 
 | 73 | 	struct Qdisc		*__parent; | 
 | 74 | }; | 
 | 75 |  | 
 | 76 | struct Qdisc_class_ops | 
 | 77 | { | 
 | 78 | 	/* Child qdisc manipulation */ | 
 | 79 | 	int			(*graft)(struct Qdisc *, unsigned long cl, | 
 | 80 | 					struct Qdisc *, struct Qdisc **); | 
 | 81 | 	struct Qdisc *		(*leaf)(struct Qdisc *, unsigned long cl); | 
| Patrick McHardy | 43effa1 | 2006-11-29 17:35:48 -0800 | [diff] [blame] | 82 | 	void			(*qlen_notify)(struct Qdisc *, unsigned long); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 |  | 
 | 84 | 	/* Class manipulation routines */ | 
 | 85 | 	unsigned long		(*get)(struct Qdisc *, u32 classid); | 
 | 86 | 	void			(*put)(struct Qdisc *, unsigned long); | 
 | 87 | 	int			(*change)(struct Qdisc *, u32, u32, | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 88 | 					struct nlattr **, unsigned long *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | 	int			(*delete)(struct Qdisc *, unsigned long); | 
 | 90 | 	void			(*walk)(struct Qdisc *, struct qdisc_walker * arg); | 
 | 91 |  | 
 | 92 | 	/* Filter manipulation */ | 
 | 93 | 	struct tcf_proto **	(*tcf_chain)(struct Qdisc *, unsigned long); | 
 | 94 | 	unsigned long		(*bind_tcf)(struct Qdisc *, unsigned long, | 
 | 95 | 					u32 classid); | 
 | 96 | 	void			(*unbind_tcf)(struct Qdisc *, unsigned long); | 
 | 97 |  | 
 | 98 | 	/* rtnetlink specific */ | 
 | 99 | 	int			(*dump)(struct Qdisc *, unsigned long, | 
 | 100 | 					struct sk_buff *skb, struct tcmsg*); | 
 | 101 | 	int			(*dump_stats)(struct Qdisc *, unsigned long, | 
 | 102 | 					struct gnet_dump *); | 
 | 103 | }; | 
 | 104 |  | 
 | 105 | struct Qdisc_ops | 
 | 106 | { | 
 | 107 | 	struct Qdisc_ops	*next; | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 108 | 	const struct Qdisc_class_ops	*cl_ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | 	char			id[IFNAMSIZ]; | 
 | 110 | 	int			priv_size; | 
 | 111 |  | 
 | 112 | 	int 			(*enqueue)(struct sk_buff *, struct Qdisc *); | 
 | 113 | 	struct sk_buff *	(*dequeue)(struct Qdisc *); | 
 | 114 | 	int 			(*requeue)(struct sk_buff *, struct Qdisc *); | 
 | 115 | 	unsigned int		(*drop)(struct Qdisc *); | 
 | 116 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 117 | 	int			(*init)(struct Qdisc *, struct nlattr *arg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | 	void			(*reset)(struct Qdisc *); | 
 | 119 | 	void			(*destroy)(struct Qdisc *); | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 120 | 	int			(*change)(struct Qdisc *, struct nlattr *arg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 |  | 
 | 122 | 	int			(*dump)(struct Qdisc *, struct sk_buff *); | 
 | 123 | 	int			(*dump_stats)(struct Qdisc *, struct gnet_dump *); | 
 | 124 |  | 
 | 125 | 	struct module		*owner; | 
 | 126 | }; | 
 | 127 |  | 
 | 128 |  | 
 | 129 | struct tcf_result | 
 | 130 | { | 
 | 131 | 	unsigned long	class; | 
 | 132 | 	u32		classid; | 
 | 133 | }; | 
 | 134 |  | 
 | 135 | struct tcf_proto_ops | 
 | 136 | { | 
 | 137 | 	struct tcf_proto_ops	*next; | 
 | 138 | 	char			kind[IFNAMSIZ]; | 
 | 139 |  | 
 | 140 | 	int			(*classify)(struct sk_buff*, struct tcf_proto*, | 
 | 141 | 					struct tcf_result *); | 
 | 142 | 	int			(*init)(struct tcf_proto*); | 
 | 143 | 	void			(*destroy)(struct tcf_proto*); | 
 | 144 |  | 
 | 145 | 	unsigned long		(*get)(struct tcf_proto*, u32 handle); | 
 | 146 | 	void			(*put)(struct tcf_proto*, unsigned long); | 
 | 147 | 	int			(*change)(struct tcf_proto*, unsigned long, | 
| Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 148 | 					u32 handle, struct nlattr **, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | 					unsigned long *); | 
 | 150 | 	int			(*delete)(struct tcf_proto*, unsigned long); | 
 | 151 | 	void			(*walk)(struct tcf_proto*, struct tcf_walker *arg); | 
 | 152 |  | 
 | 153 | 	/* rtnetlink specific */ | 
 | 154 | 	int			(*dump)(struct tcf_proto*, unsigned long, | 
 | 155 | 					struct sk_buff *skb, struct tcmsg*); | 
 | 156 |  | 
 | 157 | 	struct module		*owner; | 
 | 158 | }; | 
 | 159 |  | 
 | 160 | struct tcf_proto | 
 | 161 | { | 
 | 162 | 	/* Fast access part */ | 
 | 163 | 	struct tcf_proto	*next; | 
 | 164 | 	void			*root; | 
 | 165 | 	int			(*classify)(struct sk_buff*, struct tcf_proto*, | 
 | 166 | 					struct tcf_result *); | 
| Al Viro | 66c6f52 | 2006-11-20 18:07:51 -0800 | [diff] [blame] | 167 | 	__be16			protocol; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 |  | 
 | 169 | 	/* All the rest */ | 
 | 170 | 	u32			prio; | 
 | 171 | 	u32			classid; | 
 | 172 | 	struct Qdisc		*q; | 
 | 173 | 	void			*data; | 
 | 174 | 	struct tcf_proto_ops	*ops; | 
 | 175 | }; | 
 | 176 |  | 
| Jussi Kivilinna | 175f9c1 | 2008-07-20 00:08:47 -0700 | [diff] [blame] | 177 | struct qdisc_skb_cb { | 
 | 178 | 	unsigned int		pkt_len; | 
 | 179 | 	char			data[]; | 
 | 180 | }; | 
 | 181 |  | 
 | 182 | static inline struct qdisc_skb_cb *qdisc_skb_cb(struct sk_buff *skb) | 
 | 183 | { | 
 | 184 | 	return (struct qdisc_skb_cb *)skb->cb; | 
 | 185 | } | 
 | 186 |  | 
| David S. Miller | 8387400 | 2008-07-17 00:53:03 -0700 | [diff] [blame] | 187 | static inline spinlock_t *qdisc_lock(struct Qdisc *qdisc) | 
 | 188 | { | 
 | 189 | 	return &qdisc->q.lock; | 
 | 190 | } | 
 | 191 |  | 
| David S. Miller | 7698b4f | 2008-07-16 01:42:40 -0700 | [diff] [blame] | 192 | static inline struct Qdisc *qdisc_root(struct Qdisc *qdisc) | 
 | 193 | { | 
 | 194 | 	return qdisc->dev_queue->qdisc; | 
 | 195 | } | 
 | 196 |  | 
| Jarek Poplawski | 2540e05 | 2008-08-21 05:11:14 -0700 | [diff] [blame] | 197 | static inline struct Qdisc *qdisc_root_sleeping(struct Qdisc *qdisc) | 
 | 198 | { | 
 | 199 | 	return qdisc->dev_queue->qdisc_sleeping; | 
 | 200 | } | 
 | 201 |  | 
| David S. Miller | 7e43f11 | 2008-08-02 23:27:37 -0700 | [diff] [blame] | 202 | /* The qdisc root lock is a mechanism by which to top level | 
 | 203 |  * of a qdisc tree can be locked from any qdisc node in the | 
 | 204 |  * forest.  This allows changing the configuration of some | 
 | 205 |  * aspect of the qdisc tree while blocking out asynchronous | 
 | 206 |  * qdisc access in the packet processing paths. | 
 | 207 |  * | 
 | 208 |  * It is only legal to do this when the root will not change | 
 | 209 |  * on us.  Otherwise we'll potentially lock the wrong qdisc | 
 | 210 |  * root.  This is enforced by holding the RTNL semaphore, which | 
 | 211 |  * all users of this lock accessor must do. | 
 | 212 |  */ | 
| David S. Miller | 7698b4f | 2008-07-16 01:42:40 -0700 | [diff] [blame] | 213 | static inline spinlock_t *qdisc_root_lock(struct Qdisc *qdisc) | 
 | 214 | { | 
 | 215 | 	struct Qdisc *root = qdisc_root(qdisc); | 
 | 216 |  | 
| David S. Miller | 7e43f11 | 2008-08-02 23:27:37 -0700 | [diff] [blame] | 217 | 	ASSERT_RTNL(); | 
| David S. Miller | 8387400 | 2008-07-17 00:53:03 -0700 | [diff] [blame] | 218 | 	return qdisc_lock(root); | 
| David S. Miller | 7698b4f | 2008-07-16 01:42:40 -0700 | [diff] [blame] | 219 | } | 
 | 220 |  | 
| Jarek Poplawski | f6f9b93 | 2008-08-27 02:25:17 -0700 | [diff] [blame] | 221 | static inline spinlock_t *qdisc_root_sleeping_lock(struct Qdisc *qdisc) | 
 | 222 | { | 
 | 223 | 	struct Qdisc *root = qdisc_root_sleeping(qdisc); | 
 | 224 |  | 
 | 225 | 	ASSERT_RTNL(); | 
 | 226 | 	return qdisc_lock(root); | 
 | 227 | } | 
 | 228 |  | 
| David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 229 | static inline struct net_device *qdisc_dev(struct Qdisc *qdisc) | 
 | 230 | { | 
 | 231 | 	return qdisc->dev_queue->dev; | 
 | 232 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 |  | 
| David S. Miller | 78a5b30 | 2008-07-16 03:12:24 -0700 | [diff] [blame] | 234 | static inline void sch_tree_lock(struct Qdisc *q) | 
 | 235 | { | 
| Jarek Poplawski | fe439dd | 2008-08-27 02:27:10 -0700 | [diff] [blame] | 236 | 	spin_lock_bh(qdisc_root_sleeping_lock(q)); | 
| David S. Miller | 78a5b30 | 2008-07-16 03:12:24 -0700 | [diff] [blame] | 237 | } | 
 | 238 |  | 
 | 239 | static inline void sch_tree_unlock(struct Qdisc *q) | 
 | 240 | { | 
| Jarek Poplawski | fe439dd | 2008-08-27 02:27:10 -0700 | [diff] [blame] | 241 | 	spin_unlock_bh(qdisc_root_sleeping_lock(q)); | 
| David S. Miller | 78a5b30 | 2008-07-16 03:12:24 -0700 | [diff] [blame] | 242 | } | 
 | 243 |  | 
 | 244 | #define tcf_tree_lock(tp)	sch_tree_lock((tp)->q) | 
 | 245 | #define tcf_tree_unlock(tp)	sch_tree_unlock((tp)->q) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 |  | 
| Thomas Graf | e41a33e | 2005-07-05 14:14:30 -0700 | [diff] [blame] | 247 | extern struct Qdisc noop_qdisc; | 
 | 248 | extern struct Qdisc_ops noop_qdisc_ops; | 
 | 249 |  | 
| Patrick McHardy | 6fe1c7a | 2008-07-05 23:21:31 -0700 | [diff] [blame] | 250 | struct Qdisc_class_common | 
 | 251 | { | 
 | 252 | 	u32			classid; | 
 | 253 | 	struct hlist_node	hnode; | 
 | 254 | }; | 
 | 255 |  | 
 | 256 | struct Qdisc_class_hash | 
 | 257 | { | 
 | 258 | 	struct hlist_head	*hash; | 
 | 259 | 	unsigned int		hashsize; | 
 | 260 | 	unsigned int		hashmask; | 
 | 261 | 	unsigned int		hashelems; | 
 | 262 | }; | 
 | 263 |  | 
 | 264 | static inline unsigned int qdisc_class_hash(u32 id, u32 mask) | 
 | 265 | { | 
 | 266 | 	id ^= id >> 8; | 
 | 267 | 	id ^= id >> 4; | 
 | 268 | 	return id & mask; | 
 | 269 | } | 
 | 270 |  | 
 | 271 | static inline struct Qdisc_class_common * | 
 | 272 | qdisc_class_find(struct Qdisc_class_hash *hash, u32 id) | 
 | 273 | { | 
 | 274 | 	struct Qdisc_class_common *cl; | 
 | 275 | 	struct hlist_node *n; | 
 | 276 | 	unsigned int h; | 
 | 277 |  | 
 | 278 | 	h = qdisc_class_hash(id, hash->hashmask); | 
 | 279 | 	hlist_for_each_entry(cl, n, &hash->hash[h], hnode) { | 
 | 280 | 		if (cl->classid == id) | 
 | 281 | 			return cl; | 
 | 282 | 	} | 
 | 283 | 	return NULL; | 
 | 284 | } | 
 | 285 |  | 
 | 286 | extern int qdisc_class_hash_init(struct Qdisc_class_hash *); | 
 | 287 | extern void qdisc_class_hash_insert(struct Qdisc_class_hash *, struct Qdisc_class_common *); | 
 | 288 | extern void qdisc_class_hash_remove(struct Qdisc_class_hash *, struct Qdisc_class_common *); | 
 | 289 | extern void qdisc_class_hash_grow(struct Qdisc *, struct Qdisc_class_hash *); | 
 | 290 | extern void qdisc_class_hash_destroy(struct Qdisc_class_hash *); | 
 | 291 |  | 
| Thomas Graf | e41a33e | 2005-07-05 14:14:30 -0700 | [diff] [blame] | 292 | extern void dev_init_scheduler(struct net_device *dev); | 
 | 293 | extern void dev_shutdown(struct net_device *dev); | 
 | 294 | extern void dev_activate(struct net_device *dev); | 
 | 295 | extern void dev_deactivate(struct net_device *dev); | 
 | 296 | extern void qdisc_reset(struct Qdisc *qdisc); | 
 | 297 | extern void qdisc_destroy(struct Qdisc *qdisc); | 
| Patrick McHardy | 43effa1 | 2006-11-29 17:35:48 -0800 | [diff] [blame] | 298 | extern void qdisc_tree_decrease_qlen(struct Qdisc *qdisc, unsigned int n); | 
| David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 299 | extern struct Qdisc *qdisc_alloc(struct netdev_queue *dev_queue, | 
| David S. Miller | bb949fb | 2008-07-08 16:55:56 -0700 | [diff] [blame] | 300 | 				 struct Qdisc_ops *ops); | 
| Thomas Graf | e41a33e | 2005-07-05 14:14:30 -0700 | [diff] [blame] | 301 | extern struct Qdisc *qdisc_create_dflt(struct net_device *dev, | 
| David S. Miller | bb949fb | 2008-07-08 16:55:56 -0700 | [diff] [blame] | 302 | 				       struct netdev_queue *dev_queue, | 
| Patrick McHardy | 9f9afec | 2006-11-29 17:35:18 -0800 | [diff] [blame] | 303 | 				       struct Qdisc_ops *ops, u32 parentid); | 
| Jussi Kivilinna | 175f9c1 | 2008-07-20 00:08:47 -0700 | [diff] [blame] | 304 | extern void qdisc_calculate_pkt_len(struct sk_buff *skb, | 
 | 305 | 				   struct qdisc_size_table *stab); | 
| Patrick McHardy | a48b5a6 | 2007-03-23 11:29:43 -0700 | [diff] [blame] | 306 | extern void tcf_destroy(struct tcf_proto *tp); | 
| Patrick McHardy | ff31ab5 | 2008-07-01 19:52:38 -0700 | [diff] [blame] | 307 | extern void tcf_destroy_chain(struct tcf_proto **fl); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 |  | 
| David S. Miller | 5aa7099 | 2008-07-08 22:59:10 -0700 | [diff] [blame] | 309 | /* Reset all TX qdiscs of a device.  */ | 
 | 310 | static inline void qdisc_reset_all_tx(struct net_device *dev) | 
 | 311 | { | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 312 | 	unsigned int i; | 
 | 313 | 	for (i = 0; i < dev->num_tx_queues; i++) | 
 | 314 | 		qdisc_reset(netdev_get_tx_queue(dev, i)->qdisc); | 
| David S. Miller | 5aa7099 | 2008-07-08 22:59:10 -0700 | [diff] [blame] | 315 | } | 
 | 316 |  | 
| David S. Miller | 3e745dd | 2008-07-08 23:00:25 -0700 | [diff] [blame] | 317 | /* Are all TX queues of the device empty?  */ | 
 | 318 | static inline bool qdisc_all_tx_empty(const struct net_device *dev) | 
 | 319 | { | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 320 | 	unsigned int i; | 
 | 321 | 	for (i = 0; i < dev->num_tx_queues; i++) { | 
 | 322 | 		struct netdev_queue *txq = netdev_get_tx_queue(dev, i); | 
 | 323 | 		const struct Qdisc *q = txq->qdisc; | 
| David S. Miller | 3e745dd | 2008-07-08 23:00:25 -0700 | [diff] [blame] | 324 |  | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 325 | 		if (q->q.qlen) | 
 | 326 | 			return false; | 
 | 327 | 	} | 
 | 328 | 	return true; | 
| David S. Miller | 3e745dd | 2008-07-08 23:00:25 -0700 | [diff] [blame] | 329 | } | 
 | 330 |  | 
| David S. Miller | 6fa9864 | 2008-07-08 23:01:06 -0700 | [diff] [blame] | 331 | /* Are any of the TX qdiscs changing?  */ | 
 | 332 | static inline bool qdisc_tx_changing(struct net_device *dev) | 
 | 333 | { | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 334 | 	unsigned int i; | 
 | 335 | 	for (i = 0; i < dev->num_tx_queues; i++) { | 
 | 336 | 		struct netdev_queue *txq = netdev_get_tx_queue(dev, i); | 
 | 337 | 		if (txq->qdisc != txq->qdisc_sleeping) | 
 | 338 | 			return true; | 
 | 339 | 	} | 
 | 340 | 	return false; | 
| David S. Miller | 6fa9864 | 2008-07-08 23:01:06 -0700 | [diff] [blame] | 341 | } | 
 | 342 |  | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 343 | /* Is the device using the noop qdisc on all queues?  */ | 
| David S. Miller | 0529794 | 2008-07-08 23:01:27 -0700 | [diff] [blame] | 344 | static inline bool qdisc_tx_is_noop(const struct net_device *dev) | 
 | 345 | { | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 346 | 	unsigned int i; | 
 | 347 | 	for (i = 0; i < dev->num_tx_queues; i++) { | 
 | 348 | 		struct netdev_queue *txq = netdev_get_tx_queue(dev, i); | 
 | 349 | 		if (txq->qdisc != &noop_qdisc) | 
 | 350 | 			return false; | 
 | 351 | 	} | 
 | 352 | 	return true; | 
| David S. Miller | 0529794 | 2008-07-08 23:01:27 -0700 | [diff] [blame] | 353 | } | 
 | 354 |  | 
| Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 355 | static inline unsigned int qdisc_pkt_len(struct sk_buff *skb) | 
 | 356 | { | 
| Jussi Kivilinna | 175f9c1 | 2008-07-20 00:08:47 -0700 | [diff] [blame] | 357 | 	return qdisc_skb_cb(skb)->pkt_len; | 
| Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 358 | } | 
 | 359 |  | 
| Jarek Poplawski | c27f339 | 2008-08-04 22:39:11 -0700 | [diff] [blame] | 360 | /* additional qdisc xmit flags (NET_XMIT_MASK in linux/netdevice.h) */ | 
| Jarek Poplawski | 378a2f0 | 2008-08-04 22:31:03 -0700 | [diff] [blame] | 361 | enum net_xmit_qdisc_t { | 
 | 362 | 	__NET_XMIT_STOLEN = 0x00010000, | 
| Jarek Poplawski | c27f339 | 2008-08-04 22:39:11 -0700 | [diff] [blame] | 363 | 	__NET_XMIT_BYPASS = 0x00020000, | 
| Jarek Poplawski | 378a2f0 | 2008-08-04 22:31:03 -0700 | [diff] [blame] | 364 | }; | 
 | 365 |  | 
| Jarek Poplawski | c27f339 | 2008-08-04 22:39:11 -0700 | [diff] [blame] | 366 | #ifdef CONFIG_NET_CLS_ACT | 
| Jarek Poplawski | 378a2f0 | 2008-08-04 22:31:03 -0700 | [diff] [blame] | 367 | #define net_xmit_drop_count(e)	((e) & __NET_XMIT_STOLEN ? 0 : 1) | 
| Jarek Poplawski | 378a2f0 | 2008-08-04 22:31:03 -0700 | [diff] [blame] | 368 | #else | 
 | 369 | #define net_xmit_drop_count(e)	(1) | 
 | 370 | #endif | 
 | 371 |  | 
| Jussi Kivilinna | 5f86173 | 2008-07-20 00:08:04 -0700 | [diff] [blame] | 372 | static inline int qdisc_enqueue(struct sk_buff *skb, struct Qdisc *sch) | 
 | 373 | { | 
| David S. Miller | 3a682fb | 2008-07-20 18:13:01 -0700 | [diff] [blame] | 374 | #ifdef CONFIG_NET_SCHED | 
| Jussi Kivilinna | 175f9c1 | 2008-07-20 00:08:47 -0700 | [diff] [blame] | 375 | 	if (sch->stab) | 
 | 376 | 		qdisc_calculate_pkt_len(skb, sch->stab); | 
| David S. Miller | 3a682fb | 2008-07-20 18:13:01 -0700 | [diff] [blame] | 377 | #endif | 
| Jussi Kivilinna | 5f86173 | 2008-07-20 00:08:04 -0700 | [diff] [blame] | 378 | 	return sch->enqueue(skb, sch); | 
 | 379 | } | 
 | 380 |  | 
 | 381 | static inline int qdisc_enqueue_root(struct sk_buff *skb, struct Qdisc *sch) | 
 | 382 | { | 
| Jussi Kivilinna | 175f9c1 | 2008-07-20 00:08:47 -0700 | [diff] [blame] | 383 | 	qdisc_skb_cb(skb)->pkt_len = skb->len; | 
| Jarek Poplawski | 378a2f0 | 2008-08-04 22:31:03 -0700 | [diff] [blame] | 384 | 	return qdisc_enqueue(skb, sch) & NET_XMIT_MASK; | 
| Jussi Kivilinna | 5f86173 | 2008-07-20 00:08:04 -0700 | [diff] [blame] | 385 | } | 
 | 386 |  | 
| Thomas Graf | 9972b25 | 2005-06-18 22:57:26 -0700 | [diff] [blame] | 387 | static inline int __qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch, | 
 | 388 | 				       struct sk_buff_head *list) | 
 | 389 | { | 
 | 390 | 	__skb_queue_tail(list, skb); | 
| Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 391 | 	sch->qstats.backlog += qdisc_pkt_len(skb); | 
 | 392 | 	sch->bstats.bytes += qdisc_pkt_len(skb); | 
| Thomas Graf | 9972b25 | 2005-06-18 22:57:26 -0700 | [diff] [blame] | 393 | 	sch->bstats.packets++; | 
 | 394 |  | 
 | 395 | 	return NET_XMIT_SUCCESS; | 
 | 396 | } | 
 | 397 |  | 
 | 398 | static inline int qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch) | 
 | 399 | { | 
 | 400 | 	return __qdisc_enqueue_tail(skb, sch, &sch->q); | 
 | 401 | } | 
 | 402 |  | 
 | 403 | static inline struct sk_buff *__qdisc_dequeue_head(struct Qdisc *sch, | 
 | 404 | 						   struct sk_buff_head *list) | 
 | 405 | { | 
 | 406 | 	struct sk_buff *skb = __skb_dequeue(list); | 
 | 407 |  | 
 | 408 | 	if (likely(skb != NULL)) | 
| Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 409 | 		sch->qstats.backlog -= qdisc_pkt_len(skb); | 
| Thomas Graf | 9972b25 | 2005-06-18 22:57:26 -0700 | [diff] [blame] | 410 |  | 
 | 411 | 	return skb; | 
 | 412 | } | 
 | 413 |  | 
 | 414 | static inline struct sk_buff *qdisc_dequeue_head(struct Qdisc *sch) | 
 | 415 | { | 
 | 416 | 	return __qdisc_dequeue_head(sch, &sch->q); | 
 | 417 | } | 
 | 418 |  | 
 | 419 | static inline struct sk_buff *__qdisc_dequeue_tail(struct Qdisc *sch, | 
 | 420 | 						   struct sk_buff_head *list) | 
 | 421 | { | 
 | 422 | 	struct sk_buff *skb = __skb_dequeue_tail(list); | 
 | 423 |  | 
 | 424 | 	if (likely(skb != NULL)) | 
| Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 425 | 		sch->qstats.backlog -= qdisc_pkt_len(skb); | 
| Thomas Graf | 9972b25 | 2005-06-18 22:57:26 -0700 | [diff] [blame] | 426 |  | 
 | 427 | 	return skb; | 
 | 428 | } | 
 | 429 |  | 
 | 430 | static inline struct sk_buff *qdisc_dequeue_tail(struct Qdisc *sch) | 
 | 431 | { | 
 | 432 | 	return __qdisc_dequeue_tail(sch, &sch->q); | 
 | 433 | } | 
 | 434 |  | 
 | 435 | static inline int __qdisc_requeue(struct sk_buff *skb, struct Qdisc *sch, | 
 | 436 | 				  struct sk_buff_head *list) | 
 | 437 | { | 
 | 438 | 	__skb_queue_head(list, skb); | 
| Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 439 | 	sch->qstats.backlog += qdisc_pkt_len(skb); | 
| Thomas Graf | 9972b25 | 2005-06-18 22:57:26 -0700 | [diff] [blame] | 440 | 	sch->qstats.requeues++; | 
 | 441 |  | 
 | 442 | 	return NET_XMIT_SUCCESS; | 
 | 443 | } | 
 | 444 |  | 
 | 445 | static inline int qdisc_requeue(struct sk_buff *skb, struct Qdisc *sch) | 
 | 446 | { | 
 | 447 | 	return __qdisc_requeue(skb, sch, &sch->q); | 
 | 448 | } | 
 | 449 |  | 
 | 450 | static inline void __qdisc_reset_queue(struct Qdisc *sch, | 
 | 451 | 				       struct sk_buff_head *list) | 
 | 452 | { | 
 | 453 | 	/* | 
 | 454 | 	 * We do not know the backlog in bytes of this list, it | 
 | 455 | 	 * is up to the caller to correct it | 
 | 456 | 	 */ | 
| David S. Miller | 93245dd | 2008-07-17 04:03:43 -0700 | [diff] [blame] | 457 | 	__skb_queue_purge(list); | 
| Thomas Graf | 9972b25 | 2005-06-18 22:57:26 -0700 | [diff] [blame] | 458 | } | 
 | 459 |  | 
 | 460 | static inline void qdisc_reset_queue(struct Qdisc *sch) | 
 | 461 | { | 
 | 462 | 	__qdisc_reset_queue(sch, &sch->q); | 
 | 463 | 	sch->qstats.backlog = 0; | 
 | 464 | } | 
 | 465 |  | 
 | 466 | static inline unsigned int __qdisc_queue_drop(struct Qdisc *sch, | 
 | 467 | 					      struct sk_buff_head *list) | 
 | 468 | { | 
 | 469 | 	struct sk_buff *skb = __qdisc_dequeue_tail(sch, list); | 
 | 470 |  | 
 | 471 | 	if (likely(skb != NULL)) { | 
| Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 472 | 		unsigned int len = qdisc_pkt_len(skb); | 
| Thomas Graf | 9972b25 | 2005-06-18 22:57:26 -0700 | [diff] [blame] | 473 | 		kfree_skb(skb); | 
 | 474 | 		return len; | 
 | 475 | 	} | 
 | 476 |  | 
 | 477 | 	return 0; | 
 | 478 | } | 
 | 479 |  | 
 | 480 | static inline unsigned int qdisc_queue_drop(struct Qdisc *sch) | 
 | 481 | { | 
 | 482 | 	return __qdisc_queue_drop(sch, &sch->q); | 
 | 483 | } | 
 | 484 |  | 
 | 485 | static inline int qdisc_drop(struct sk_buff *skb, struct Qdisc *sch) | 
 | 486 | { | 
 | 487 | 	kfree_skb(skb); | 
 | 488 | 	sch->qstats.drops++; | 
 | 489 |  | 
 | 490 | 	return NET_XMIT_DROP; | 
 | 491 | } | 
 | 492 |  | 
 | 493 | static inline int qdisc_reshape_fail(struct sk_buff *skb, struct Qdisc *sch) | 
 | 494 | { | 
 | 495 | 	sch->qstats.drops++; | 
 | 496 |  | 
| Patrick McHardy | c3bc7cf | 2007-07-15 00:03:05 -0700 | [diff] [blame] | 497 | #ifdef CONFIG_NET_CLS_ACT | 
| Thomas Graf | 9972b25 | 2005-06-18 22:57:26 -0700 | [diff] [blame] | 498 | 	if (sch->reshape_fail == NULL || sch->reshape_fail(skb, sch)) | 
 | 499 | 		goto drop; | 
 | 500 |  | 
 | 501 | 	return NET_XMIT_SUCCESS; | 
 | 502 |  | 
 | 503 | drop: | 
 | 504 | #endif | 
 | 505 | 	kfree_skb(skb); | 
 | 506 | 	return NET_XMIT_DROP; | 
 | 507 | } | 
 | 508 |  | 
| Jesper Dangaard Brouer | e9bef55 | 2007-09-12 16:35:24 +0200 | [diff] [blame] | 509 | /* Length to Time (L2T) lookup in a qdisc_rate_table, to determine how | 
 | 510 |    long it will take to send a packet given its size. | 
 | 511 |  */ | 
 | 512 | static inline u32 qdisc_l2t(struct qdisc_rate_table* rtab, unsigned int pktlen) | 
 | 513 | { | 
| Jesper Dangaard Brouer | e08b099 | 2007-09-12 16:36:28 +0200 | [diff] [blame] | 514 | 	int slot = pktlen + rtab->rate.cell_align + rtab->rate.overhead; | 
 | 515 | 	if (slot < 0) | 
 | 516 | 		slot = 0; | 
| Jesper Dangaard Brouer | e9bef55 | 2007-09-12 16:35:24 +0200 | [diff] [blame] | 517 | 	slot >>= rtab->rate.cell_log; | 
 | 518 | 	if (slot > 255) | 
 | 519 | 		return (rtab->data[255]*(slot >> 8) + rtab->data[slot & 0xFF]); | 
 | 520 | 	return rtab->data[slot]; | 
 | 521 | } | 
 | 522 |  | 
| Jamal Hadi Salim | 12da81d | 2007-10-26 02:47:23 -0700 | [diff] [blame] | 523 | #ifdef CONFIG_NET_CLS_ACT | 
 | 524 | static inline struct sk_buff *skb_act_clone(struct sk_buff *skb, gfp_t gfp_mask) | 
 | 525 | { | 
 | 526 | 	struct sk_buff *n = skb_clone(skb, gfp_mask); | 
 | 527 |  | 
 | 528 | 	if (n) { | 
 | 529 | 		n->tc_verd = SET_TC_VERD(n->tc_verd, 0); | 
 | 530 | 		n->tc_verd = CLR_TC_OK2MUNGE(n->tc_verd); | 
 | 531 | 		n->tc_verd = CLR_TC_MUNGED(n->tc_verd); | 
| Jamal Hadi Salim | 12da81d | 2007-10-26 02:47:23 -0700 | [diff] [blame] | 532 | 	} | 
 | 533 | 	return n; | 
 | 534 | } | 
 | 535 | #endif | 
 | 536 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | #endif |