| 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> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <net/pkt_sched.h> | 
| Eric Dumazet | 7fee226 | 2010-05-11 23:19:48 +0000 | [diff] [blame] | 29 | #include <net/dst.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 |  | 
|  | 31 | /* Main transmission queue. */ | 
|  | 32 |  | 
| Patrick McHardy | 0463d4a | 2007-04-16 17:02:10 -0700 | [diff] [blame] | 33 | /* Modifications to data participating in scheduling must be protected with | 
| David S. Miller | 5fb6622 | 2008-08-02 20:02:43 -0700 | [diff] [blame] | 34 | * qdisc_lock(qdisc) spinlock. | 
| Patrick McHardy | 0463d4a | 2007-04-16 17:02:10 -0700 | [diff] [blame] | 35 | * | 
|  | 36 | * The idea is the following: | 
| David S. Miller | c7e4f3b | 2008-07-16 03:22:39 -0700 | [diff] [blame] | 37 | * - enqueue, dequeue are serialized via qdisc root lock | 
|  | 38 | * - ingress filtering is also serialized via qdisc root 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 |  | 
| David S. Miller | 37437bb | 2008-07-16 02:15:04 -0700 | [diff] [blame] | 42 | static inline int dev_requeue_skb(struct sk_buff *skb, struct Qdisc *q) | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 43 | { | 
| Eric Dumazet | 7fee226 | 2010-05-11 23:19:48 +0000 | [diff] [blame] | 44 | skb_dst_force(skb); | 
| Jarek Poplawski | 6252352 | 2008-10-06 10:41:50 -0700 | [diff] [blame] | 45 | q->gso_skb = skb; | 
| Jarek Poplawski | 53e9150 | 2008-10-08 11:36:22 -0700 | [diff] [blame] | 46 | q->qstats.requeues++; | 
| Krishna Kumar | bbd8a0d | 2009-08-06 01:44:21 +0000 | [diff] [blame] | 47 | q->q.qlen++;	/* it's still part of the queue */ | 
| David S. Miller | 37437bb | 2008-07-16 02:15:04 -0700 | [diff] [blame] | 48 | __netif_schedule(q); | 
| Jarek Poplawski | 6252352 | 2008-10-06 10:41:50 -0700 | [diff] [blame] | 49 |  | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 50 | return 0; | 
|  | 51 | } | 
|  | 52 |  | 
| David S. Miller | d3b753d | 2008-07-15 20:14:35 -0700 | [diff] [blame] | 53 | static inline struct sk_buff *dequeue_skb(struct Qdisc *q) | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 54 | { | 
| Jarek Poplawski | 554794d | 2008-10-06 09:54:39 -0700 | [diff] [blame] | 55 | struct sk_buff *skb = q->gso_skb; | 
| Eric Dumazet | 1abbe13 | 2012-12-11 15:54:33 +0000 | [diff] [blame] | 56 | const struct netdev_queue *txq = q->dev_queue; | 
| Jarek Poplawski | 554794d | 2008-10-06 09:54:39 -0700 | [diff] [blame] | 57 |  | 
| Jarek Poplawski | ebf0598 | 2008-09-22 22:16:23 -0700 | [diff] [blame] | 58 | if (unlikely(skb)) { | 
| Jarek Poplawski | ebf0598 | 2008-09-22 22:16:23 -0700 | [diff] [blame] | 59 | /* check the reason of requeuing without tx lock first */ | 
| Eric Dumazet | 1abbe13 | 2012-12-11 15:54:33 +0000 | [diff] [blame] | 60 | txq = netdev_get_tx_queue(txq->dev, skb_get_queue_mapping(skb)); | 
| Tom Herbert | 73466498 | 2011-11-28 16:32:44 +0000 | [diff] [blame] | 61 | if (!netif_xmit_frozen_or_stopped(txq)) { | 
| Jarek Poplawski | 6252352 | 2008-10-06 10:41:50 -0700 | [diff] [blame] | 62 | q->gso_skb = NULL; | 
| Krishna Kumar | bbd8a0d | 2009-08-06 01:44:21 +0000 | [diff] [blame] | 63 | q->q.qlen--; | 
|  | 64 | } else | 
| Jarek Poplawski | ebf0598 | 2008-09-22 22:16:23 -0700 | [diff] [blame] | 65 | skb = NULL; | 
|  | 66 | } else { | 
| Eric Dumazet | 1abbe13 | 2012-12-11 15:54:33 +0000 | [diff] [blame] | 67 | if (!(q->flags & TCQ_F_ONETXQUEUE) || !netif_xmit_frozen_or_stopped(txq)) | 
|  | 68 | skb = q->dequeue(q); | 
| Jarek Poplawski | ebf0598 | 2008-09-22 22:16:23 -0700 | [diff] [blame] | 69 | } | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 70 |  | 
|  | 71 | return skb; | 
|  | 72 | } | 
|  | 73 |  | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 74 | static inline int handle_dev_cpu_collision(struct sk_buff *skb, | 
| David S. Miller | 970565b | 2008-07-08 23:10:33 -0700 | [diff] [blame] | 75 | struct netdev_queue *dev_queue, | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 76 | struct Qdisc *q) | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 77 | { | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 78 | int ret; | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 79 |  | 
| David S. Miller | c773e84 | 2008-07-08 23:13:53 -0700 | [diff] [blame] | 80 | if (unlikely(dev_queue->xmit_lock_owner == smp_processor_id())) { | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 81 | /* | 
|  | 82 | * Same CPU holding the lock. It may be a transient | 
|  | 83 | * configuration error, when hard_start_xmit() recurses. We | 
|  | 84 | * detect it by checking xmit owner and drop the packet when | 
|  | 85 | * deadloop is detected. Return OK to try the next skb. | 
|  | 86 | */ | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 87 | kfree_skb(skb); | 
| Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 88 | net_warn_ratelimited("Dead loop on netdevice %s, fix it urgently!\n", | 
|  | 89 | dev_queue->dev->name); | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 90 | ret = qdisc_qlen(q); | 
|  | 91 | } else { | 
|  | 92 | /* | 
|  | 93 | * Another cpu is holding lock, requeue & delay xmits for | 
|  | 94 | * some time. | 
|  | 95 | */ | 
| Eric Dumazet | d6d9ca0 | 2010-07-19 10:48:49 +0000 | [diff] [blame] | 96 | __this_cpu_inc(softnet_data.cpu_collision); | 
| David S. Miller | 37437bb | 2008-07-16 02:15:04 -0700 | [diff] [blame] | 97 | ret = dev_requeue_skb(skb, q); | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 98 | } | 
|  | 99 |  | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 100 | return ret; | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 101 | } | 
|  | 102 |  | 
| YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 103 | /* | 
| Krishna Kumar | bbd8a0d | 2009-08-06 01:44:21 +0000 | [diff] [blame] | 104 | * Transmit one skb, and handle the return status as required. Holding the | 
|  | 105 | * __QDISC_STATE_RUNNING bit guarantees that only one CPU can execute this | 
|  | 106 | * function. | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 107 | * | 
|  | 108 | * Returns to the caller: | 
|  | 109 | *				0  - queue is empty or throttled. | 
|  | 110 | *				>0 - queue is not empty. | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 111 | */ | 
| Krishna Kumar | bbd8a0d | 2009-08-06 01:44:21 +0000 | [diff] [blame] | 112 | int sch_direct_xmit(struct sk_buff *skb, struct Qdisc *q, | 
|  | 113 | struct net_device *dev, struct netdev_queue *txq, | 
|  | 114 | spinlock_t *root_lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | { | 
| Peter P Waskiewicz Jr | 5f1a485 | 2007-11-13 20:40:55 -0800 | [diff] [blame] | 116 | int ret = NETDEV_TX_BUSY; | 
| David S. Miller | 7698b4f | 2008-07-16 01:42:40 -0700 | [diff] [blame] | 117 |  | 
|  | 118 | /* And release qdisc */ | 
|  | 119 | spin_unlock(root_lock); | 
| Herbert Xu | d90df3a | 2007-05-10 04:55:14 -0700 | [diff] [blame] | 120 |  | 
| David S. Miller | c773e84 | 2008-07-08 23:13:53 -0700 | [diff] [blame] | 121 | HARD_TX_LOCK(dev, txq, smp_processor_id()); | 
| Tom Herbert | 73466498 | 2011-11-28 16:32:44 +0000 | [diff] [blame] | 122 | if (!netif_xmit_frozen_or_stopped(txq)) | 
| David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 123 | ret = dev_hard_start_xmit(skb, dev, txq); | 
| Patrick McHardy | 572a9d7 | 2009-11-10 06:14:14 +0000 | [diff] [blame] | 124 |  | 
| David S. Miller | c773e84 | 2008-07-08 23:13:53 -0700 | [diff] [blame] | 125 | HARD_TX_UNLOCK(dev, txq); | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 126 |  | 
| David S. Miller | 7698b4f | 2008-07-16 01:42:40 -0700 | [diff] [blame] | 127 | spin_lock(root_lock); | 
| Jamal Hadi Salim | c716a81 | 2007-06-10 17:31:24 -0700 | [diff] [blame] | 128 |  | 
| Jarek Poplawski | 9a1654b | 2009-11-15 07:20:12 +0000 | [diff] [blame] | 129 | if (dev_xmit_complete(ret)) { | 
|  | 130 | /* Driver sent out skb successfully or skb was consumed */ | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 131 | ret = qdisc_qlen(q); | 
| Jarek Poplawski | 9a1654b | 2009-11-15 07:20:12 +0000 | [diff] [blame] | 132 | } else if (ret == NETDEV_TX_LOCKED) { | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 133 | /* Driver try lock failed */ | 
| David S. Miller | eb6aafe | 2008-07-08 23:12:38 -0700 | [diff] [blame] | 134 | ret = handle_dev_cpu_collision(skb, txq, q); | 
| Jarek Poplawski | 9a1654b | 2009-11-15 07:20:12 +0000 | [diff] [blame] | 135 | } else { | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 136 | /* Driver returned NETDEV_TX_BUSY - requeue skb */ | 
| Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 137 | if (unlikely(ret != NETDEV_TX_BUSY)) | 
|  | 138 | net_warn_ratelimited("BUG %s code %d qlen %d\n", | 
|  | 139 | dev->name, ret, q->q.qlen); | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 140 |  | 
| David S. Miller | 37437bb | 2008-07-16 02:15:04 -0700 | [diff] [blame] | 141 | ret = dev_requeue_skb(skb, q); | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 142 | } | 
|  | 143 |  | 
| Tom Herbert | 73466498 | 2011-11-28 16:32:44 +0000 | [diff] [blame] | 144 | if (ret && netif_xmit_frozen_or_stopped(txq)) | 
| David S. Miller | 37437bb | 2008-07-16 02:15:04 -0700 | [diff] [blame] | 145 | ret = 0; | 
|  | 146 |  | 
| Krishna Kumar | 6c1361a | 2007-06-24 19:56:09 -0700 | [diff] [blame] | 147 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | } | 
|  | 149 |  | 
| Krishna Kumar | bbd8a0d | 2009-08-06 01:44:21 +0000 | [diff] [blame] | 150 | /* | 
|  | 151 | * NOTE: Called under qdisc_lock(q) with locally disabled BH. | 
|  | 152 | * | 
|  | 153 | * __QDISC_STATE_RUNNING guarantees only one CPU can process | 
|  | 154 | * this qdisc at a time. qdisc_lock(q) serializes queue accesses for | 
|  | 155 | * this queue. | 
|  | 156 | * | 
|  | 157 | *  netif_tx_lock serializes accesses to device driver. | 
|  | 158 | * | 
|  | 159 | *  qdisc_lock(q) and netif_tx_lock are mutually exclusive, | 
|  | 160 | *  if one is grabbed, another must be free. | 
|  | 161 | * | 
|  | 162 | * Note, that this procedure can be called by a watchdog timer | 
|  | 163 | * | 
|  | 164 | * Returns to the caller: | 
|  | 165 | *				0  - queue is empty or throttled. | 
|  | 166 | *				>0 - queue is not empty. | 
|  | 167 | * | 
|  | 168 | */ | 
|  | 169 | static inline int qdisc_restart(struct Qdisc *q) | 
|  | 170 | { | 
|  | 171 | struct netdev_queue *txq; | 
|  | 172 | struct net_device *dev; | 
|  | 173 | spinlock_t *root_lock; | 
|  | 174 | struct sk_buff *skb; | 
|  | 175 |  | 
|  | 176 | /* Dequeue packet */ | 
|  | 177 | skb = dequeue_skb(q); | 
|  | 178 | if (unlikely(!skb)) | 
|  | 179 | return 0; | 
| Eric Dumazet | 7fee226 | 2010-05-11 23:19:48 +0000 | [diff] [blame] | 180 | WARN_ON_ONCE(skb_dst_is_noref(skb)); | 
| Krishna Kumar | bbd8a0d | 2009-08-06 01:44:21 +0000 | [diff] [blame] | 181 | root_lock = qdisc_lock(q); | 
|  | 182 | dev = qdisc_dev(q); | 
|  | 183 | txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb)); | 
|  | 184 |  | 
|  | 185 | return sch_direct_xmit(skb, q, dev, txq, root_lock); | 
|  | 186 | } | 
|  | 187 |  | 
| David S. Miller | 37437bb | 2008-07-16 02:15:04 -0700 | [diff] [blame] | 188 | void __qdisc_run(struct Qdisc *q) | 
| Herbert Xu | 48d8332 | 2006-06-19 23:57:59 -0700 | [diff] [blame] | 189 | { | 
| jamal | d5b8aa1 | 2011-06-26 08:13:54 +0000 | [diff] [blame] | 190 | int quota = weight_p; | 
| Herbert Xu | 2ba2506 | 2008-03-28 16:25:26 -0700 | [diff] [blame] | 191 |  | 
| David S. Miller | 37437bb | 2008-07-16 02:15:04 -0700 | [diff] [blame] | 192 | while (qdisc_restart(q)) { | 
| Herbert Xu | 2ba2506 | 2008-03-28 16:25:26 -0700 | [diff] [blame] | 193 | /* | 
| jamal | d5b8aa1 | 2011-06-26 08:13:54 +0000 | [diff] [blame] | 194 | * Ordered by possible occurrence: Postpone processing if | 
|  | 195 | * 1. we've exceeded packet quota | 
|  | 196 | * 2. another process needs the CPU; | 
| Herbert Xu | 2ba2506 | 2008-03-28 16:25:26 -0700 | [diff] [blame] | 197 | */ | 
| Krishna Kumar | f0c50c7 | 2011-07-14 23:16:21 +0000 | [diff] [blame] | 198 | if (--quota <= 0 || need_resched()) { | 
| David S. Miller | 37437bb | 2008-07-16 02:15:04 -0700 | [diff] [blame] | 199 | __netif_schedule(q); | 
| Herbert Xu | 2ba2506 | 2008-03-28 16:25:26 -0700 | [diff] [blame] | 200 | break; | 
|  | 201 | } | 
|  | 202 | } | 
| Herbert Xu | 48d8332 | 2006-06-19 23:57:59 -0700 | [diff] [blame] | 203 |  | 
| Eric Dumazet | bc135b2 | 2010-06-02 03:23:51 -0700 | [diff] [blame] | 204 | qdisc_run_end(q); | 
| Herbert Xu | 48d8332 | 2006-06-19 23:57:59 -0700 | [diff] [blame] | 205 | } | 
|  | 206 |  | 
| Eric Dumazet | 9d21493 | 2009-05-17 20:55:16 -0700 | [diff] [blame] | 207 | unsigned long dev_trans_start(struct net_device *dev) | 
|  | 208 | { | 
|  | 209 | unsigned long val, res = dev->trans_start; | 
|  | 210 | unsigned int i; | 
|  | 211 |  | 
|  | 212 | for (i = 0; i < dev->num_tx_queues; i++) { | 
|  | 213 | val = netdev_get_tx_queue(dev, i)->trans_start; | 
|  | 214 | if (val && time_after(val, res)) | 
|  | 215 | res = val; | 
|  | 216 | } | 
|  | 217 | dev->trans_start = res; | 
|  | 218 | return res; | 
|  | 219 | } | 
|  | 220 | EXPORT_SYMBOL(dev_trans_start); | 
|  | 221 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | static void dev_watchdog(unsigned long arg) | 
|  | 223 | { | 
|  | 224 | struct net_device *dev = (struct net_device *)arg; | 
|  | 225 |  | 
| Herbert Xu | 932ff27 | 2006-06-09 12:20:56 -0700 | [diff] [blame] | 226 | netif_tx_lock(dev); | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 227 | if (!qdisc_tx_is_noop(dev)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | if (netif_device_present(dev) && | 
|  | 229 | netif_running(dev) && | 
|  | 230 | netif_carrier_ok(dev)) { | 
| Eric Dumazet | 9d21493 | 2009-05-17 20:55:16 -0700 | [diff] [blame] | 231 | int some_queue_timedout = 0; | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 232 | unsigned int i; | 
| Eric Dumazet | 9d21493 | 2009-05-17 20:55:16 -0700 | [diff] [blame] | 233 | unsigned long trans_start; | 
| Stephen Hemminger | 338f756 | 2006-05-16 15:02:12 -0700 | [diff] [blame] | 234 |  | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 235 | for (i = 0; i < dev->num_tx_queues; i++) { | 
|  | 236 | struct netdev_queue *txq; | 
|  | 237 |  | 
|  | 238 | txq = netdev_get_tx_queue(dev, i); | 
| Eric Dumazet | 9d21493 | 2009-05-17 20:55:16 -0700 | [diff] [blame] | 239 | /* | 
|  | 240 | * old device drivers set dev->trans_start | 
|  | 241 | */ | 
|  | 242 | trans_start = txq->trans_start ? : dev->trans_start; | 
| Tom Herbert | 73466498 | 2011-11-28 16:32:44 +0000 | [diff] [blame] | 243 | if (netif_xmit_stopped(txq) && | 
| Eric Dumazet | 9d21493 | 2009-05-17 20:55:16 -0700 | [diff] [blame] | 244 | time_after(jiffies, (trans_start + | 
|  | 245 | dev->watchdog_timeo))) { | 
|  | 246 | some_queue_timedout = 1; | 
| david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 247 | txq->trans_timeout++; | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 248 | break; | 
|  | 249 | } | 
|  | 250 | } | 
|  | 251 |  | 
| Eric Dumazet | 9d21493 | 2009-05-17 20:55:16 -0700 | [diff] [blame] | 252 | if (some_queue_timedout) { | 
| Eric Dumazet | 9d21493 | 2009-05-17 20:55:16 -0700 | [diff] [blame] | 253 | WARN_ONCE(1, KERN_INFO "NETDEV WATCHDOG: %s (%s): transmit queue %u timed out\n", | 
| David S. Miller | 3019de1 | 2011-06-06 16:41:33 -0700 | [diff] [blame] | 254 | dev->name, netdev_drivername(dev), i); | 
| Stephen Hemminger | d314774 | 2008-11-19 21:32:24 -0800 | [diff] [blame] | 255 | dev->netdev_ops->ndo_tx_timeout(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | } | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 257 | if (!mod_timer(&dev->watchdog_timer, | 
|  | 258 | round_jiffies(jiffies + | 
|  | 259 | dev->watchdog_timeo))) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | dev_hold(dev); | 
|  | 261 | } | 
|  | 262 | } | 
| Herbert Xu | 932ff27 | 2006-06-09 12:20:56 -0700 | [diff] [blame] | 263 | netif_tx_unlock(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 |  | 
|  | 265 | dev_put(dev); | 
|  | 266 | } | 
|  | 267 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | void __netdev_watchdog_up(struct net_device *dev) | 
|  | 269 | { | 
| Stephen Hemminger | d314774 | 2008-11-19 21:32:24 -0800 | [diff] [blame] | 270 | if (dev->netdev_ops->ndo_tx_timeout) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | if (dev->watchdog_timeo <= 0) | 
|  | 272 | dev->watchdog_timeo = 5*HZ; | 
| Venkatesh Pallipadi | 60468d5 | 2007-05-31 21:28:44 -0700 | [diff] [blame] | 273 | if (!mod_timer(&dev->watchdog_timer, | 
|  | 274 | round_jiffies(jiffies + dev->watchdog_timeo))) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | dev_hold(dev); | 
|  | 276 | } | 
|  | 277 | } | 
|  | 278 |  | 
|  | 279 | static void dev_watchdog_up(struct net_device *dev) | 
|  | 280 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | __netdev_watchdog_up(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | } | 
|  | 283 |  | 
|  | 284 | static void dev_watchdog_down(struct net_device *dev) | 
|  | 285 | { | 
| Herbert Xu | 932ff27 | 2006-06-09 12:20:56 -0700 | [diff] [blame] | 286 | netif_tx_lock_bh(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | if (del_timer(&dev->watchdog_timer)) | 
| Stephen Hemminger | 1533306 | 2006-03-20 22:32:28 -0800 | [diff] [blame] | 288 | dev_put(dev); | 
| Herbert Xu | 932ff27 | 2006-06-09 12:20:56 -0700 | [diff] [blame] | 289 | netif_tx_unlock_bh(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | } | 
|  | 291 |  | 
| Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 292 | /** | 
|  | 293 | *	netif_carrier_on - set carrier | 
|  | 294 | *	@dev: network device | 
|  | 295 | * | 
|  | 296 | * Device has detected that carrier. | 
|  | 297 | */ | 
| Denis Vlasenko | 0a242ef | 2005-08-11 15:32:53 -0700 | [diff] [blame] | 298 | void netif_carrier_on(struct net_device *dev) | 
|  | 299 | { | 
| Jeff Garzik | bfaae0f | 2007-10-17 23:26:43 -0700 | [diff] [blame] | 300 | if (test_and_clear_bit(__LINK_STATE_NOCARRIER, &dev->state)) { | 
| David S. Miller | b473001 | 2008-11-19 15:33:54 -0800 | [diff] [blame] | 301 | if (dev->reg_state == NETREG_UNINITIALIZED) | 
|  | 302 | return; | 
| Denis Vlasenko | 0a242ef | 2005-08-11 15:32:53 -0700 | [diff] [blame] | 303 | linkwatch_fire_event(dev); | 
| Jeff Garzik | bfaae0f | 2007-10-17 23:26:43 -0700 | [diff] [blame] | 304 | if (netif_running(dev)) | 
|  | 305 | __netdev_watchdog_up(dev); | 
|  | 306 | } | 
| Denis Vlasenko | 0a242ef | 2005-08-11 15:32:53 -0700 | [diff] [blame] | 307 | } | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 308 | EXPORT_SYMBOL(netif_carrier_on); | 
| Denis Vlasenko | 0a242ef | 2005-08-11 15:32:53 -0700 | [diff] [blame] | 309 |  | 
| Stephen Hemminger | bea3348 | 2007-10-03 16:41:36 -0700 | [diff] [blame] | 310 | /** | 
|  | 311 | *	netif_carrier_off - clear carrier | 
|  | 312 | *	@dev: network device | 
|  | 313 | * | 
|  | 314 | * Device has detected loss of carrier. | 
|  | 315 | */ | 
| Denis Vlasenko | 0a242ef | 2005-08-11 15:32:53 -0700 | [diff] [blame] | 316 | void netif_carrier_off(struct net_device *dev) | 
|  | 317 | { | 
| David S. Miller | b473001 | 2008-11-19 15:33:54 -0800 | [diff] [blame] | 318 | if (!test_and_set_bit(__LINK_STATE_NOCARRIER, &dev->state)) { | 
|  | 319 | if (dev->reg_state == NETREG_UNINITIALIZED) | 
|  | 320 | return; | 
| Denis Vlasenko | 0a242ef | 2005-08-11 15:32:53 -0700 | [diff] [blame] | 321 | linkwatch_fire_event(dev); | 
| David S. Miller | b473001 | 2008-11-19 15:33:54 -0800 | [diff] [blame] | 322 | } | 
| Denis Vlasenko | 0a242ef | 2005-08-11 15:32:53 -0700 | [diff] [blame] | 323 | } | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 324 | EXPORT_SYMBOL(netif_carrier_off); | 
| Denis Vlasenko | 0a242ef | 2005-08-11 15:32:53 -0700 | [diff] [blame] | 325 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | /* "NOOP" scheduler: the best scheduler, recommended for all interfaces | 
|  | 327 | under all circumstances. It is difficult to invent anything faster or | 
|  | 328 | cheaper. | 
|  | 329 | */ | 
|  | 330 |  | 
| Thomas Graf | 94df109 | 2005-06-18 22:59:08 -0700 | [diff] [blame] | 331 | static int noop_enqueue(struct sk_buff *skb, struct Qdisc * qdisc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | { | 
|  | 333 | kfree_skb(skb); | 
|  | 334 | return NET_XMIT_CN; | 
|  | 335 | } | 
|  | 336 |  | 
| Thomas Graf | 94df109 | 2005-06-18 22:59:08 -0700 | [diff] [blame] | 337 | static struct sk_buff *noop_dequeue(struct Qdisc * qdisc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | { | 
|  | 339 | return NULL; | 
|  | 340 | } | 
|  | 341 |  | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 342 | struct Qdisc_ops noop_qdisc_ops __read_mostly = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | .id		=	"noop", | 
|  | 344 | .priv_size	=	0, | 
|  | 345 | .enqueue	=	noop_enqueue, | 
|  | 346 | .dequeue	=	noop_dequeue, | 
| Jarek Poplawski | 99c0db2 | 2008-10-31 00:45:27 -0700 | [diff] [blame] | 347 | .peek		=	noop_dequeue, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | .owner		=	THIS_MODULE, | 
|  | 349 | }; | 
|  | 350 |  | 
| David S. Miller | 7698b4f | 2008-07-16 01:42:40 -0700 | [diff] [blame] | 351 | static struct netdev_queue noop_netdev_queue = { | 
| David S. Miller | 7698b4f | 2008-07-16 01:42:40 -0700 | [diff] [blame] | 352 | .qdisc		=	&noop_qdisc, | 
| Jarek Poplawski | 9f3ffae | 2008-10-19 23:37:47 -0700 | [diff] [blame] | 353 | .qdisc_sleeping	=	&noop_qdisc, | 
| David S. Miller | 7698b4f | 2008-07-16 01:42:40 -0700 | [diff] [blame] | 354 | }; | 
|  | 355 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | struct Qdisc noop_qdisc = { | 
|  | 357 | .enqueue	=	noop_enqueue, | 
|  | 358 | .dequeue	=	noop_dequeue, | 
|  | 359 | .flags		=	TCQ_F_BUILTIN, | 
| YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 360 | .ops		=	&noop_qdisc_ops, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | .list		=	LIST_HEAD_INIT(noop_qdisc.list), | 
| David S. Miller | 8387400 | 2008-07-17 00:53:03 -0700 | [diff] [blame] | 362 | .q.lock		=	__SPIN_LOCK_UNLOCKED(noop_qdisc.q.lock), | 
| David S. Miller | 7698b4f | 2008-07-16 01:42:40 -0700 | [diff] [blame] | 363 | .dev_queue	=	&noop_netdev_queue, | 
| Eric Dumazet | 7b5edbc | 2010-10-15 19:22:34 +0000 | [diff] [blame] | 364 | .busylock	=	__SPIN_LOCK_UNLOCKED(noop_qdisc.busylock), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | }; | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 366 | EXPORT_SYMBOL(noop_qdisc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 |  | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 368 | static struct Qdisc_ops noqueue_qdisc_ops __read_mostly = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | .id		=	"noqueue", | 
|  | 370 | .priv_size	=	0, | 
|  | 371 | .enqueue	=	noop_enqueue, | 
|  | 372 | .dequeue	=	noop_dequeue, | 
| Jarek Poplawski | 99c0db2 | 2008-10-31 00:45:27 -0700 | [diff] [blame] | 373 | .peek		=	noop_dequeue, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | .owner		=	THIS_MODULE, | 
|  | 375 | }; | 
|  | 376 |  | 
| David S. Miller | 30ee42b | 2008-07-18 23:00:11 -0700 | [diff] [blame] | 377 | static struct Qdisc noqueue_qdisc; | 
|  | 378 | static struct netdev_queue noqueue_netdev_queue = { | 
|  | 379 | .qdisc		=	&noqueue_qdisc, | 
| Jarek Poplawski | 9f3ffae | 2008-10-19 23:37:47 -0700 | [diff] [blame] | 380 | .qdisc_sleeping	=	&noqueue_qdisc, | 
| David S. Miller | 30ee42b | 2008-07-18 23:00:11 -0700 | [diff] [blame] | 381 | }; | 
|  | 382 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | static struct Qdisc noqueue_qdisc = { | 
|  | 384 | .enqueue	=	NULL, | 
|  | 385 | .dequeue	=	noop_dequeue, | 
|  | 386 | .flags		=	TCQ_F_BUILTIN, | 
|  | 387 | .ops		=	&noqueue_qdisc_ops, | 
|  | 388 | .list		=	LIST_HEAD_INIT(noqueue_qdisc.list), | 
| David S. Miller | 30ee42b | 2008-07-18 23:00:11 -0700 | [diff] [blame] | 389 | .q.lock		=	__SPIN_LOCK_UNLOCKED(noqueue_qdisc.q.lock), | 
|  | 390 | .dev_queue	=	&noqueue_netdev_queue, | 
| Eric Dumazet | 7b5edbc | 2010-10-15 19:22:34 +0000 | [diff] [blame] | 391 | .busylock	=	__SPIN_LOCK_UNLOCKED(noqueue_qdisc.busylock), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | }; | 
|  | 393 |  | 
|  | 394 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 395 | static const u8 prio2band[TC_PRIO_MAX + 1] = { | 
|  | 396 | 1, 2, 2, 2, 1, 2, 0, 0 , 1, 1, 1, 1, 1, 1, 1, 1 | 
|  | 397 | }; | 
| Thomas Graf | 321090e | 2005-06-18 22:58:35 -0700 | [diff] [blame] | 398 |  | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 399 | /* 3-band FIFO queue: old style, but should be a bit faster than | 
|  | 400 | generic prio+fifo combination. | 
|  | 401 | */ | 
|  | 402 |  | 
|  | 403 | #define PFIFO_FAST_BANDS 3 | 
|  | 404 |  | 
| Krishna Kumar | fd3ae5e | 2009-08-18 21:55:59 +0000 | [diff] [blame] | 405 | /* | 
|  | 406 | * Private data for a pfifo_fast scheduler containing: | 
|  | 407 | * 	- queues for the three band | 
|  | 408 | * 	- bitmap indicating which of the bands contain skbs | 
|  | 409 | */ | 
|  | 410 | struct pfifo_fast_priv { | 
|  | 411 | u32 bitmap; | 
|  | 412 | struct sk_buff_head q[PFIFO_FAST_BANDS]; | 
|  | 413 | }; | 
|  | 414 |  | 
|  | 415 | /* | 
|  | 416 | * Convert a bitmap to the first band number where an skb is queued, where: | 
|  | 417 | * 	bitmap=0 means there are no skbs on any band. | 
|  | 418 | * 	bitmap=1 means there is an skb on band 0. | 
|  | 419 | *	bitmap=7 means there are skbs on all 3 bands, etc. | 
|  | 420 | */ | 
|  | 421 | static const int bitmap2band[] = {-1, 0, 1, 0, 2, 0, 1, 0}; | 
|  | 422 |  | 
|  | 423 | static inline struct sk_buff_head *band2list(struct pfifo_fast_priv *priv, | 
|  | 424 | int band) | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 425 | { | 
| Krishna Kumar | fd3ae5e | 2009-08-18 21:55:59 +0000 | [diff] [blame] | 426 | return priv->q + band; | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 427 | } | 
|  | 428 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 429 | static int pfifo_fast_enqueue(struct sk_buff *skb, struct Qdisc *qdisc) | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 430 | { | 
| Krishna Kumar | a453e06 | 2009-08-30 22:20:28 -0700 | [diff] [blame] | 431 | if (skb_queue_len(&qdisc->q) < qdisc_dev(qdisc)->tx_queue_len) { | 
|  | 432 | int band = prio2band[skb->priority & TC_PRIO_MAX]; | 
|  | 433 | struct pfifo_fast_priv *priv = qdisc_priv(qdisc); | 
|  | 434 | struct sk_buff_head *list = band2list(priv, band); | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 435 |  | 
| Krishna Kumar | fd3ae5e | 2009-08-18 21:55:59 +0000 | [diff] [blame] | 436 | priv->bitmap |= (1 << band); | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 437 | qdisc->q.qlen++; | 
| Thomas Graf | 821d24a | 2005-06-18 22:58:15 -0700 | [diff] [blame] | 438 | return __qdisc_enqueue_tail(skb, qdisc, list); | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 439 | } | 
| Thomas Graf | 821d24a | 2005-06-18 22:58:15 -0700 | [diff] [blame] | 440 |  | 
|  | 441 | return qdisc_drop(skb, qdisc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | } | 
|  | 443 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 444 | static struct sk_buff *pfifo_fast_dequeue(struct Qdisc *qdisc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | { | 
| Krishna Kumar | fd3ae5e | 2009-08-18 21:55:59 +0000 | [diff] [blame] | 446 | struct pfifo_fast_priv *priv = qdisc_priv(qdisc); | 
|  | 447 | int band = bitmap2band[priv->bitmap]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 |  | 
| Krishna Kumar | fd3ae5e | 2009-08-18 21:55:59 +0000 | [diff] [blame] | 449 | if (likely(band >= 0)) { | 
|  | 450 | struct sk_buff_head *list = band2list(priv, band); | 
|  | 451 | struct sk_buff *skb = __qdisc_dequeue_head(qdisc, list); | 
|  | 452 |  | 
|  | 453 | qdisc->q.qlen--; | 
|  | 454 | if (skb_queue_empty(list)) | 
|  | 455 | priv->bitmap &= ~(1 << band); | 
|  | 456 |  | 
|  | 457 | return skb; | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 458 | } | 
| Thomas Graf | f87a9c3 | 2005-06-18 22:58:53 -0700 | [diff] [blame] | 459 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | return NULL; | 
|  | 461 | } | 
|  | 462 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 463 | static struct sk_buff *pfifo_fast_peek(struct Qdisc *qdisc) | 
| Jarek Poplawski | 99c0db2 | 2008-10-31 00:45:27 -0700 | [diff] [blame] | 464 | { | 
| Krishna Kumar | fd3ae5e | 2009-08-18 21:55:59 +0000 | [diff] [blame] | 465 | struct pfifo_fast_priv *priv = qdisc_priv(qdisc); | 
|  | 466 | int band = bitmap2band[priv->bitmap]; | 
| Jarek Poplawski | 99c0db2 | 2008-10-31 00:45:27 -0700 | [diff] [blame] | 467 |  | 
| Krishna Kumar | fd3ae5e | 2009-08-18 21:55:59 +0000 | [diff] [blame] | 468 | if (band >= 0) { | 
|  | 469 | struct sk_buff_head *list = band2list(priv, band); | 
|  | 470 |  | 
|  | 471 | return skb_peek(list); | 
| Jarek Poplawski | 99c0db2 | 2008-10-31 00:45:27 -0700 | [diff] [blame] | 472 | } | 
|  | 473 |  | 
|  | 474 | return NULL; | 
|  | 475 | } | 
|  | 476 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 477 | static void pfifo_fast_reset(struct Qdisc *qdisc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | { | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 479 | int prio; | 
| Krishna Kumar | fd3ae5e | 2009-08-18 21:55:59 +0000 | [diff] [blame] | 480 | struct pfifo_fast_priv *priv = qdisc_priv(qdisc); | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 481 |  | 
|  | 482 | for (prio = 0; prio < PFIFO_FAST_BANDS; prio++) | 
| Krishna Kumar | fd3ae5e | 2009-08-18 21:55:59 +0000 | [diff] [blame] | 483 | __qdisc_reset_queue(qdisc, band2list(priv, prio)); | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 484 |  | 
| Krishna Kumar | fd3ae5e | 2009-08-18 21:55:59 +0000 | [diff] [blame] | 485 | priv->bitmap = 0; | 
| Thomas Graf | 821d24a | 2005-06-18 22:58:15 -0700 | [diff] [blame] | 486 | qdisc->qstats.backlog = 0; | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 487 | qdisc->q.qlen = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | } | 
|  | 489 |  | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 490 | static int pfifo_fast_dump(struct Qdisc *qdisc, struct sk_buff *skb) | 
|  | 491 | { | 
|  | 492 | struct tc_prio_qopt opt = { .bands = PFIFO_FAST_BANDS }; | 
|  | 493 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 494 | memcpy(&opt.priomap, prio2band, TC_PRIO_MAX + 1); | 
| David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 495 | if (nla_put(skb, TCA_OPTIONS, sizeof(opt), &opt)) | 
|  | 496 | goto nla_put_failure; | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 497 | return skb->len; | 
|  | 498 |  | 
|  | 499 | nla_put_failure: | 
|  | 500 | return -1; | 
|  | 501 | } | 
|  | 502 |  | 
|  | 503 | static int pfifo_fast_init(struct Qdisc *qdisc, struct nlattr *opt) | 
|  | 504 | { | 
|  | 505 | int prio; | 
| Krishna Kumar | fd3ae5e | 2009-08-18 21:55:59 +0000 | [diff] [blame] | 506 | struct pfifo_fast_priv *priv = qdisc_priv(qdisc); | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 507 |  | 
|  | 508 | for (prio = 0; prio < PFIFO_FAST_BANDS; prio++) | 
| Krishna Kumar | fd3ae5e | 2009-08-18 21:55:59 +0000 | [diff] [blame] | 509 | skb_queue_head_init(band2list(priv, prio)); | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 510 |  | 
| Eric Dumazet | 2362493 | 2011-01-21 16:26:09 -0800 | [diff] [blame] | 511 | /* Can by-pass the queue discipline */ | 
|  | 512 | qdisc->flags |= TCQ_F_CAN_BYPASS; | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 513 | return 0; | 
|  | 514 | } | 
|  | 515 |  | 
| David S. Miller | 6ec1c69 | 2009-09-06 01:58:51 -0700 | [diff] [blame] | 516 | struct Qdisc_ops pfifo_fast_ops __read_mostly = { | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 517 | .id		=	"pfifo_fast", | 
| Krishna Kumar | fd3ae5e | 2009-08-18 21:55:59 +0000 | [diff] [blame] | 518 | .priv_size	=	sizeof(struct pfifo_fast_priv), | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 519 | .enqueue	=	pfifo_fast_enqueue, | 
|  | 520 | .dequeue	=	pfifo_fast_dequeue, | 
| Jarek Poplawski | 99c0db2 | 2008-10-31 00:45:27 -0700 | [diff] [blame] | 521 | .peek		=	pfifo_fast_peek, | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 522 | .init		=	pfifo_fast_init, | 
|  | 523 | .reset		=	pfifo_fast_reset, | 
|  | 524 | .dump		=	pfifo_fast_dump, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | .owner		=	THIS_MODULE, | 
|  | 526 | }; | 
| John Fastabend | b8970f0 | 2011-01-17 08:06:09 +0000 | [diff] [blame] | 527 | EXPORT_SYMBOL(pfifo_fast_ops); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 |  | 
| Eric Dumazet | 23d3b8b | 2012-09-05 01:02:56 +0000 | [diff] [blame] | 529 | static struct lock_class_key qdisc_tx_busylock; | 
|  | 530 |  | 
| David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 531 | struct Qdisc *qdisc_alloc(struct netdev_queue *dev_queue, | 
| David S. Miller | bb949fb | 2008-07-08 16:55:56 -0700 | [diff] [blame] | 532 | struct Qdisc_ops *ops) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | { | 
|  | 534 | void *p; | 
|  | 535 | struct Qdisc *sch; | 
| Eric Dumazet | d276055 | 2011-03-03 11:10:02 -0800 | [diff] [blame] | 536 | unsigned int size = QDISC_ALIGN(sizeof(*sch)) + ops->priv_size; | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 537 | int err = -ENOBUFS; | 
| Eric Dumazet | 23d3b8b | 2012-09-05 01:02:56 +0000 | [diff] [blame] | 538 | struct net_device *dev = dev_queue->dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 |  | 
| Eric Dumazet | f2cd2d3 | 2010-11-29 08:14:37 +0000 | [diff] [blame] | 540 | p = kzalloc_node(size, GFP_KERNEL, | 
|  | 541 | netdev_queue_numa_node_read(dev_queue)); | 
|  | 542 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | if (!p) | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 544 | goto errout; | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 545 | sch = (struct Qdisc *) QDISC_ALIGN((unsigned long) p); | 
| Eric Dumazet | d276055 | 2011-03-03 11:10:02 -0800 | [diff] [blame] | 546 | /* if we got non aligned memory, ask more and do alignment ourself */ | 
|  | 547 | if (sch != p) { | 
|  | 548 | kfree(p); | 
|  | 549 | p = kzalloc_node(size + QDISC_ALIGNTO - 1, GFP_KERNEL, | 
|  | 550 | netdev_queue_numa_node_read(dev_queue)); | 
|  | 551 | if (!p) | 
|  | 552 | goto errout; | 
|  | 553 | sch = (struct Qdisc *) QDISC_ALIGN((unsigned long) p); | 
|  | 554 | sch->padded = (char *) sch - (char *) p; | 
|  | 555 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | INIT_LIST_HEAD(&sch->list); | 
|  | 557 | skb_queue_head_init(&sch->q); | 
| Eric Dumazet | 23d3b8b | 2012-09-05 01:02:56 +0000 | [diff] [blame] | 558 |  | 
| Eric Dumazet | 79640a4 | 2010-06-02 05:09:29 -0700 | [diff] [blame] | 559 | spin_lock_init(&sch->busylock); | 
| Eric Dumazet | 23d3b8b | 2012-09-05 01:02:56 +0000 | [diff] [blame] | 560 | lockdep_set_class(&sch->busylock, | 
|  | 561 | dev->qdisc_tx_busylock ?: &qdisc_tx_busylock); | 
|  | 562 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | sch->ops = ops; | 
|  | 564 | sch->enqueue = ops->enqueue; | 
|  | 565 | sch->dequeue = ops->dequeue; | 
| David S. Miller | bb949fb | 2008-07-08 16:55:56 -0700 | [diff] [blame] | 566 | sch->dev_queue = dev_queue; | 
| Eric Dumazet | 23d3b8b | 2012-09-05 01:02:56 +0000 | [diff] [blame] | 567 | dev_hold(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | atomic_set(&sch->refcnt, 1); | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 569 |  | 
|  | 570 | return sch; | 
|  | 571 | errout: | 
| WANG Cong | 01e123d | 2008-06-27 19:51:35 -0700 | [diff] [blame] | 572 | return ERR_PTR(err); | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 573 | } | 
|  | 574 |  | 
| Changli Gao | 3511c91 | 2010-10-16 13:04:08 +0000 | [diff] [blame] | 575 | struct Qdisc *qdisc_create_dflt(struct netdev_queue *dev_queue, | 
|  | 576 | struct Qdisc_ops *ops, unsigned int parentid) | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 577 | { | 
|  | 578 | struct Qdisc *sch; | 
| YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 579 |  | 
| David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 580 | sch = qdisc_alloc(dev_queue, ops); | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 581 | if (IS_ERR(sch)) | 
|  | 582 | goto errout; | 
| Patrick McHardy | 9f9afec | 2006-11-29 17:35:18 -0800 | [diff] [blame] | 583 | sch->parent = parentid; | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 584 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | if (!ops->init || ops->init(sch, NULL) == 0) | 
|  | 586 | return sch; | 
|  | 587 |  | 
| Thomas Graf | 0fbbeb1 | 2005-08-23 10:12:44 -0700 | [diff] [blame] | 588 | qdisc_destroy(sch); | 
| Thomas Graf | 3d54b82 | 2005-07-05 14:15:09 -0700 | [diff] [blame] | 589 | errout: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | return NULL; | 
|  | 591 | } | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 592 | EXPORT_SYMBOL(qdisc_create_dflt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 |  | 
| David S. Miller | 5fb6622 | 2008-08-02 20:02:43 -0700 | [diff] [blame] | 594 | /* Under qdisc_lock(qdisc) and BH! */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 |  | 
|  | 596 | void qdisc_reset(struct Qdisc *qdisc) | 
|  | 597 | { | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 598 | const struct Qdisc_ops *ops = qdisc->ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 |  | 
|  | 600 | if (ops->reset) | 
|  | 601 | ops->reset(qdisc); | 
| Jarek Poplawski | 67305eb | 2008-11-03 02:52:50 -0800 | [diff] [blame] | 602 |  | 
| Krishna Kumar | bbd8a0d | 2009-08-06 01:44:21 +0000 | [diff] [blame] | 603 | if (qdisc->gso_skb) { | 
|  | 604 | kfree_skb(qdisc->gso_skb); | 
|  | 605 | qdisc->gso_skb = NULL; | 
|  | 606 | qdisc->q.qlen = 0; | 
|  | 607 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | } | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 609 | EXPORT_SYMBOL(qdisc_reset); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 |  | 
| Eric Dumazet | 5d944c6 | 2010-03-31 07:06:04 +0000 | [diff] [blame] | 611 | static void qdisc_rcu_free(struct rcu_head *head) | 
|  | 612 | { | 
|  | 613 | struct Qdisc *qdisc = container_of(head, struct Qdisc, rcu_head); | 
|  | 614 |  | 
|  | 615 | kfree((char *) qdisc - qdisc->padded); | 
|  | 616 | } | 
|  | 617 |  | 
| David S. Miller | 1e0d5a5 | 2008-08-17 22:31:26 -0700 | [diff] [blame] | 618 | void qdisc_destroy(struct Qdisc *qdisc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | { | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 620 | const struct Qdisc_ops  *ops = qdisc->ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 |  | 
| David S. Miller | 1e0d5a5 | 2008-08-17 22:31:26 -0700 | [diff] [blame] | 622 | if (qdisc->flags & TCQ_F_BUILTIN || | 
|  | 623 | !atomic_dec_and_test(&qdisc->refcnt)) | 
|  | 624 | return; | 
|  | 625 |  | 
| David S. Miller | 3a682fb | 2008-07-20 18:13:01 -0700 | [diff] [blame] | 626 | #ifdef CONFIG_NET_SCHED | 
| Jarek Poplawski | f6e0b23 | 2008-08-22 03:24:05 -0700 | [diff] [blame] | 627 | qdisc_list_del(qdisc); | 
|  | 628 |  | 
| Eric Dumazet | a2da570 | 2011-01-20 03:48:19 +0000 | [diff] [blame] | 629 | qdisc_put_stab(rtnl_dereference(qdisc->stab)); | 
| David S. Miller | 3a682fb | 2008-07-20 18:13:01 -0700 | [diff] [blame] | 630 | #endif | 
| Patrick McHardy | 85670cc | 2006-09-27 16:45:45 -0700 | [diff] [blame] | 631 | gen_kill_estimator(&qdisc->bstats, &qdisc->rate_est); | 
| Patrick McHardy | 85670cc | 2006-09-27 16:45:45 -0700 | [diff] [blame] | 632 | if (ops->reset) | 
|  | 633 | ops->reset(qdisc); | 
|  | 634 | if (ops->destroy) | 
|  | 635 | ops->destroy(qdisc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 |  | 
| Patrick McHardy | 85670cc | 2006-09-27 16:45:45 -0700 | [diff] [blame] | 637 | module_put(ops->owner); | 
| David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 638 | dev_put(qdisc_dev(qdisc)); | 
| David S. Miller | 8a34c5d | 2008-07-17 00:47:45 -0700 | [diff] [blame] | 639 |  | 
| Jarek Poplawski | 554794d | 2008-10-06 09:54:39 -0700 | [diff] [blame] | 640 | kfree_skb(qdisc->gso_skb); | 
| Eric Dumazet | 5d944c6 | 2010-03-31 07:06:04 +0000 | [diff] [blame] | 641 | /* | 
|  | 642 | * gen_estimator est_timer() might access qdisc->q.lock, | 
|  | 643 | * wait a RCU grace period before freeing qdisc. | 
|  | 644 | */ | 
|  | 645 | call_rcu(&qdisc->rcu_head, qdisc_rcu_free); | 
| David S. Miller | 8a34c5d | 2008-07-17 00:47:45 -0700 | [diff] [blame] | 646 | } | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 647 | EXPORT_SYMBOL(qdisc_destroy); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 |  | 
| Patrick McHardy | 589983c | 2009-09-04 06:41:20 +0000 | [diff] [blame] | 649 | /* Attach toplevel qdisc to device queue. */ | 
|  | 650 | struct Qdisc *dev_graft_qdisc(struct netdev_queue *dev_queue, | 
|  | 651 | struct Qdisc *qdisc) | 
|  | 652 | { | 
|  | 653 | struct Qdisc *oqdisc = dev_queue->qdisc_sleeping; | 
|  | 654 | spinlock_t *root_lock; | 
|  | 655 |  | 
|  | 656 | root_lock = qdisc_lock(oqdisc); | 
|  | 657 | spin_lock_bh(root_lock); | 
|  | 658 |  | 
|  | 659 | /* Prune old scheduler */ | 
|  | 660 | if (oqdisc && atomic_read(&oqdisc->refcnt) <= 1) | 
|  | 661 | qdisc_reset(oqdisc); | 
|  | 662 |  | 
|  | 663 | /* ... and graft new one */ | 
|  | 664 | if (qdisc == NULL) | 
|  | 665 | qdisc = &noop_qdisc; | 
|  | 666 | dev_queue->qdisc_sleeping = qdisc; | 
|  | 667 | rcu_assign_pointer(dev_queue->qdisc, &noop_qdisc); | 
|  | 668 |  | 
|  | 669 | spin_unlock_bh(root_lock); | 
|  | 670 |  | 
|  | 671 | return oqdisc; | 
|  | 672 | } | 
| John Fastabend | b8970f0 | 2011-01-17 08:06:09 +0000 | [diff] [blame] | 673 | EXPORT_SYMBOL(dev_graft_qdisc); | 
| Patrick McHardy | 589983c | 2009-09-04 06:41:20 +0000 | [diff] [blame] | 674 |  | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 675 | static void attach_one_default_qdisc(struct net_device *dev, | 
|  | 676 | struct netdev_queue *dev_queue, | 
|  | 677 | void *_unused) | 
|  | 678 | { | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 679 | struct Qdisc *qdisc = &noqueue_qdisc; | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 680 |  | 
|  | 681 | if (dev->tx_queue_len) { | 
| Changli Gao | 3511c91 | 2010-10-16 13:04:08 +0000 | [diff] [blame] | 682 | qdisc = qdisc_create_dflt(dev_queue, | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 683 | &pfifo_fast_ops, TC_H_ROOT); | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 684 | if (!qdisc) { | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 685 | netdev_info(dev, "activation failed\n"); | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 686 | return; | 
|  | 687 | } | 
| Eric Dumazet | 1abbe13 | 2012-12-11 15:54:33 +0000 | [diff] [blame] | 688 | if (!netif_is_multiqueue(dev)) | 
|  | 689 | qdisc->flags |= TCQ_F_ONETXQUEUE; | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 690 | } | 
|  | 691 | dev_queue->qdisc_sleeping = qdisc; | 
|  | 692 | } | 
|  | 693 |  | 
| David S. Miller | 6ec1c69 | 2009-09-06 01:58:51 -0700 | [diff] [blame] | 694 | static void attach_default_qdiscs(struct net_device *dev) | 
|  | 695 | { | 
|  | 696 | struct netdev_queue *txq; | 
|  | 697 | struct Qdisc *qdisc; | 
|  | 698 |  | 
|  | 699 | txq = netdev_get_tx_queue(dev, 0); | 
|  | 700 |  | 
|  | 701 | if (!netif_is_multiqueue(dev) || dev->tx_queue_len == 0) { | 
|  | 702 | netdev_for_each_tx_queue(dev, attach_one_default_qdisc, NULL); | 
|  | 703 | dev->qdisc = txq->qdisc_sleeping; | 
|  | 704 | atomic_inc(&dev->qdisc->refcnt); | 
|  | 705 | } else { | 
| Changli Gao | 3511c91 | 2010-10-16 13:04:08 +0000 | [diff] [blame] | 706 | qdisc = qdisc_create_dflt(txq, &mq_qdisc_ops, TC_H_ROOT); | 
| David S. Miller | 6ec1c69 | 2009-09-06 01:58:51 -0700 | [diff] [blame] | 707 | if (qdisc) { | 
|  | 708 | qdisc->ops->attach(qdisc); | 
|  | 709 | dev->qdisc = qdisc; | 
|  | 710 | } | 
|  | 711 | } | 
|  | 712 | } | 
|  | 713 |  | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 714 | static void transition_one_qdisc(struct net_device *dev, | 
|  | 715 | struct netdev_queue *dev_queue, | 
|  | 716 | void *_need_watchdog) | 
|  | 717 | { | 
| David S. Miller | 8387400 | 2008-07-17 00:53:03 -0700 | [diff] [blame] | 718 | struct Qdisc *new_qdisc = dev_queue->qdisc_sleeping; | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 719 | int *need_watchdog_p = _need_watchdog; | 
|  | 720 |  | 
| David S. Miller | a9312ae | 2008-08-17 21:51:03 -0700 | [diff] [blame] | 721 | if (!(new_qdisc->flags & TCQ_F_BUILTIN)) | 
|  | 722 | clear_bit(__QDISC_STATE_DEACTIVATED, &new_qdisc->state); | 
|  | 723 |  | 
| David S. Miller | 8387400 | 2008-07-17 00:53:03 -0700 | [diff] [blame] | 724 | rcu_assign_pointer(dev_queue->qdisc, new_qdisc); | 
| Eric Dumazet | 9d21493 | 2009-05-17 20:55:16 -0700 | [diff] [blame] | 725 | if (need_watchdog_p && new_qdisc != &noqueue_qdisc) { | 
|  | 726 | dev_queue->trans_start = 0; | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 727 | *need_watchdog_p = 1; | 
| Eric Dumazet | 9d21493 | 2009-05-17 20:55:16 -0700 | [diff] [blame] | 728 | } | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 729 | } | 
|  | 730 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | void dev_activate(struct net_device *dev) | 
|  | 732 | { | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 733 | int need_watchdog; | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 734 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | /* No queueing discipline is attached to device; | 
| David S. Miller | d3678b4 | 2008-07-21 09:56:13 -0700 | [diff] [blame] | 736 | create default one i.e. pfifo_fast for devices, | 
|  | 737 | which need queueing and noqueue_qdisc for | 
|  | 738 | virtual interfaces | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | */ | 
|  | 740 |  | 
| David S. Miller | 6ec1c69 | 2009-09-06 01:58:51 -0700 | [diff] [blame] | 741 | if (dev->qdisc == &noop_qdisc) | 
|  | 742 | attach_default_qdiscs(dev); | 
| Patrick McHardy | af356af | 2009-09-04 06:41:18 +0000 | [diff] [blame] | 743 |  | 
| Tommy S. Christensen | cacaddf | 2005-05-03 16:18:52 -0700 | [diff] [blame] | 744 | if (!netif_carrier_ok(dev)) | 
|  | 745 | /* Delay activation until next carrier-on event */ | 
|  | 746 | return; | 
|  | 747 |  | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 748 | need_watchdog = 0; | 
|  | 749 | netdev_for_each_tx_queue(dev, transition_one_qdisc, &need_watchdog); | 
| Eric Dumazet | 24824a0 | 2010-10-02 06:11:55 +0000 | [diff] [blame] | 750 | if (dev_ingress_queue(dev)) | 
|  | 751 | transition_one_qdisc(dev, dev_ingress_queue(dev), NULL); | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 752 |  | 
|  | 753 | if (need_watchdog) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | dev->trans_start = jiffies; | 
|  | 755 | dev_watchdog_up(dev); | 
|  | 756 | } | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 757 | } | 
| John Fastabend | b8970f0 | 2011-01-17 08:06:09 +0000 | [diff] [blame] | 758 | EXPORT_SYMBOL(dev_activate); | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 759 |  | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 760 | static void dev_deactivate_queue(struct net_device *dev, | 
|  | 761 | struct netdev_queue *dev_queue, | 
|  | 762 | void *_qdisc_default) | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 763 | { | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 764 | struct Qdisc *qdisc_default = _qdisc_default; | 
| David S. Miller | 970565b | 2008-07-08 23:10:33 -0700 | [diff] [blame] | 765 | struct Qdisc *qdisc; | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 766 |  | 
| David S. Miller | 970565b | 2008-07-08 23:10:33 -0700 | [diff] [blame] | 767 | qdisc = dev_queue->qdisc; | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 768 | if (qdisc) { | 
| David S. Miller | 8387400 | 2008-07-17 00:53:03 -0700 | [diff] [blame] | 769 | spin_lock_bh(qdisc_lock(qdisc)); | 
|  | 770 |  | 
| David S. Miller | a9312ae | 2008-08-17 21:51:03 -0700 | [diff] [blame] | 771 | if (!(qdisc->flags & TCQ_F_BUILTIN)) | 
|  | 772 | set_bit(__QDISC_STATE_DEACTIVATED, &qdisc->state); | 
|  | 773 |  | 
| Jarek Poplawski | f7a54c1 | 2008-08-27 02:22:07 -0700 | [diff] [blame] | 774 | rcu_assign_pointer(dev_queue->qdisc, qdisc_default); | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 775 | qdisc_reset(qdisc); | 
| David S. Miller | d3b753d | 2008-07-15 20:14:35 -0700 | [diff] [blame] | 776 |  | 
| David S. Miller | 8387400 | 2008-07-17 00:53:03 -0700 | [diff] [blame] | 777 | spin_unlock_bh(qdisc_lock(qdisc)); | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 778 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | } | 
|  | 780 |  | 
| David S. Miller | 4335cd2 | 2008-08-17 21:58:07 -0700 | [diff] [blame] | 781 | static bool some_qdisc_is_busy(struct net_device *dev) | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 782 | { | 
|  | 783 | unsigned int i; | 
|  | 784 |  | 
|  | 785 | for (i = 0; i < dev->num_tx_queues; i++) { | 
|  | 786 | struct netdev_queue *dev_queue; | 
| David S. Miller | 7698b4f | 2008-07-16 01:42:40 -0700 | [diff] [blame] | 787 | spinlock_t *root_lock; | 
| David S. Miller | e2627c8 | 2008-07-16 00:56:32 -0700 | [diff] [blame] | 788 | struct Qdisc *q; | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 789 | int val; | 
|  | 790 |  | 
|  | 791 | dev_queue = netdev_get_tx_queue(dev, i); | 
| David S. Miller | b9a3b11 | 2008-08-13 15:18:38 -0700 | [diff] [blame] | 792 | q = dev_queue->qdisc_sleeping; | 
| David S. Miller | 5fb6622 | 2008-08-02 20:02:43 -0700 | [diff] [blame] | 793 | root_lock = qdisc_lock(q); | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 794 |  | 
| David S. Miller | 4335cd2 | 2008-08-17 21:58:07 -0700 | [diff] [blame] | 795 | spin_lock_bh(root_lock); | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 796 |  | 
| Eric Dumazet | bc135b2 | 2010-06-02 03:23:51 -0700 | [diff] [blame] | 797 | val = (qdisc_is_running(q) || | 
| David S. Miller | b9a3b11 | 2008-08-13 15:18:38 -0700 | [diff] [blame] | 798 | test_bit(__QDISC_STATE_SCHED, &q->state)); | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 799 |  | 
| David S. Miller | 4335cd2 | 2008-08-17 21:58:07 -0700 | [diff] [blame] | 800 | spin_unlock_bh(root_lock); | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 801 |  | 
|  | 802 | if (val) | 
|  | 803 | return true; | 
|  | 804 | } | 
|  | 805 | return false; | 
|  | 806 | } | 
|  | 807 |  | 
| Eric Dumazet | 3137663 | 2011-05-19 23:42:09 +0000 | [diff] [blame] | 808 | /** | 
|  | 809 | * 	dev_deactivate_many - deactivate transmissions on several devices | 
|  | 810 | * 	@head: list of devices to deactivate | 
|  | 811 | * | 
|  | 812 | *	This function returns only when all outstanding transmissions | 
|  | 813 | *	have completed, unless all devices are in dismantle phase. | 
|  | 814 | */ | 
| Octavian Purdila | 4434572 | 2010-12-13 12:44:07 +0000 | [diff] [blame] | 815 | void dev_deactivate_many(struct list_head *head) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | { | 
| Octavian Purdila | 4434572 | 2010-12-13 12:44:07 +0000 | [diff] [blame] | 817 | struct net_device *dev; | 
| Eric Dumazet | 3137663 | 2011-05-19 23:42:09 +0000 | [diff] [blame] | 818 | bool sync_needed = false; | 
| Herbert Xu | 41a23b0 | 2007-05-10 14:12:47 -0700 | [diff] [blame] | 819 |  | 
| Octavian Purdila | 4434572 | 2010-12-13 12:44:07 +0000 | [diff] [blame] | 820 | list_for_each_entry(dev, head, unreg_list) { | 
|  | 821 | netdev_for_each_tx_queue(dev, dev_deactivate_queue, | 
|  | 822 | &noop_qdisc); | 
|  | 823 | if (dev_ingress_queue(dev)) | 
|  | 824 | dev_deactivate_queue(dev, dev_ingress_queue(dev), | 
|  | 825 | &noop_qdisc); | 
|  | 826 |  | 
|  | 827 | dev_watchdog_down(dev); | 
| Eric Dumazet | 3137663 | 2011-05-19 23:42:09 +0000 | [diff] [blame] | 828 | sync_needed |= !dev->dismantle; | 
| Octavian Purdila | 4434572 | 2010-12-13 12:44:07 +0000 | [diff] [blame] | 829 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 |  | 
| Eric Dumazet | 3137663 | 2011-05-19 23:42:09 +0000 | [diff] [blame] | 831 | /* Wait for outstanding qdisc-less dev_queue_xmit calls. | 
|  | 832 | * This is avoided if all devices are in dismantle phase : | 
|  | 833 | * Caller will call synchronize_net() for us | 
|  | 834 | */ | 
|  | 835 | if (sync_needed) | 
|  | 836 | synchronize_net(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 |  | 
| Herbert Xu | d4828d8 | 2006-06-22 02:28:18 -0700 | [diff] [blame] | 838 | /* Wait for outstanding qdisc_run calls. */ | 
| Octavian Purdila | 4434572 | 2010-12-13 12:44:07 +0000 | [diff] [blame] | 839 | list_for_each_entry(dev, head, unreg_list) | 
|  | 840 | while (some_qdisc_is_busy(dev)) | 
|  | 841 | yield(); | 
|  | 842 | } | 
|  | 843 |  | 
|  | 844 | void dev_deactivate(struct net_device *dev) | 
|  | 845 | { | 
|  | 846 | LIST_HEAD(single); | 
|  | 847 |  | 
|  | 848 | list_add(&dev->unreg_list, &single); | 
|  | 849 | dev_deactivate_many(&single); | 
| Eric W. Biederman | 5f04d50 | 2011-02-20 11:49:45 -0800 | [diff] [blame] | 850 | list_del(&single); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | } | 
| John Fastabend | b8970f0 | 2011-01-17 08:06:09 +0000 | [diff] [blame] | 852 | EXPORT_SYMBOL(dev_deactivate); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 |  | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 854 | static void dev_init_scheduler_queue(struct net_device *dev, | 
|  | 855 | struct netdev_queue *dev_queue, | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 856 | void *_qdisc) | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 857 | { | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 858 | struct Qdisc *qdisc = _qdisc; | 
|  | 859 |  | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 860 | dev_queue->qdisc = qdisc; | 
|  | 861 | dev_queue->qdisc_sleeping = qdisc; | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 862 | } | 
|  | 863 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | void dev_init_scheduler(struct net_device *dev) | 
|  | 865 | { | 
| Patrick McHardy | af356af | 2009-09-04 06:41:18 +0000 | [diff] [blame] | 866 | dev->qdisc = &noop_qdisc; | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 867 | netdev_for_each_tx_queue(dev, dev_init_scheduler_queue, &noop_qdisc); | 
| Eric Dumazet | 24824a0 | 2010-10-02 06:11:55 +0000 | [diff] [blame] | 868 | if (dev_ingress_queue(dev)) | 
|  | 869 | dev_init_scheduler_queue(dev, dev_ingress_queue(dev), &noop_qdisc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 |  | 
| Pavel Emelyanov | b24b8a2 | 2008-01-23 21:20:07 -0800 | [diff] [blame] | 871 | setup_timer(&dev->watchdog_timer, dev_watchdog, (unsigned long)dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | } | 
|  | 873 |  | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 874 | static void shutdown_scheduler_queue(struct net_device *dev, | 
|  | 875 | struct netdev_queue *dev_queue, | 
|  | 876 | void *_qdisc_default) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | { | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 878 | struct Qdisc *qdisc = dev_queue->qdisc_sleeping; | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 879 | struct Qdisc *qdisc_default = _qdisc_default; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 |  | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 881 | if (qdisc) { | 
| Jarek Poplawski | f7a54c1 | 2008-08-27 02:22:07 -0700 | [diff] [blame] | 882 | rcu_assign_pointer(dev_queue->qdisc, qdisc_default); | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 883 | dev_queue->qdisc_sleeping = qdisc_default; | 
|  | 884 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | qdisc_destroy(qdisc); | 
| YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 886 | } | 
| David S. Miller | b0e1e64 | 2008-07-08 17:42:10 -0700 | [diff] [blame] | 887 | } | 
|  | 888 |  | 
|  | 889 | void dev_shutdown(struct net_device *dev) | 
|  | 890 | { | 
| David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 891 | netdev_for_each_tx_queue(dev, shutdown_scheduler_queue, &noop_qdisc); | 
| Eric Dumazet | 24824a0 | 2010-10-02 06:11:55 +0000 | [diff] [blame] | 892 | if (dev_ingress_queue(dev)) | 
|  | 893 | shutdown_scheduler_queue(dev, dev_ingress_queue(dev), &noop_qdisc); | 
| Patrick McHardy | af356af | 2009-09-04 06:41:18 +0000 | [diff] [blame] | 894 | qdisc_destroy(dev->qdisc); | 
|  | 895 | dev->qdisc = &noop_qdisc; | 
|  | 896 |  | 
| Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 897 | WARN_ON(timer_pending(&dev->watchdog_timer)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | } |