blob: ff4dd53eeff013f875330d8fbeb24e3a6e299e5a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#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 Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#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 Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <net/pkt_sched.h>
29
30/* Main transmission queue. */
31
Patrick McHardy0463d4a2007-04-16 17:02:10 -070032/* Modifications to data participating in scheduling must be protected with
David S. Miller5fb66222008-08-02 20:02:43 -070033 * qdisc_lock(qdisc) spinlock.
Patrick McHardy0463d4a2007-04-16 17:02:10 -070034 *
35 * The idea is the following:
David S. Millerc7e4f3b2008-07-16 03:22:39 -070036 * - enqueue, dequeue are serialized via qdisc root lock
37 * - ingress filtering is also serialized via qdisc root lock
Patrick McHardy0463d4a2007-04-16 17:02:10 -070038 * - updates to tree and tree walking are only done under the rtnl mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
David S. Miller37437bb2008-07-16 02:15:04 -070041static inline int dev_requeue_skb(struct sk_buff *skb, struct Qdisc *q)
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070042{
Jarek Poplawski62523522008-10-06 10:41:50 -070043 q->gso_skb = skb;
Jarek Poplawski53e91502008-10-08 11:36:22 -070044 q->qstats.requeues++;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +000045 q->q.qlen++; /* it's still part of the queue */
David S. Miller37437bb2008-07-16 02:15:04 -070046 __netif_schedule(q);
Jarek Poplawski62523522008-10-06 10:41:50 -070047
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070048 return 0;
49}
50
David S. Millerd3b753d2008-07-15 20:14:35 -070051static inline struct sk_buff *dequeue_skb(struct Qdisc *q)
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070052{
Jarek Poplawski554794d2008-10-06 09:54:39 -070053 struct sk_buff *skb = q->gso_skb;
54
Jarek Poplawskiebf05982008-09-22 22:16:23 -070055 if (unlikely(skb)) {
56 struct net_device *dev = qdisc_dev(q);
57 struct netdev_queue *txq;
58
59 /* check the reason of requeuing without tx lock first */
60 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +000061 if (!netif_tx_queue_stopped(txq) &&
62 !netif_tx_queue_frozen(txq)) {
Jarek Poplawski62523522008-10-06 10:41:50 -070063 q->gso_skb = NULL;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +000064 q->q.qlen--;
65 } else
Jarek Poplawskiebf05982008-09-22 22:16:23 -070066 skb = NULL;
67 } else {
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070068 skb = q->dequeue(q);
Jarek Poplawskiebf05982008-09-22 22:16:23 -070069 }
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070070
71 return skb;
72}
73
Krishna Kumar6c1361a2007-06-24 19:56:09 -070074static inline int handle_dev_cpu_collision(struct sk_buff *skb,
David S. Miller970565b2008-07-08 23:10:33 -070075 struct netdev_queue *dev_queue,
Krishna Kumar6c1361a2007-06-24 19:56:09 -070076 struct Qdisc *q)
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070077{
Krishna Kumar6c1361a2007-06-24 19:56:09 -070078 int ret;
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070079
David S. Millerc773e842008-07-08 23:13:53 -070080 if (unlikely(dev_queue->xmit_lock_owner == smp_processor_id())) {
Krishna Kumar6c1361a2007-06-24 19:56:09 -070081 /*
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 Salimc716a812007-06-10 17:31:24 -070087 kfree_skb(skb);
Krishna Kumar6c1361a2007-06-24 19:56:09 -070088 if (net_ratelimit())
89 printk(KERN_WARNING "Dead loop on netdevice %s, "
David S. Millerc773e842008-07-08 23:13:53 -070090 "fix it urgently!\n", dev_queue->dev->name);
Krishna Kumar6c1361a2007-06-24 19:56:09 -070091 ret = qdisc_qlen(q);
92 } else {
93 /*
94 * Another cpu is holding lock, requeue & delay xmits for
95 * some time.
96 */
97 __get_cpu_var(netdev_rx_stat).cpu_collision++;
David S. Miller37437bb2008-07-16 02:15:04 -070098 ret = dev_requeue_skb(skb, q);
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070099 }
100
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700101 return ret;
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700102}
103
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900104/*
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000105 * Transmit one skb, and handle the return status as required. Holding the
106 * __QDISC_STATE_RUNNING bit guarantees that only one CPU can execute this
107 * function.
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700108 *
109 * Returns to the caller:
110 * 0 - queue is empty or throttled.
111 * >0 - queue is not empty.
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700112 */
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000113int sch_direct_xmit(struct sk_buff *skb, struct Qdisc *q,
114 struct net_device *dev, struct netdev_queue *txq,
115 spinlock_t *root_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Peter P Waskiewicz Jr5f1a4852007-11-13 20:40:55 -0800117 int ret = NETDEV_TX_BUSY;
David S. Miller7698b4f2008-07-16 01:42:40 -0700118
119 /* And release qdisc */
120 spin_unlock(root_lock);
Herbert Xud90df3a2007-05-10 04:55:14 -0700121
David S. Millerc773e842008-07-08 23:13:53 -0700122 HARD_TX_LOCK(dev, txq, smp_processor_id());
Jarek Poplawski9a1654b2009-11-15 07:20:12 +0000123 if (!netif_tx_queue_stopped(txq) && !netif_tx_queue_frozen(txq))
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700124 ret = dev_hard_start_xmit(skb, dev, txq);
Patrick McHardy572a9d72009-11-10 06:14:14 +0000125
David S. Millerc773e842008-07-08 23:13:53 -0700126 HARD_TX_UNLOCK(dev, txq);
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700127
David S. Miller7698b4f2008-07-16 01:42:40 -0700128 spin_lock(root_lock);
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700129
Jarek Poplawski9a1654b2009-11-15 07:20:12 +0000130 if (dev_xmit_complete(ret)) {
131 /* Driver sent out skb successfully or skb was consumed */
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700132 ret = qdisc_qlen(q);
Jarek Poplawski9a1654b2009-11-15 07:20:12 +0000133 } else if (ret == NETDEV_TX_LOCKED) {
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700134 /* Driver try lock failed */
David S. Millereb6aafe2008-07-08 23:12:38 -0700135 ret = handle_dev_cpu_collision(skb, txq, q);
Jarek Poplawski9a1654b2009-11-15 07:20:12 +0000136 } else {
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700137 /* Driver returned NETDEV_TX_BUSY - requeue skb */
138 if (unlikely (ret != NETDEV_TX_BUSY && net_ratelimit()))
139 printk(KERN_WARNING "BUG %s code %d qlen %d\n",
140 dev->name, ret, q->q.qlen);
141
David S. Miller37437bb2008-07-16 02:15:04 -0700142 ret = dev_requeue_skb(skb, q);
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700143 }
144
David S. Millerc3f26a22008-07-31 16:58:50 -0700145 if (ret && (netif_tx_queue_stopped(txq) ||
146 netif_tx_queue_frozen(txq)))
David S. Miller37437bb2008-07-16 02:15:04 -0700147 ret = 0;
148
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700149 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000152/*
153 * NOTE: Called under qdisc_lock(q) with locally disabled BH.
154 *
155 * __QDISC_STATE_RUNNING guarantees only one CPU can process
156 * this qdisc at a time. qdisc_lock(q) serializes queue accesses for
157 * this queue.
158 *
159 * netif_tx_lock serializes accesses to device driver.
160 *
161 * qdisc_lock(q) and netif_tx_lock are mutually exclusive,
162 * if one is grabbed, another must be free.
163 *
164 * Note, that this procedure can be called by a watchdog timer
165 *
166 * Returns to the caller:
167 * 0 - queue is empty or throttled.
168 * >0 - queue is not empty.
169 *
170 */
171static inline int qdisc_restart(struct Qdisc *q)
172{
173 struct netdev_queue *txq;
174 struct net_device *dev;
175 spinlock_t *root_lock;
176 struct sk_buff *skb;
177
178 /* Dequeue packet */
179 skb = dequeue_skb(q);
180 if (unlikely(!skb))
181 return 0;
182
183 root_lock = qdisc_lock(q);
184 dev = qdisc_dev(q);
185 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
186
187 return sch_direct_xmit(skb, q, dev, txq, root_lock);
188}
189
David S. Miller37437bb2008-07-16 02:15:04 -0700190void __qdisc_run(struct Qdisc *q)
Herbert Xu48d83322006-06-19 23:57:59 -0700191{
Herbert Xu2ba25062008-03-28 16:25:26 -0700192 unsigned long start_time = jiffies;
193
David S. Miller37437bb2008-07-16 02:15:04 -0700194 while (qdisc_restart(q)) {
Herbert Xu2ba25062008-03-28 16:25:26 -0700195 /*
196 * Postpone processing if
197 * 1. another process needs the CPU;
198 * 2. we've been doing it for too long.
199 */
200 if (need_resched() || jiffies != start_time) {
David S. Miller37437bb2008-07-16 02:15:04 -0700201 __netif_schedule(q);
Herbert Xu2ba25062008-03-28 16:25:26 -0700202 break;
203 }
204 }
Herbert Xu48d83322006-06-19 23:57:59 -0700205
David S. Millere2627c82008-07-16 00:56:32 -0700206 clear_bit(__QDISC_STATE_RUNNING, &q->state);
Herbert Xu48d83322006-06-19 23:57:59 -0700207}
208
Eric Dumazet9d214932009-05-17 20:55:16 -0700209unsigned long dev_trans_start(struct net_device *dev)
210{
211 unsigned long val, res = dev->trans_start;
212 unsigned int i;
213
214 for (i = 0; i < dev->num_tx_queues; i++) {
215 val = netdev_get_tx_queue(dev, i)->trans_start;
216 if (val && time_after(val, res))
217 res = val;
218 }
219 dev->trans_start = res;
220 return res;
221}
222EXPORT_SYMBOL(dev_trans_start);
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224static void dev_watchdog(unsigned long arg)
225{
226 struct net_device *dev = (struct net_device *)arg;
227
Herbert Xu932ff272006-06-09 12:20:56 -0700228 netif_tx_lock(dev);
David S. Millere8a04642008-07-17 00:34:19 -0700229 if (!qdisc_tx_is_noop(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (netif_device_present(dev) &&
231 netif_running(dev) &&
232 netif_carrier_ok(dev)) {
Eric Dumazet9d214932009-05-17 20:55:16 -0700233 int some_queue_timedout = 0;
David S. Millere8a04642008-07-17 00:34:19 -0700234 unsigned int i;
Eric Dumazet9d214932009-05-17 20:55:16 -0700235 unsigned long trans_start;
Stephen Hemminger338f7562006-05-16 15:02:12 -0700236
David S. Millere8a04642008-07-17 00:34:19 -0700237 for (i = 0; i < dev->num_tx_queues; i++) {
238 struct netdev_queue *txq;
239
240 txq = netdev_get_tx_queue(dev, i);
Eric Dumazet9d214932009-05-17 20:55:16 -0700241 /*
242 * old device drivers set dev->trans_start
243 */
244 trans_start = txq->trans_start ? : dev->trans_start;
245 if (netif_tx_queue_stopped(txq) &&
246 time_after(jiffies, (trans_start +
247 dev->watchdog_timeo))) {
248 some_queue_timedout = 1;
David S. Millere8a04642008-07-17 00:34:19 -0700249 break;
250 }
251 }
252
Eric Dumazet9d214932009-05-17 20:55:16 -0700253 if (some_queue_timedout) {
Arjan van de Ven6579e572008-07-21 13:31:48 -0700254 char drivername[64];
Eric Dumazet9d214932009-05-17 20:55:16 -0700255 WARN_ONCE(1, KERN_INFO "NETDEV WATCHDOG: %s (%s): transmit queue %u timed out\n",
256 dev->name, netdev_drivername(dev, drivername, 64), i);
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800257 dev->netdev_ops->ndo_tx_timeout(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
David S. Millere8a04642008-07-17 00:34:19 -0700259 if (!mod_timer(&dev->watchdog_timer,
260 round_jiffies(jiffies +
261 dev->watchdog_timeo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 dev_hold(dev);
263 }
264 }
Herbert Xu932ff272006-06-09 12:20:56 -0700265 netif_tx_unlock(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 dev_put(dev);
268}
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270void __netdev_watchdog_up(struct net_device *dev)
271{
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800272 if (dev->netdev_ops->ndo_tx_timeout) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (dev->watchdog_timeo <= 0)
274 dev->watchdog_timeo = 5*HZ;
Venkatesh Pallipadi60468d52007-05-31 21:28:44 -0700275 if (!mod_timer(&dev->watchdog_timer,
276 round_jiffies(jiffies + dev->watchdog_timeo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 dev_hold(dev);
278 }
279}
280
281static void dev_watchdog_up(struct net_device *dev)
282{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 __netdev_watchdog_up(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286static void dev_watchdog_down(struct net_device *dev)
287{
Herbert Xu932ff272006-06-09 12:20:56 -0700288 netif_tx_lock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (del_timer(&dev->watchdog_timer))
Stephen Hemminger15333062006-03-20 22:32:28 -0800290 dev_put(dev);
Herbert Xu932ff272006-06-09 12:20:56 -0700291 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700294/**
295 * netif_carrier_on - set carrier
296 * @dev: network device
297 *
298 * Device has detected that carrier.
299 */
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700300void netif_carrier_on(struct net_device *dev)
301{
Jeff Garzikbfaae0f2007-10-17 23:26:43 -0700302 if (test_and_clear_bit(__LINK_STATE_NOCARRIER, &dev->state)) {
David S. Millerb4730012008-11-19 15:33:54 -0800303 if (dev->reg_state == NETREG_UNINITIALIZED)
304 return;
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700305 linkwatch_fire_event(dev);
Jeff Garzikbfaae0f2007-10-17 23:26:43 -0700306 if (netif_running(dev))
307 __netdev_watchdog_up(dev);
308 }
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700309}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800310EXPORT_SYMBOL(netif_carrier_on);
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700311
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700312/**
313 * netif_carrier_off - clear carrier
314 * @dev: network device
315 *
316 * Device has detected loss of carrier.
317 */
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700318void netif_carrier_off(struct net_device *dev)
319{
David S. Millerb4730012008-11-19 15:33:54 -0800320 if (!test_and_set_bit(__LINK_STATE_NOCARRIER, &dev->state)) {
321 if (dev->reg_state == NETREG_UNINITIALIZED)
322 return;
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700323 linkwatch_fire_event(dev);
David S. Millerb4730012008-11-19 15:33:54 -0800324 }
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700325}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800326EXPORT_SYMBOL(netif_carrier_off);
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328/* "NOOP" scheduler: the best scheduler, recommended for all interfaces
329 under all circumstances. It is difficult to invent anything faster or
330 cheaper.
331 */
332
Thomas Graf94df1092005-06-18 22:59:08 -0700333static int noop_enqueue(struct sk_buff *skb, struct Qdisc * qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 kfree_skb(skb);
336 return NET_XMIT_CN;
337}
338
Thomas Graf94df1092005-06-18 22:59:08 -0700339static struct sk_buff *noop_dequeue(struct Qdisc * qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 return NULL;
342}
343
Eric Dumazet20fea082007-11-14 01:44:41 -0800344struct Qdisc_ops noop_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 .id = "noop",
346 .priv_size = 0,
347 .enqueue = noop_enqueue,
348 .dequeue = noop_dequeue,
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700349 .peek = noop_dequeue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 .owner = THIS_MODULE,
351};
352
David S. Miller7698b4f2008-07-16 01:42:40 -0700353static struct netdev_queue noop_netdev_queue = {
David S. Miller7698b4f2008-07-16 01:42:40 -0700354 .qdisc = &noop_qdisc,
Jarek Poplawski9f3ffae2008-10-19 23:37:47 -0700355 .qdisc_sleeping = &noop_qdisc,
David S. Miller7698b4f2008-07-16 01:42:40 -0700356};
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358struct Qdisc noop_qdisc = {
359 .enqueue = noop_enqueue,
360 .dequeue = noop_dequeue,
361 .flags = TCQ_F_BUILTIN,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900362 .ops = &noop_qdisc_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 .list = LIST_HEAD_INIT(noop_qdisc.list),
David S. Miller83874002008-07-17 00:53:03 -0700364 .q.lock = __SPIN_LOCK_UNLOCKED(noop_qdisc.q.lock),
David S. Miller7698b4f2008-07-16 01:42:40 -0700365 .dev_queue = &noop_netdev_queue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366};
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800367EXPORT_SYMBOL(noop_qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Eric Dumazet20fea082007-11-14 01:44:41 -0800369static struct Qdisc_ops noqueue_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 .id = "noqueue",
371 .priv_size = 0,
372 .enqueue = noop_enqueue,
373 .dequeue = noop_dequeue,
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700374 .peek = noop_dequeue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 .owner = THIS_MODULE,
376};
377
David S. Miller30ee42b2008-07-18 23:00:11 -0700378static struct Qdisc noqueue_qdisc;
379static struct netdev_queue noqueue_netdev_queue = {
380 .qdisc = &noqueue_qdisc,
Jarek Poplawski9f3ffae2008-10-19 23:37:47 -0700381 .qdisc_sleeping = &noqueue_qdisc,
David S. Miller30ee42b2008-07-18 23:00:11 -0700382};
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384static struct Qdisc noqueue_qdisc = {
385 .enqueue = NULL,
386 .dequeue = noop_dequeue,
387 .flags = TCQ_F_BUILTIN,
388 .ops = &noqueue_qdisc_ops,
389 .list = LIST_HEAD_INIT(noqueue_qdisc.list),
David S. Miller30ee42b2008-07-18 23:00:11 -0700390 .q.lock = __SPIN_LOCK_UNLOCKED(noqueue_qdisc.q.lock),
391 .dev_queue = &noqueue_netdev_queue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392};
393
394
David S. Millerd3678b42008-07-21 09:56:13 -0700395static const u8 prio2band[TC_PRIO_MAX+1] =
396 { 1, 2, 2, 2, 1, 2, 0, 0 , 1, 1, 1, 1, 1, 1, 1, 1 };
Thomas Graf321090e2005-06-18 22:58:35 -0700397
David S. Millerd3678b42008-07-21 09:56:13 -0700398/* 3-band FIFO queue: old style, but should be a bit faster than
399 generic prio+fifo combination.
400 */
401
402#define PFIFO_FAST_BANDS 3
403
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000404/*
405 * Private data for a pfifo_fast scheduler containing:
406 * - queues for the three band
407 * - bitmap indicating which of the bands contain skbs
408 */
409struct pfifo_fast_priv {
410 u32 bitmap;
411 struct sk_buff_head q[PFIFO_FAST_BANDS];
412};
413
414/*
415 * Convert a bitmap to the first band number where an skb is queued, where:
416 * bitmap=0 means there are no skbs on any band.
417 * bitmap=1 means there is an skb on band 0.
418 * bitmap=7 means there are skbs on all 3 bands, etc.
419 */
420static const int bitmap2band[] = {-1, 0, 1, 0, 2, 0, 1, 0};
421
422static inline struct sk_buff_head *band2list(struct pfifo_fast_priv *priv,
423 int band)
David S. Millerd3678b42008-07-21 09:56:13 -0700424{
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000425 return priv->q + band;
David S. Millerd3678b42008-07-21 09:56:13 -0700426}
427
428static int pfifo_fast_enqueue(struct sk_buff *skb, struct Qdisc* qdisc)
429{
Krishna Kumara453e062009-08-30 22:20:28 -0700430 if (skb_queue_len(&qdisc->q) < qdisc_dev(qdisc)->tx_queue_len) {
431 int band = prio2band[skb->priority & TC_PRIO_MAX];
432 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
433 struct sk_buff_head *list = band2list(priv, band);
David S. Millerd3678b42008-07-21 09:56:13 -0700434
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000435 priv->bitmap |= (1 << band);
David S. Millerd3678b42008-07-21 09:56:13 -0700436 qdisc->q.qlen++;
Thomas Graf821d24a2005-06-18 22:58:15 -0700437 return __qdisc_enqueue_tail(skb, qdisc, list);
David S. Millerd3678b42008-07-21 09:56:13 -0700438 }
Thomas Graf821d24a2005-06-18 22:58:15 -0700439
440 return qdisc_drop(skb, qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
David S. Millerd3678b42008-07-21 09:56:13 -0700443static struct sk_buff *pfifo_fast_dequeue(struct Qdisc* qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000445 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
446 int band = bitmap2band[priv->bitmap];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000448 if (likely(band >= 0)) {
449 struct sk_buff_head *list = band2list(priv, band);
450 struct sk_buff *skb = __qdisc_dequeue_head(qdisc, list);
451
452 qdisc->q.qlen--;
453 if (skb_queue_empty(list))
454 priv->bitmap &= ~(1 << band);
455
456 return skb;
David S. Millerd3678b42008-07-21 09:56:13 -0700457 }
Thomas Graff87a9c32005-06-18 22:58:53 -0700458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return NULL;
460}
461
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700462static struct sk_buff *pfifo_fast_peek(struct Qdisc* qdisc)
463{
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000464 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
465 int band = bitmap2band[priv->bitmap];
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700466
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000467 if (band >= 0) {
468 struct sk_buff_head *list = band2list(priv, band);
469
470 return skb_peek(list);
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700471 }
472
473 return NULL;
474}
475
David S. Millerd3678b42008-07-21 09:56:13 -0700476static void pfifo_fast_reset(struct Qdisc* qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
David S. Millerd3678b42008-07-21 09:56:13 -0700478 int prio;
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000479 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
David S. Millerd3678b42008-07-21 09:56:13 -0700480
481 for (prio = 0; prio < PFIFO_FAST_BANDS; prio++)
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000482 __qdisc_reset_queue(qdisc, band2list(priv, prio));
David S. Millerd3678b42008-07-21 09:56:13 -0700483
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000484 priv->bitmap = 0;
Thomas Graf821d24a2005-06-18 22:58:15 -0700485 qdisc->qstats.backlog = 0;
David S. Millerd3678b42008-07-21 09:56:13 -0700486 qdisc->q.qlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
David S. Millerd3678b42008-07-21 09:56:13 -0700489static int pfifo_fast_dump(struct Qdisc *qdisc, struct sk_buff *skb)
490{
491 struct tc_prio_qopt opt = { .bands = PFIFO_FAST_BANDS };
492
493 memcpy(&opt.priomap, prio2band, TC_PRIO_MAX+1);
494 NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt);
495 return skb->len;
496
497nla_put_failure:
498 return -1;
499}
500
501static int pfifo_fast_init(struct Qdisc *qdisc, struct nlattr *opt)
502{
503 int prio;
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000504 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
David S. Millerd3678b42008-07-21 09:56:13 -0700505
506 for (prio = 0; prio < PFIFO_FAST_BANDS; prio++)
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000507 skb_queue_head_init(band2list(priv, prio));
David S. Millerd3678b42008-07-21 09:56:13 -0700508
509 return 0;
510}
511
David S. Miller6ec1c692009-09-06 01:58:51 -0700512struct Qdisc_ops pfifo_fast_ops __read_mostly = {
David S. Millerd3678b42008-07-21 09:56:13 -0700513 .id = "pfifo_fast",
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000514 .priv_size = sizeof(struct pfifo_fast_priv),
David S. Millerd3678b42008-07-21 09:56:13 -0700515 .enqueue = pfifo_fast_enqueue,
516 .dequeue = pfifo_fast_dequeue,
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700517 .peek = pfifo_fast_peek,
David S. Millerd3678b42008-07-21 09:56:13 -0700518 .init = pfifo_fast_init,
519 .reset = pfifo_fast_reset,
520 .dump = pfifo_fast_dump,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 .owner = THIS_MODULE,
522};
523
David S. Miller5ce2d482008-07-08 17:06:30 -0700524struct Qdisc *qdisc_alloc(struct netdev_queue *dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -0700525 struct Qdisc_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
527 void *p;
528 struct Qdisc *sch;
Thomas Graf3d54b822005-07-05 14:15:09 -0700529 unsigned int size;
530 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 /* ensure that the Qdisc and the private data are 32-byte aligned */
Thomas Graf3d54b822005-07-05 14:15:09 -0700533 size = QDISC_ALIGN(sizeof(*sch));
534 size += ops->priv_size + (QDISC_ALIGNTO - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700536 p = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (!p)
Thomas Graf3d54b822005-07-05 14:15:09 -0700538 goto errout;
Thomas Graf3d54b822005-07-05 14:15:09 -0700539 sch = (struct Qdisc *) QDISC_ALIGN((unsigned long) p);
540 sch->padded = (char *) sch - (char *) p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 INIT_LIST_HEAD(&sch->list);
543 skb_queue_head_init(&sch->q);
544 sch->ops = ops;
545 sch->enqueue = ops->enqueue;
546 sch->dequeue = ops->dequeue;
David S. Millerbb949fb2008-07-08 16:55:56 -0700547 sch->dev_queue = dev_queue;
David S. Miller5ce2d482008-07-08 17:06:30 -0700548 dev_hold(qdisc_dev(sch));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 atomic_set(&sch->refcnt, 1);
Thomas Graf3d54b822005-07-05 14:15:09 -0700550
551 return sch;
552errout:
WANG Cong01e123d2008-06-27 19:51:35 -0700553 return ERR_PTR(err);
Thomas Graf3d54b822005-07-05 14:15:09 -0700554}
555
David S. Millerbb949fb2008-07-08 16:55:56 -0700556struct Qdisc * qdisc_create_dflt(struct net_device *dev,
557 struct netdev_queue *dev_queue,
558 struct Qdisc_ops *ops,
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800559 unsigned int parentid)
Thomas Graf3d54b822005-07-05 14:15:09 -0700560{
561 struct Qdisc *sch;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900562
David S. Miller5ce2d482008-07-08 17:06:30 -0700563 sch = qdisc_alloc(dev_queue, ops);
Thomas Graf3d54b822005-07-05 14:15:09 -0700564 if (IS_ERR(sch))
565 goto errout;
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800566 sch->parent = parentid;
Thomas Graf3d54b822005-07-05 14:15:09 -0700567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (!ops->init || ops->init(sch, NULL) == 0)
569 return sch;
570
Thomas Graf0fbbeb12005-08-23 10:12:44 -0700571 qdisc_destroy(sch);
Thomas Graf3d54b822005-07-05 14:15:09 -0700572errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return NULL;
574}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800575EXPORT_SYMBOL(qdisc_create_dflt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
David S. Miller5fb66222008-08-02 20:02:43 -0700577/* Under qdisc_lock(qdisc) and BH! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579void qdisc_reset(struct Qdisc *qdisc)
580{
Eric Dumazet20fea082007-11-14 01:44:41 -0800581 const struct Qdisc_ops *ops = qdisc->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 if (ops->reset)
584 ops->reset(qdisc);
Jarek Poplawski67305eb2008-11-03 02:52:50 -0800585
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000586 if (qdisc->gso_skb) {
587 kfree_skb(qdisc->gso_skb);
588 qdisc->gso_skb = NULL;
589 qdisc->q.qlen = 0;
590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800592EXPORT_SYMBOL(qdisc_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
David S. Miller1e0d5a52008-08-17 22:31:26 -0700594void qdisc_destroy(struct Qdisc *qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Eric Dumazet20fea082007-11-14 01:44:41 -0800596 const struct Qdisc_ops *ops = qdisc->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
David S. Miller1e0d5a52008-08-17 22:31:26 -0700598 if (qdisc->flags & TCQ_F_BUILTIN ||
599 !atomic_dec_and_test(&qdisc->refcnt))
600 return;
601
David S. Miller3a682fb2008-07-20 18:13:01 -0700602#ifdef CONFIG_NET_SCHED
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700603 qdisc_list_del(qdisc);
604
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700605 qdisc_put_stab(qdisc->stab);
David S. Miller3a682fb2008-07-20 18:13:01 -0700606#endif
Patrick McHardy85670cc2006-09-27 16:45:45 -0700607 gen_kill_estimator(&qdisc->bstats, &qdisc->rate_est);
Patrick McHardy85670cc2006-09-27 16:45:45 -0700608 if (ops->reset)
609 ops->reset(qdisc);
610 if (ops->destroy)
611 ops->destroy(qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Patrick McHardy85670cc2006-09-27 16:45:45 -0700613 module_put(ops->owner);
David S. Miller5ce2d482008-07-08 17:06:30 -0700614 dev_put(qdisc_dev(qdisc));
David S. Miller8a34c5d2008-07-17 00:47:45 -0700615
Jarek Poplawski554794d2008-10-06 09:54:39 -0700616 kfree_skb(qdisc->gso_skb);
David S. Miller8a34c5d2008-07-17 00:47:45 -0700617 kfree((char *) qdisc - qdisc->padded);
618}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800619EXPORT_SYMBOL(qdisc_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Patrick McHardy589983c2009-09-04 06:41:20 +0000621/* Attach toplevel qdisc to device queue. */
622struct Qdisc *dev_graft_qdisc(struct netdev_queue *dev_queue,
623 struct Qdisc *qdisc)
624{
625 struct Qdisc *oqdisc = dev_queue->qdisc_sleeping;
626 spinlock_t *root_lock;
627
628 root_lock = qdisc_lock(oqdisc);
629 spin_lock_bh(root_lock);
630
631 /* Prune old scheduler */
632 if (oqdisc && atomic_read(&oqdisc->refcnt) <= 1)
633 qdisc_reset(oqdisc);
634
635 /* ... and graft new one */
636 if (qdisc == NULL)
637 qdisc = &noop_qdisc;
638 dev_queue->qdisc_sleeping = qdisc;
639 rcu_assign_pointer(dev_queue->qdisc, &noop_qdisc);
640
641 spin_unlock_bh(root_lock);
642
643 return oqdisc;
644}
645
David S. Millere8a04642008-07-17 00:34:19 -0700646static void attach_one_default_qdisc(struct net_device *dev,
647 struct netdev_queue *dev_queue,
648 void *_unused)
649{
650 struct Qdisc *qdisc;
651
652 if (dev->tx_queue_len) {
653 qdisc = qdisc_create_dflt(dev, dev_queue,
David S. Millerd3678b42008-07-21 09:56:13 -0700654 &pfifo_fast_ops, TC_H_ROOT);
David S. Millere8a04642008-07-17 00:34:19 -0700655 if (!qdisc) {
656 printk(KERN_INFO "%s: activation failed\n", dev->name);
657 return;
658 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000659
660 /* Can by-pass the queue discipline for default qdisc */
661 qdisc->flags |= TCQ_F_CAN_BYPASS;
David S. Millere8a04642008-07-17 00:34:19 -0700662 } else {
663 qdisc = &noqueue_qdisc;
664 }
665 dev_queue->qdisc_sleeping = qdisc;
666}
667
David S. Miller6ec1c692009-09-06 01:58:51 -0700668static void attach_default_qdiscs(struct net_device *dev)
669{
670 struct netdev_queue *txq;
671 struct Qdisc *qdisc;
672
673 txq = netdev_get_tx_queue(dev, 0);
674
675 if (!netif_is_multiqueue(dev) || dev->tx_queue_len == 0) {
676 netdev_for_each_tx_queue(dev, attach_one_default_qdisc, NULL);
677 dev->qdisc = txq->qdisc_sleeping;
678 atomic_inc(&dev->qdisc->refcnt);
679 } else {
680 qdisc = qdisc_create_dflt(dev, txq, &mq_qdisc_ops, TC_H_ROOT);
681 if (qdisc) {
682 qdisc->ops->attach(qdisc);
683 dev->qdisc = qdisc;
684 }
685 }
686}
687
David S. Millere8a04642008-07-17 00:34:19 -0700688static void transition_one_qdisc(struct net_device *dev,
689 struct netdev_queue *dev_queue,
690 void *_need_watchdog)
691{
David S. Miller83874002008-07-17 00:53:03 -0700692 struct Qdisc *new_qdisc = dev_queue->qdisc_sleeping;
David S. Millere8a04642008-07-17 00:34:19 -0700693 int *need_watchdog_p = _need_watchdog;
694
David S. Millera9312ae2008-08-17 21:51:03 -0700695 if (!(new_qdisc->flags & TCQ_F_BUILTIN))
696 clear_bit(__QDISC_STATE_DEACTIVATED, &new_qdisc->state);
697
David S. Miller83874002008-07-17 00:53:03 -0700698 rcu_assign_pointer(dev_queue->qdisc, new_qdisc);
Eric Dumazet9d214932009-05-17 20:55:16 -0700699 if (need_watchdog_p && new_qdisc != &noqueue_qdisc) {
700 dev_queue->trans_start = 0;
David S. Millere8a04642008-07-17 00:34:19 -0700701 *need_watchdog_p = 1;
Eric Dumazet9d214932009-05-17 20:55:16 -0700702 }
David S. Millere8a04642008-07-17 00:34:19 -0700703}
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705void dev_activate(struct net_device *dev)
706{
David S. Millere8a04642008-07-17 00:34:19 -0700707 int need_watchdog;
David S. Millerb0e1e642008-07-08 17:42:10 -0700708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 /* No queueing discipline is attached to device;
David S. Millerd3678b42008-07-21 09:56:13 -0700710 create default one i.e. pfifo_fast for devices,
711 which need queueing and noqueue_qdisc for
712 virtual interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 */
714
David S. Miller6ec1c692009-09-06 01:58:51 -0700715 if (dev->qdisc == &noop_qdisc)
716 attach_default_qdiscs(dev);
Patrick McHardyaf356af2009-09-04 06:41:18 +0000717
Tommy S. Christensencacaddf2005-05-03 16:18:52 -0700718 if (!netif_carrier_ok(dev))
719 /* Delay activation until next carrier-on event */
720 return;
721
David S. Millere8a04642008-07-17 00:34:19 -0700722 need_watchdog = 0;
723 netdev_for_each_tx_queue(dev, transition_one_qdisc, &need_watchdog);
David S. Miller8d50b532008-07-30 02:37:46 -0700724 transition_one_qdisc(dev, &dev->rx_queue, NULL);
David S. Millere8a04642008-07-17 00:34:19 -0700725
726 if (need_watchdog) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 dev->trans_start = jiffies;
728 dev_watchdog_up(dev);
729 }
David S. Millerb0e1e642008-07-08 17:42:10 -0700730}
731
David S. Millere8a04642008-07-17 00:34:19 -0700732static void dev_deactivate_queue(struct net_device *dev,
733 struct netdev_queue *dev_queue,
734 void *_qdisc_default)
David S. Millerb0e1e642008-07-08 17:42:10 -0700735{
David S. Millere8a04642008-07-17 00:34:19 -0700736 struct Qdisc *qdisc_default = _qdisc_default;
David S. Miller970565b2008-07-08 23:10:33 -0700737 struct Qdisc *qdisc;
David S. Millerb0e1e642008-07-08 17:42:10 -0700738
David S. Miller970565b2008-07-08 23:10:33 -0700739 qdisc = dev_queue->qdisc;
David S. Millerb0e1e642008-07-08 17:42:10 -0700740 if (qdisc) {
David S. Miller83874002008-07-17 00:53:03 -0700741 spin_lock_bh(qdisc_lock(qdisc));
742
David S. Millera9312ae2008-08-17 21:51:03 -0700743 if (!(qdisc->flags & TCQ_F_BUILTIN))
744 set_bit(__QDISC_STATE_DEACTIVATED, &qdisc->state);
745
Jarek Poplawskif7a54c12008-08-27 02:22:07 -0700746 rcu_assign_pointer(dev_queue->qdisc, qdisc_default);
David S. Millerb0e1e642008-07-08 17:42:10 -0700747 qdisc_reset(qdisc);
David S. Millerd3b753d2008-07-15 20:14:35 -0700748
David S. Miller83874002008-07-17 00:53:03 -0700749 spin_unlock_bh(qdisc_lock(qdisc));
David S. Millerb0e1e642008-07-08 17:42:10 -0700750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
David S. Miller4335cd22008-08-17 21:58:07 -0700753static bool some_qdisc_is_busy(struct net_device *dev)
David S. Millere8a04642008-07-17 00:34:19 -0700754{
755 unsigned int i;
756
757 for (i = 0; i < dev->num_tx_queues; i++) {
758 struct netdev_queue *dev_queue;
David S. Miller7698b4f2008-07-16 01:42:40 -0700759 spinlock_t *root_lock;
David S. Millere2627c82008-07-16 00:56:32 -0700760 struct Qdisc *q;
David S. Millere8a04642008-07-17 00:34:19 -0700761 int val;
762
763 dev_queue = netdev_get_tx_queue(dev, i);
David S. Millerb9a3b112008-08-13 15:18:38 -0700764 q = dev_queue->qdisc_sleeping;
David S. Miller5fb66222008-08-02 20:02:43 -0700765 root_lock = qdisc_lock(q);
David S. Millere8a04642008-07-17 00:34:19 -0700766
David S. Miller4335cd22008-08-17 21:58:07 -0700767 spin_lock_bh(root_lock);
David S. Millere8a04642008-07-17 00:34:19 -0700768
David S. Millerb9a3b112008-08-13 15:18:38 -0700769 val = (test_bit(__QDISC_STATE_RUNNING, &q->state) ||
770 test_bit(__QDISC_STATE_SCHED, &q->state));
David S. Millere8a04642008-07-17 00:34:19 -0700771
David S. Miller4335cd22008-08-17 21:58:07 -0700772 spin_unlock_bh(root_lock);
David S. Millere8a04642008-07-17 00:34:19 -0700773
774 if (val)
775 return true;
776 }
777 return false;
778}
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780void dev_deactivate(struct net_device *dev)
781{
David S. Millere8a04642008-07-17 00:34:19 -0700782 netdev_for_each_tx_queue(dev, dev_deactivate_queue, &noop_qdisc);
David S. Miller8d50b532008-07-30 02:37:46 -0700783 dev_deactivate_queue(dev, &dev->rx_queue, &noop_qdisc);
Herbert Xu41a23b02007-05-10 14:12:47 -0700784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 dev_watchdog_down(dev);
786
Herbert Xuce0e32e2007-10-18 22:37:58 -0700787 /* Wait for outstanding qdisc-less dev_queue_xmit calls. */
Herbert Xud4828d82006-06-22 02:28:18 -0700788 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Herbert Xud4828d82006-06-22 02:28:18 -0700790 /* Wait for outstanding qdisc_run calls. */
David S. Miller4335cd22008-08-17 21:58:07 -0700791 while (some_qdisc_is_busy(dev))
792 yield();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
David S. Millerb0e1e642008-07-08 17:42:10 -0700795static void dev_init_scheduler_queue(struct net_device *dev,
796 struct netdev_queue *dev_queue,
David S. Millere8a04642008-07-17 00:34:19 -0700797 void *_qdisc)
David S. Millerb0e1e642008-07-08 17:42:10 -0700798{
David S. Millere8a04642008-07-17 00:34:19 -0700799 struct Qdisc *qdisc = _qdisc;
800
David S. Millerb0e1e642008-07-08 17:42:10 -0700801 dev_queue->qdisc = qdisc;
802 dev_queue->qdisc_sleeping = qdisc;
David S. Millerb0e1e642008-07-08 17:42:10 -0700803}
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805void dev_init_scheduler(struct net_device *dev)
806{
Patrick McHardyaf356af2009-09-04 06:41:18 +0000807 dev->qdisc = &noop_qdisc;
David S. Millere8a04642008-07-17 00:34:19 -0700808 netdev_for_each_tx_queue(dev, dev_init_scheduler_queue, &noop_qdisc);
David S. Miller8d50b532008-07-30 02:37:46 -0700809 dev_init_scheduler_queue(dev, &dev->rx_queue, &noop_qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800811 setup_timer(&dev->watchdog_timer, dev_watchdog, (unsigned long)dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
David S. Millere8a04642008-07-17 00:34:19 -0700814static void shutdown_scheduler_queue(struct net_device *dev,
815 struct netdev_queue *dev_queue,
816 void *_qdisc_default)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
David S. Millerb0e1e642008-07-08 17:42:10 -0700818 struct Qdisc *qdisc = dev_queue->qdisc_sleeping;
David S. Millere8a04642008-07-17 00:34:19 -0700819 struct Qdisc *qdisc_default = _qdisc_default;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
David S. Millerb0e1e642008-07-08 17:42:10 -0700821 if (qdisc) {
Jarek Poplawskif7a54c12008-08-27 02:22:07 -0700822 rcu_assign_pointer(dev_queue->qdisc, qdisc_default);
David S. Millerb0e1e642008-07-08 17:42:10 -0700823 dev_queue->qdisc_sleeping = qdisc_default;
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 qdisc_destroy(qdisc);
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900826 }
David S. Millerb0e1e642008-07-08 17:42:10 -0700827}
828
829void dev_shutdown(struct net_device *dev)
830{
David S. Millere8a04642008-07-17 00:34:19 -0700831 netdev_for_each_tx_queue(dev, shutdown_scheduler_queue, &noop_qdisc);
David S. Miller8d50b532008-07-30 02:37:46 -0700832 shutdown_scheduler_queue(dev, &dev->rx_queue, &noop_qdisc);
Patrick McHardyaf356af2009-09-04 06:41:18 +0000833 qdisc_destroy(dev->qdisc);
834 dev->qdisc = &noop_qdisc;
835
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700836 WARN_ON(timer_pending(&dev->watchdog_timer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}