| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * net/sched/sch_generic.c	Generic packet scheduler routines. | 
 | 3 |  * | 
 | 4 |  *		This program is free software; you can redistribute it and/or | 
 | 5 |  *		modify it under the terms of the GNU General Public License | 
 | 6 |  *		as published by the Free Software Foundation; either version | 
 | 7 |  *		2 of the License, or (at your option) any later version. | 
 | 8 |  * | 
 | 9 |  * Authors:	Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> | 
 | 10 |  *              Jamal Hadi Salim, <hadi@cyberus.ca> 990601 | 
 | 11 |  *              - Ingress support | 
 | 12 |  */ | 
 | 13 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/bitops.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/module.h> | 
 | 16 | #include <linux/types.h> | 
 | 17 | #include <linux/kernel.h> | 
 | 18 | #include <linux/sched.h> | 
 | 19 | #include <linux/string.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/errno.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/netdevice.h> | 
 | 22 | #include <linux/skbuff.h> | 
 | 23 | #include <linux/rtnetlink.h> | 
 | 24 | #include <linux/init.h> | 
 | 25 | #include <linux/rcupdate.h> | 
 | 26 | #include <linux/list.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <net/pkt_sched.h> | 
 | 28 |  | 
 | 29 | /* Main transmission queue. */ | 
 | 30 |  | 
| Patrick McHardy | 0463d4a | 2007-04-16 17:02:10 -0700 | [diff] [blame] | 31 | /* Modifications to data participating in scheduling must be protected with | 
 | 32 |  * dev->queue_lock spinlock. | 
 | 33 |  * | 
 | 34 |  * The idea is the following: | 
 | 35 |  * - enqueue, dequeue are serialized via top level device | 
 | 36 |  *   spinlock dev->queue_lock. | 
| Patrick McHardy | fd44de7 | 2007-04-16 17:07:08 -0700 | [diff] [blame] | 37 |  * - ingress filtering is serialized via top level device | 
 | 38 |  *   spinlock dev->ingress_lock. | 
| Patrick McHardy | 0463d4a | 2007-04-16 17:02:10 -0700 | [diff] [blame] | 39 |  * - updates to tree and tree walking are only done under the rtnl mutex. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 |  | 
 | 42 | void qdisc_lock_tree(struct net_device *dev) | 
| Eric Dumazet | 9a429c4 | 2008-01-01 21:58:02 -0800 | [diff] [blame] | 43 | 	__acquires(dev->queue_lock) | 
 | 44 | 	__acquires(dev->ingress_lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | 	spin_lock_bh(&dev->queue_lock); | 
| Patrick McHardy | fd44de7 | 2007-04-16 17:07:08 -0700 | [diff] [blame] | 47 | 	spin_lock(&dev->ingress_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | } | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 49 | EXPORT_SYMBOL(qdisc_lock_tree); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 |  | 
 | 51 | void qdisc_unlock_tree(struct net_device *dev) | 
| Eric Dumazet | 9a429c4 | 2008-01-01 21:58:02 -0800 | [diff] [blame] | 52 | 	__releases(dev->ingress_lock) | 
 | 53 | 	__releases(dev->queue_lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | { | 
| Patrick McHardy | fd44de7 | 2007-04-16 17:07:08 -0700 | [diff] [blame] | 55 | 	spin_unlock(&dev->ingress_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | 	spin_unlock_bh(&dev->queue_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | } | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 58 | EXPORT_SYMBOL(qdisc_unlock_tree); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 |  | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 60 | static inline int qdisc_qlen(struct Qdisc *q) | 
 | 61 | { | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 62 | 	return q->q.qlen; | 
 | 63 | } | 
 | 64 |  | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 65 | static inline int dev_requeue_skb(struct sk_buff *skb, struct net_device *dev, | 
 | 66 | 				  struct Qdisc *q) | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 67 | { | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 68 | 	if (unlikely(skb->next)) | 
 | 69 | 		dev->gso_skb = skb; | 
 | 70 | 	else | 
 | 71 | 		q->ops->requeue(skb, q); | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 72 |  | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 73 | 	netif_schedule(dev); | 
 | 74 | 	return 0; | 
 | 75 | } | 
 | 76 |  | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 77 | static inline struct sk_buff *dev_dequeue_skb(struct net_device *dev, | 
 | 78 | 					      struct Qdisc *q) | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 79 | { | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 80 | 	struct sk_buff *skb; | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 81 |  | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 82 | 	if ((skb = dev->gso_skb)) | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 83 | 		dev->gso_skb = NULL; | 
 | 84 | 	else | 
 | 85 | 		skb = q->dequeue(q); | 
 | 86 |  | 
 | 87 | 	return skb; | 
 | 88 | } | 
 | 89 |  | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 90 | static inline int handle_dev_cpu_collision(struct sk_buff *skb, | 
 | 91 | 					   struct net_device *dev, | 
 | 92 | 					   struct Qdisc *q) | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 93 | { | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 94 | 	int ret; | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 95 |  | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 96 | 	if (unlikely(dev->xmit_lock_owner == smp_processor_id())) { | 
 | 97 | 		/* | 
 | 98 | 		 * Same CPU holding the lock. It may be a transient | 
 | 99 | 		 * configuration error, when hard_start_xmit() recurses. We | 
 | 100 | 		 * detect it by checking xmit owner and drop the packet when | 
 | 101 | 		 * deadloop is detected. Return OK to try the next skb. | 
 | 102 | 		 */ | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 103 | 		kfree_skb(skb); | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 104 | 		if (net_ratelimit()) | 
 | 105 | 			printk(KERN_WARNING "Dead loop on netdevice %s, " | 
 | 106 | 			       "fix it urgently!\n", dev->name); | 
 | 107 | 		ret = qdisc_qlen(q); | 
 | 108 | 	} else { | 
 | 109 | 		/* | 
 | 110 | 		 * Another cpu is holding lock, requeue & delay xmits for | 
 | 111 | 		 * some time. | 
 | 112 | 		 */ | 
 | 113 | 		__get_cpu_var(netdev_rx_stat).cpu_collision++; | 
 | 114 | 		ret = dev_requeue_skb(skb, dev, q); | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 115 | 	} | 
 | 116 |  | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 117 | 	return ret; | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 118 | } | 
 | 119 |  | 
| YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 120 | /* | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 121 |  * NOTE: Called under dev->queue_lock with locally disabled BH. | 
 | 122 |  * | 
 | 123 |  * __LINK_STATE_QDISC_RUNNING guarantees only one CPU can process this | 
 | 124 |  * device at a time. dev->queue_lock serializes queue accesses for | 
 | 125 |  * this device AND dev->qdisc pointer itself. | 
 | 126 |  * | 
 | 127 |  *  netif_tx_lock serializes accesses to device driver. | 
 | 128 |  * | 
 | 129 |  *  dev->queue_lock and netif_tx_lock are mutually exclusive, | 
 | 130 |  *  if one is grabbed, another must be free. | 
 | 131 |  * | 
 | 132 |  * Note, that this procedure can be called by a watchdog timer | 
 | 133 |  * | 
 | 134 |  * Returns to the caller: | 
 | 135 |  *				0  - queue is empty or throttled. | 
 | 136 |  *				>0 - queue is not empty. | 
 | 137 |  * | 
 | 138 |  */ | 
| Herbert Xu | 48d8332 | 2006-06-19 23:57:59 -0700 | [diff] [blame] | 139 | static inline int qdisc_restart(struct net_device *dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | { | 
 | 141 | 	struct Qdisc *q = dev->qdisc; | 
 | 142 | 	struct sk_buff *skb; | 
| Peter P Waskiewicz Jr | 5f1a485 | 2007-11-13 20:40:55 -0800 | [diff] [blame] | 143 | 	int ret = NETDEV_TX_BUSY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 |  | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 145 | 	/* Dequeue packet */ | 
 | 146 | 	if (unlikely((skb = dev_dequeue_skb(dev, q)) == NULL)) | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 147 | 		return 0; | 
| Herbert Xu | f6a78bf | 2006-06-22 02:57:17 -0700 | [diff] [blame] | 148 |  | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 149 |  | 
 | 150 | 	/* And release queue */ | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 151 | 	spin_unlock(&dev->queue_lock); | 
| Herbert Xu | d90df3a | 2007-05-10 04:55:14 -0700 | [diff] [blame] | 152 |  | 
| Jamal Hadi Salim | 8236632 | 2007-09-25 19:27:13 -0700 | [diff] [blame] | 153 | 	HARD_TX_LOCK(dev, smp_processor_id()); | 
| Peter P Waskiewicz Jr | 5f1a485 | 2007-11-13 20:40:55 -0800 | [diff] [blame] | 154 | 	if (!netif_subqueue_stopped(dev, skb)) | 
 | 155 | 		ret = dev_hard_start_xmit(skb, dev); | 
| Jamal Hadi Salim | 8236632 | 2007-09-25 19:27:13 -0700 | [diff] [blame] | 156 | 	HARD_TX_UNLOCK(dev); | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 157 |  | 
 | 158 | 	spin_lock(&dev->queue_lock); | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 159 | 	q = dev->qdisc; | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 160 |  | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 161 | 	switch (ret) { | 
 | 162 | 	case NETDEV_TX_OK: | 
 | 163 | 		/* Driver sent out skb successfully */ | 
 | 164 | 		ret = qdisc_qlen(q); | 
 | 165 | 		break; | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 166 |  | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 167 | 	case NETDEV_TX_LOCKED: | 
 | 168 | 		/* Driver try lock failed */ | 
 | 169 | 		ret = handle_dev_cpu_collision(skb, dev, q); | 
 | 170 | 		break; | 
 | 171 |  | 
 | 172 | 	default: | 
 | 173 | 		/* Driver returned NETDEV_TX_BUSY - requeue skb */ | 
 | 174 | 		if (unlikely (ret != NETDEV_TX_BUSY && net_ratelimit())) | 
 | 175 | 			printk(KERN_WARNING "BUG %s code %d qlen %d\n", | 
 | 176 | 			       dev->name, ret, q->q.qlen); | 
 | 177 |  | 
 | 178 | 		ret = dev_requeue_skb(skb, dev, q); | 
 | 179 | 		break; | 
 | 180 | 	} | 
 | 181 |  | 
 | 182 | 	return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | } | 
 | 184 |  | 
| Herbert Xu | 48d8332 | 2006-06-19 23:57:59 -0700 | [diff] [blame] | 185 | void __qdisc_run(struct net_device *dev) | 
 | 186 | { | 
| Herbert Xu | d90df3a | 2007-05-10 04:55:14 -0700 | [diff] [blame] | 187 | 	do { | 
 | 188 | 		if (!qdisc_restart(dev)) | 
 | 189 | 			break; | 
 | 190 | 	} while (!netif_queue_stopped(dev)); | 
| Herbert Xu | 48d8332 | 2006-06-19 23:57:59 -0700 | [diff] [blame] | 191 |  | 
 | 192 | 	clear_bit(__LINK_STATE_QDISC_RUNNING, &dev->state); | 
 | 193 | } | 
 | 194 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | static void dev_watchdog(unsigned long arg) | 
 | 196 | { | 
 | 197 | 	struct net_device *dev = (struct net_device *)arg; | 
 | 198 |  | 
| Herbert Xu | 932ff27 | 2006-06-09 12:20:56 -0700 | [diff] [blame] | 199 | 	netif_tx_lock(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | 	if (dev->qdisc != &noop_qdisc) { | 
 | 201 | 		if (netif_device_present(dev) && | 
 | 202 | 		    netif_running(dev) && | 
 | 203 | 		    netif_carrier_ok(dev)) { | 
 | 204 | 			if (netif_queue_stopped(dev) && | 
| Stephen Hemminger | 338f756 | 2006-05-16 15:02:12 -0700 | [diff] [blame] | 205 | 			    time_after(jiffies, dev->trans_start + dev->watchdog_timeo)) { | 
 | 206 |  | 
 | 207 | 				printk(KERN_INFO "NETDEV WATCHDOG: %s: transmit timed out\n", | 
 | 208 | 				       dev->name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | 				dev->tx_timeout(dev); | 
 | 210 | 			} | 
| Arjan van de Ven | f5a6e01 | 2007-02-05 17:59:51 -0800 | [diff] [blame] | 211 | 			if (!mod_timer(&dev->watchdog_timer, round_jiffies(jiffies + dev->watchdog_timeo))) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | 				dev_hold(dev); | 
 | 213 | 		} | 
 | 214 | 	} | 
| Herbert Xu | 932ff27 | 2006-06-09 12:20:56 -0700 | [diff] [blame] | 215 | 	netif_tx_unlock(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 |  | 
 | 217 | 	dev_put(dev); | 
 | 218 | } | 
 | 219 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | void __netdev_watchdog_up(struct net_device *dev) | 
 | 221 | { | 
 | 222 | 	if (dev->tx_timeout) { | 
 | 223 | 		if (dev->watchdog_timeo <= 0) | 
 | 224 | 			dev->watchdog_timeo = 5*HZ; | 
| Venkatesh Pallipadi | 60468d5 | 2007-05-31 21:28:44 -0700 | [diff] [blame] | 225 | 		if (!mod_timer(&dev->watchdog_timer, | 
 | 226 | 			       round_jiffies(jiffies + dev->watchdog_timeo))) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | 			dev_hold(dev); | 
 | 228 | 	} | 
 | 229 | } | 
 | 230 |  | 
 | 231 | static void dev_watchdog_up(struct net_device *dev) | 
 | 232 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | 	__netdev_watchdog_up(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | } | 
 | 235 |  | 
 | 236 | static void dev_watchdog_down(struct net_device *dev) | 
 | 237 | { | 
| Herbert Xu | 932ff27 | 2006-06-09 12:20:56 -0700 | [diff] [blame] | 238 | 	netif_tx_lock_bh(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | 	if (del_timer(&dev->watchdog_timer)) | 
| Stephen Hemminger | 1533306 | 2006-03-20 22:32:28 -0800 | [diff] [blame] | 240 | 		dev_put(dev); | 
| Herbert Xu | 932ff27 | 2006-06-09 12:20:56 -0700 | [diff] [blame] | 241 | 	netif_tx_unlock_bh(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | } | 
 | 243 |  | 
| Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 244 | /** | 
 | 245 |  *	netif_carrier_on - set carrier | 
 | 246 |  *	@dev: network device | 
 | 247 |  * | 
 | 248 |  * Device has detected that carrier. | 
 | 249 |  */ | 
| Denis Vlasenko | 0a242ef | 2005-08-11 15:32:53 -0700 | [diff] [blame] | 250 | void netif_carrier_on(struct net_device *dev) | 
 | 251 | { | 
| Jeff Garzik | bfaae0f | 2007-10-17 23:26:43 -0700 | [diff] [blame] | 252 | 	if (test_and_clear_bit(__LINK_STATE_NOCARRIER, &dev->state)) { | 
| Denis Vlasenko | 0a242ef | 2005-08-11 15:32:53 -0700 | [diff] [blame] | 253 | 		linkwatch_fire_event(dev); | 
| Jeff Garzik | bfaae0f | 2007-10-17 23:26:43 -0700 | [diff] [blame] | 254 | 		if (netif_running(dev)) | 
 | 255 | 			__netdev_watchdog_up(dev); | 
 | 256 | 	} | 
| Denis Vlasenko | 0a242ef | 2005-08-11 15:32:53 -0700 | [diff] [blame] | 257 | } | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 258 | EXPORT_SYMBOL(netif_carrier_on); | 
| Denis Vlasenko | 0a242ef | 2005-08-11 15:32:53 -0700 | [diff] [blame] | 259 |  | 
| Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 260 | /** | 
 | 261 |  *	netif_carrier_off - clear carrier | 
 | 262 |  *	@dev: network device | 
 | 263 |  * | 
 | 264 |  * Device has detected loss of carrier. | 
 | 265 |  */ | 
| Denis Vlasenko | 0a242ef | 2005-08-11 15:32:53 -0700 | [diff] [blame] | 266 | void netif_carrier_off(struct net_device *dev) | 
 | 267 | { | 
 | 268 | 	if (!test_and_set_bit(__LINK_STATE_NOCARRIER, &dev->state)) | 
 | 269 | 		linkwatch_fire_event(dev); | 
 | 270 | } | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 271 | EXPORT_SYMBOL(netif_carrier_off); | 
| Denis Vlasenko | 0a242ef | 2005-08-11 15:32:53 -0700 | [diff] [blame] | 272 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | /* "NOOP" scheduler: the best scheduler, recommended for all interfaces | 
 | 274 |    under all circumstances. It is difficult to invent anything faster or | 
 | 275 |    cheaper. | 
 | 276 |  */ | 
 | 277 |  | 
| Thomas Graf | 94df109 | 2005-06-18 22:59:08 -0700 | [diff] [blame] | 278 | static int noop_enqueue(struct sk_buff *skb, struct Qdisc * qdisc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | { | 
 | 280 | 	kfree_skb(skb); | 
 | 281 | 	return NET_XMIT_CN; | 
 | 282 | } | 
 | 283 |  | 
| Thomas Graf | 94df109 | 2005-06-18 22:59:08 -0700 | [diff] [blame] | 284 | static struct sk_buff *noop_dequeue(struct Qdisc * qdisc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | { | 
 | 286 | 	return NULL; | 
 | 287 | } | 
 | 288 |  | 
| Thomas Graf | 94df109 | 2005-06-18 22:59:08 -0700 | [diff] [blame] | 289 | static int noop_requeue(struct sk_buff *skb, struct Qdisc* qdisc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | { | 
 | 291 | 	if (net_ratelimit()) | 
| Thomas Graf | 94df109 | 2005-06-18 22:59:08 -0700 | [diff] [blame] | 292 | 		printk(KERN_DEBUG "%s deferred output. It is buggy.\n", | 
 | 293 | 		       skb->dev->name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | 	kfree_skb(skb); | 
 | 295 | 	return NET_XMIT_CN; | 
 | 296 | } | 
 | 297 |  | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 298 | struct Qdisc_ops noop_qdisc_ops __read_mostly = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | 	.id		=	"noop", | 
 | 300 | 	.priv_size	=	0, | 
 | 301 | 	.enqueue	=	noop_enqueue, | 
 | 302 | 	.dequeue	=	noop_dequeue, | 
 | 303 | 	.requeue	=	noop_requeue, | 
 | 304 | 	.owner		=	THIS_MODULE, | 
 | 305 | }; | 
 | 306 |  | 
 | 307 | struct Qdisc noop_qdisc = { | 
 | 308 | 	.enqueue	=	noop_enqueue, | 
 | 309 | 	.dequeue	=	noop_dequeue, | 
 | 310 | 	.flags		=	TCQ_F_BUILTIN, | 
| YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 311 | 	.ops		=	&noop_qdisc_ops, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | 	.list		=	LIST_HEAD_INIT(noop_qdisc.list), | 
 | 313 | }; | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 314 | EXPORT_SYMBOL(noop_qdisc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 |  | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 316 | static struct Qdisc_ops noqueue_qdisc_ops __read_mostly = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | 	.id		=	"noqueue", | 
 | 318 | 	.priv_size	=	0, | 
 | 319 | 	.enqueue	=	noop_enqueue, | 
 | 320 | 	.dequeue	=	noop_dequeue, | 
 | 321 | 	.requeue	=	noop_requeue, | 
 | 322 | 	.owner		=	THIS_MODULE, | 
 | 323 | }; | 
 | 324 |  | 
 | 325 | static struct Qdisc noqueue_qdisc = { | 
 | 326 | 	.enqueue	=	NULL, | 
 | 327 | 	.dequeue	=	noop_dequeue, | 
 | 328 | 	.flags		=	TCQ_F_BUILTIN, | 
 | 329 | 	.ops		=	&noqueue_qdisc_ops, | 
 | 330 | 	.list		=	LIST_HEAD_INIT(noqueue_qdisc.list), | 
 | 331 | }; | 
 | 332 |  | 
 | 333 |  | 
 | 334 | static const u8 prio2band[TC_PRIO_MAX+1] = | 
 | 335 | 	{ 1, 2, 2, 2, 1, 2, 0, 0 , 1, 1, 1, 1, 1, 1, 1, 1 }; | 
 | 336 |  | 
 | 337 | /* 3-band FIFO queue: old style, but should be a bit faster than | 
 | 338 |    generic prio+fifo combination. | 
 | 339 |  */ | 
 | 340 |  | 
| Thomas Graf | f87a9c3 | 2005-06-18 22:58:53 -0700 | [diff] [blame] | 341 | #define PFIFO_FAST_BANDS 3 | 
 | 342 |  | 
| Thomas Graf | 321090e | 2005-06-18 22:58:35 -0700 | [diff] [blame] | 343 | static inline struct sk_buff_head *prio2list(struct sk_buff *skb, | 
 | 344 | 					     struct Qdisc *qdisc) | 
 | 345 | { | 
 | 346 | 	struct sk_buff_head *list = qdisc_priv(qdisc); | 
 | 347 | 	return list + prio2band[skb->priority & TC_PRIO_MAX]; | 
 | 348 | } | 
 | 349 |  | 
| Thomas Graf | f87a9c3 | 2005-06-18 22:58:53 -0700 | [diff] [blame] | 350 | static int pfifo_fast_enqueue(struct sk_buff *skb, struct Qdisc* qdisc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | { | 
| Thomas Graf | 321090e | 2005-06-18 22:58:35 -0700 | [diff] [blame] | 352 | 	struct sk_buff_head *list = prio2list(skb, qdisc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 |  | 
| Thomas Graf | 821d24a | 2005-06-18 22:58:15 -0700 | [diff] [blame] | 354 | 	if (skb_queue_len(list) < qdisc->dev->tx_queue_len) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | 		qdisc->q.qlen++; | 
| Thomas Graf | 821d24a | 2005-06-18 22:58:15 -0700 | [diff] [blame] | 356 | 		return __qdisc_enqueue_tail(skb, qdisc, list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | 	} | 
| Thomas Graf | 821d24a | 2005-06-18 22:58:15 -0700 | [diff] [blame] | 358 |  | 
 | 359 | 	return qdisc_drop(skb, qdisc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | } | 
 | 361 |  | 
| Thomas Graf | f87a9c3 | 2005-06-18 22:58:53 -0700 | [diff] [blame] | 362 | static struct sk_buff *pfifo_fast_dequeue(struct Qdisc* qdisc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { | 
 | 364 | 	int prio; | 
 | 365 | 	struct sk_buff_head *list = qdisc_priv(qdisc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 |  | 
| Thomas Graf | 452f299 | 2005-07-18 13:30:53 -0700 | [diff] [blame] | 367 | 	for (prio = 0; prio < PFIFO_FAST_BANDS; prio++) { | 
 | 368 | 		if (!skb_queue_empty(list + prio)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | 			qdisc->q.qlen--; | 
| Thomas Graf | 452f299 | 2005-07-18 13:30:53 -0700 | [diff] [blame] | 370 | 			return __qdisc_dequeue_head(qdisc, list + prio); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | 		} | 
 | 372 | 	} | 
| Thomas Graf | f87a9c3 | 2005-06-18 22:58:53 -0700 | [diff] [blame] | 373 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | 	return NULL; | 
 | 375 | } | 
 | 376 |  | 
| Thomas Graf | f87a9c3 | 2005-06-18 22:58:53 -0700 | [diff] [blame] | 377 | static int pfifo_fast_requeue(struct sk_buff *skb, struct Qdisc* qdisc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | 	qdisc->q.qlen++; | 
| Thomas Graf | 321090e | 2005-06-18 22:58:35 -0700 | [diff] [blame] | 380 | 	return __qdisc_requeue(skb, qdisc, prio2list(skb, qdisc)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | } | 
 | 382 |  | 
| Thomas Graf | f87a9c3 | 2005-06-18 22:58:53 -0700 | [diff] [blame] | 383 | static void pfifo_fast_reset(struct Qdisc* qdisc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | { | 
 | 385 | 	int prio; | 
 | 386 | 	struct sk_buff_head *list = qdisc_priv(qdisc); | 
 | 387 |  | 
| Thomas Graf | f87a9c3 | 2005-06-18 22:58:53 -0700 | [diff] [blame] | 388 | 	for (prio = 0; prio < PFIFO_FAST_BANDS; prio++) | 
| Thomas Graf | 821d24a | 2005-06-18 22:58:15 -0700 | [diff] [blame] | 389 | 		__qdisc_reset_queue(qdisc, list + prio); | 
 | 390 |  | 
 | 391 | 	qdisc->qstats.backlog = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | 	qdisc->q.qlen = 0; | 
 | 393 | } | 
 | 394 |  | 
 | 395 | static int pfifo_fast_dump(struct Qdisc *qdisc, struct sk_buff *skb) | 
 | 396 | { | 
| Thomas Graf | f87a9c3 | 2005-06-18 22:58:53 -0700 | [diff] [blame] | 397 | 	struct tc_prio_qopt opt = { .bands = PFIFO_FAST_BANDS }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | 	memcpy(&opt.priomap, prio2band, TC_PRIO_MAX+1); | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 400 | 	NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | 	return skb->len; | 
 | 402 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 403 | nla_put_failure: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | 	return -1; | 
 | 405 | } | 
 | 406 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 407 | static int pfifo_fast_init(struct Qdisc *qdisc, struct nlattr *opt) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | { | 
| Thomas Graf | f87a9c3 | 2005-06-18 22:58:53 -0700 | [diff] [blame] | 409 | 	int prio; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | 	struct sk_buff_head *list = qdisc_priv(qdisc); | 
 | 411 |  | 
| Thomas Graf | f87a9c3 | 2005-06-18 22:58:53 -0700 | [diff] [blame] | 412 | 	for (prio = 0; prio < PFIFO_FAST_BANDS; prio++) | 
 | 413 | 		skb_queue_head_init(list + prio); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 |  | 
 | 415 | 	return 0; | 
 | 416 | } | 
 | 417 |  | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 418 | static struct Qdisc_ops pfifo_fast_ops __read_mostly = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | 	.id		=	"pfifo_fast", | 
| Thomas Graf | f87a9c3 | 2005-06-18 22:58:53 -0700 | [diff] [blame] | 420 | 	.priv_size	=	PFIFO_FAST_BANDS * sizeof(struct sk_buff_head), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | 	.enqueue	=	pfifo_fast_enqueue, | 
 | 422 | 	.dequeue	=	pfifo_fast_dequeue, | 
 | 423 | 	.requeue	=	pfifo_fast_requeue, | 
 | 424 | 	.init		=	pfifo_fast_init, | 
 | 425 | 	.reset		=	pfifo_fast_reset, | 
 | 426 | 	.dump		=	pfifo_fast_dump, | 
 | 427 | 	.owner		=	THIS_MODULE, | 
 | 428 | }; | 
 | 429 |  | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 430 | struct Qdisc *qdisc_alloc(struct net_device *dev, struct Qdisc_ops *ops) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | { | 
 | 432 | 	void *p; | 
 | 433 | 	struct Qdisc *sch; | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 434 | 	unsigned int size; | 
 | 435 | 	int err = -ENOBUFS; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 |  | 
 | 437 | 	/* ensure that the Qdisc and the private data are 32-byte aligned */ | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 438 | 	size = QDISC_ALIGN(sizeof(*sch)); | 
 | 439 | 	size += ops->priv_size + (QDISC_ALIGNTO - 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 |  | 
| Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 441 | 	p = kzalloc(size, GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | 	if (!p) | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 443 | 		goto errout; | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 444 | 	sch = (struct Qdisc *) QDISC_ALIGN((unsigned long) p); | 
 | 445 | 	sch->padded = (char *) sch - (char *) p; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 |  | 
 | 447 | 	INIT_LIST_HEAD(&sch->list); | 
 | 448 | 	skb_queue_head_init(&sch->q); | 
 | 449 | 	sch->ops = ops; | 
 | 450 | 	sch->enqueue = ops->enqueue; | 
 | 451 | 	sch->dequeue = ops->dequeue; | 
 | 452 | 	sch->dev = dev; | 
 | 453 | 	dev_hold(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | 	atomic_set(&sch->refcnt, 1); | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 455 |  | 
 | 456 | 	return sch; | 
 | 457 | errout: | 
 | 458 | 	return ERR_PTR(-err); | 
 | 459 | } | 
 | 460 |  | 
| Patrick McHardy | 9f9afec | 2006-11-29 17:35:18 -0800 | [diff] [blame] | 461 | struct Qdisc * qdisc_create_dflt(struct net_device *dev, struct Qdisc_ops *ops, | 
 | 462 | 				 unsigned int parentid) | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 463 | { | 
 | 464 | 	struct Qdisc *sch; | 
| YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 465 |  | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 466 | 	sch = qdisc_alloc(dev, ops); | 
 | 467 | 	if (IS_ERR(sch)) | 
 | 468 | 		goto errout; | 
| Patrick McHardy | fd44de7 | 2007-04-16 17:07:08 -0700 | [diff] [blame] | 469 | 	sch->stats_lock = &dev->queue_lock; | 
| Patrick McHardy | 9f9afec | 2006-11-29 17:35:18 -0800 | [diff] [blame] | 470 | 	sch->parent = parentid; | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 471 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | 	if (!ops->init || ops->init(sch, NULL) == 0) | 
 | 473 | 		return sch; | 
 | 474 |  | 
| Thomas Graf | 0fbbeb1 | 2005-08-23 10:12:44 -0700 | [diff] [blame] | 475 | 	qdisc_destroy(sch); | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 476 | errout: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | 	return NULL; | 
 | 478 | } | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 479 | EXPORT_SYMBOL(qdisc_create_dflt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 |  | 
 | 481 | /* Under dev->queue_lock and BH! */ | 
 | 482 |  | 
 | 483 | void qdisc_reset(struct Qdisc *qdisc) | 
 | 484 | { | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 485 | 	const struct Qdisc_ops *ops = qdisc->ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 |  | 
 | 487 | 	if (ops->reset) | 
 | 488 | 		ops->reset(qdisc); | 
 | 489 | } | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 490 | EXPORT_SYMBOL(qdisc_reset); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 |  | 
| YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 492 | /* this is the rcu callback function to clean up a qdisc when there | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 |  * are no further references to it */ | 
 | 494 |  | 
 | 495 | static void __qdisc_destroy(struct rcu_head *head) | 
 | 496 | { | 
 | 497 | 	struct Qdisc *qdisc = container_of(head, struct Qdisc, q_rcu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | 	kfree((char *) qdisc - qdisc->padded); | 
 | 499 | } | 
 | 500 |  | 
 | 501 | /* Under dev->queue_lock and BH! */ | 
 | 502 |  | 
 | 503 | void qdisc_destroy(struct Qdisc *qdisc) | 
 | 504 | { | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 505 | 	const struct Qdisc_ops  *ops = qdisc->ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 |  | 
 | 507 | 	if (qdisc->flags & TCQ_F_BUILTIN || | 
| Patrick McHardy | 85670cc | 2006-09-27 16:45:45 -0700 | [diff] [blame] | 508 | 	    !atomic_dec_and_test(&qdisc->refcnt)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | 		return; | 
 | 510 |  | 
| Patrick McHardy | 85670cc | 2006-09-27 16:45:45 -0700 | [diff] [blame] | 511 | 	list_del(&qdisc->list); | 
| Patrick McHardy | 85670cc | 2006-09-27 16:45:45 -0700 | [diff] [blame] | 512 | 	gen_kill_estimator(&qdisc->bstats, &qdisc->rate_est); | 
| Patrick McHardy | 85670cc | 2006-09-27 16:45:45 -0700 | [diff] [blame] | 513 | 	if (ops->reset) | 
 | 514 | 		ops->reset(qdisc); | 
 | 515 | 	if (ops->destroy) | 
 | 516 | 		ops->destroy(qdisc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 |  | 
| Patrick McHardy | 85670cc | 2006-09-27 16:45:45 -0700 | [diff] [blame] | 518 | 	module_put(ops->owner); | 
 | 519 | 	dev_put(qdisc->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | 	call_rcu(&qdisc->q_rcu, __qdisc_destroy); | 
 | 521 | } | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 522 | EXPORT_SYMBOL(qdisc_destroy); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 |  | 
 | 524 | void dev_activate(struct net_device *dev) | 
 | 525 | { | 
 | 526 | 	/* No queueing discipline is attached to device; | 
 | 527 | 	   create default one i.e. pfifo_fast for devices, | 
 | 528 | 	   which need queueing and noqueue_qdisc for | 
 | 529 | 	   virtual interfaces | 
 | 530 | 	 */ | 
 | 531 |  | 
 | 532 | 	if (dev->qdisc_sleeping == &noop_qdisc) { | 
 | 533 | 		struct Qdisc *qdisc; | 
 | 534 | 		if (dev->tx_queue_len) { | 
| Patrick McHardy | 9f9afec | 2006-11-29 17:35:18 -0800 | [diff] [blame] | 535 | 			qdisc = qdisc_create_dflt(dev, &pfifo_fast_ops, | 
 | 536 | 						  TC_H_ROOT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | 			if (qdisc == NULL) { | 
 | 538 | 				printk(KERN_INFO "%s: activation failed\n", dev->name); | 
 | 539 | 				return; | 
 | 540 | 			} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | 			list_add_tail(&qdisc->list, &dev->qdisc_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | 		} else { | 
 | 543 | 			qdisc =  &noqueue_qdisc; | 
 | 544 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | 		dev->qdisc_sleeping = qdisc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | 	} | 
 | 547 |  | 
| Tommy S. Christensen | cacaddf | 2005-05-03 16:18:52 -0700 | [diff] [blame] | 548 | 	if (!netif_carrier_ok(dev)) | 
 | 549 | 		/* Delay activation until next carrier-on event */ | 
 | 550 | 		return; | 
 | 551 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | 	spin_lock_bh(&dev->queue_lock); | 
 | 553 | 	rcu_assign_pointer(dev->qdisc, dev->qdisc_sleeping); | 
 | 554 | 	if (dev->qdisc != &noqueue_qdisc) { | 
 | 555 | 		dev->trans_start = jiffies; | 
 | 556 | 		dev_watchdog_up(dev); | 
 | 557 | 	} | 
 | 558 | 	spin_unlock_bh(&dev->queue_lock); | 
 | 559 | } | 
 | 560 |  | 
 | 561 | void dev_deactivate(struct net_device *dev) | 
 | 562 | { | 
 | 563 | 	struct Qdisc *qdisc; | 
| Herbert Xu | 41a23b0 | 2007-05-10 14:12:47 -0700 | [diff] [blame] | 564 | 	struct sk_buff *skb; | 
| Herbert Xu | ce0e32e | 2007-10-18 22:37:58 -0700 | [diff] [blame] | 565 | 	int running; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 |  | 
 | 567 | 	spin_lock_bh(&dev->queue_lock); | 
 | 568 | 	qdisc = dev->qdisc; | 
 | 569 | 	dev->qdisc = &noop_qdisc; | 
 | 570 |  | 
 | 571 | 	qdisc_reset(qdisc); | 
 | 572 |  | 
| Herbert Xu | 41a23b0 | 2007-05-10 14:12:47 -0700 | [diff] [blame] | 573 | 	skb = dev->gso_skb; | 
 | 574 | 	dev->gso_skb = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | 	spin_unlock_bh(&dev->queue_lock); | 
 | 576 |  | 
| Herbert Xu | 41a23b0 | 2007-05-10 14:12:47 -0700 | [diff] [blame] | 577 | 	kfree_skb(skb); | 
 | 578 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | 	dev_watchdog_down(dev); | 
 | 580 |  | 
| Herbert Xu | ce0e32e | 2007-10-18 22:37:58 -0700 | [diff] [blame] | 581 | 	/* Wait for outstanding qdisc-less dev_queue_xmit calls. */ | 
| Herbert Xu | d4828d8 | 2006-06-22 02:28:18 -0700 | [diff] [blame] | 582 | 	synchronize_rcu(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 |  | 
| Herbert Xu | d4828d8 | 2006-06-22 02:28:18 -0700 | [diff] [blame] | 584 | 	/* Wait for outstanding qdisc_run calls. */ | 
| Herbert Xu | ce0e32e | 2007-10-18 22:37:58 -0700 | [diff] [blame] | 585 | 	do { | 
 | 586 | 		while (test_bit(__LINK_STATE_QDISC_RUNNING, &dev->state)) | 
 | 587 | 			yield(); | 
 | 588 |  | 
 | 589 | 		/* | 
 | 590 | 		 * Double-check inside queue lock to ensure that all effects | 
 | 591 | 		 * of the queue run are visible when we return. | 
 | 592 | 		 */ | 
 | 593 | 		spin_lock_bh(&dev->queue_lock); | 
 | 594 | 		running = test_bit(__LINK_STATE_QDISC_RUNNING, &dev->state); | 
 | 595 | 		spin_unlock_bh(&dev->queue_lock); | 
 | 596 |  | 
 | 597 | 		/* | 
 | 598 | 		 * The running flag should never be set at this point because | 
 | 599 | 		 * we've already set dev->qdisc to noop_qdisc *inside* the same | 
 | 600 | 		 * pair of spin locks.  That is, if any qdisc_run starts after | 
 | 601 | 		 * our initial test it should see the noop_qdisc and then | 
 | 602 | 		 * clear the RUNNING bit before dropping the queue lock.  So | 
 | 603 | 		 * if it is set here then we've found a bug. | 
 | 604 | 		 */ | 
 | 605 | 	} while (WARN_ON_ONCE(running)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | } | 
 | 607 |  | 
 | 608 | void dev_init_scheduler(struct net_device *dev) | 
 | 609 | { | 
 | 610 | 	qdisc_lock_tree(dev); | 
 | 611 | 	dev->qdisc = &noop_qdisc; | 
 | 612 | 	dev->qdisc_sleeping = &noop_qdisc; | 
 | 613 | 	INIT_LIST_HEAD(&dev->qdisc_list); | 
 | 614 | 	qdisc_unlock_tree(dev); | 
 | 615 |  | 
| Pavel Emelyanov | b24b8a2 | 2008-01-23 21:20:07 -0800 | [diff] [blame] | 616 | 	setup_timer(&dev->watchdog_timer, dev_watchdog, (unsigned long)dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | } | 
 | 618 |  | 
 | 619 | void dev_shutdown(struct net_device *dev) | 
 | 620 | { | 
 | 621 | 	struct Qdisc *qdisc; | 
 | 622 |  | 
 | 623 | 	qdisc_lock_tree(dev); | 
 | 624 | 	qdisc = dev->qdisc_sleeping; | 
 | 625 | 	dev->qdisc = &noop_qdisc; | 
 | 626 | 	dev->qdisc_sleeping = &noop_qdisc; | 
 | 627 | 	qdisc_destroy(qdisc); | 
 | 628 | #if defined(CONFIG_NET_SCH_INGRESS) || defined(CONFIG_NET_SCH_INGRESS_MODULE) | 
| YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 629 | 	if ((qdisc = dev->qdisc_ingress) != NULL) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | 		dev->qdisc_ingress = NULL; | 
 | 631 | 		qdisc_destroy(qdisc); | 
| YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 632 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | #endif | 
 | 634 | 	BUG_TRAP(!timer_pending(&dev->watchdog_timer)); | 
 | 635 | 	qdisc_unlock_tree(dev); | 
 | 636 | } |