blob: 5d81a44785141680922c5f80b2d9ddcb45ca2e74 [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>
Eric Dumazet7fee2262010-05-11 23:19:48 +000029#include <net/dst.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31/* Main transmission queue. */
32
Patrick McHardy0463d4a2007-04-16 17:02:10 -070033/* Modifications to data participating in scheduling must be protected with
David S. Miller5fb66222008-08-02 20:02:43 -070034 * qdisc_lock(qdisc) spinlock.
Patrick McHardy0463d4a2007-04-16 17:02:10 -070035 *
36 * The idea is the following:
David S. Millerc7e4f3b2008-07-16 03:22:39 -070037 * - enqueue, dequeue are serialized via qdisc root lock
38 * - ingress filtering is also serialized via qdisc root lock
Patrick McHardy0463d4a2007-04-16 17:02:10 -070039 * - updates to tree and tree walking are only done under the rtnl mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
David S. Miller37437bb2008-07-16 02:15:04 -070042static inline int dev_requeue_skb(struct sk_buff *skb, struct Qdisc *q)
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070043{
Eric Dumazet7fee2262010-05-11 23:19:48 +000044 skb_dst_force(skb);
Jarek Poplawski62523522008-10-06 10:41:50 -070045 q->gso_skb = skb;
Jarek Poplawski53e91502008-10-08 11:36:22 -070046 q->qstats.requeues++;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +000047 q->q.qlen++; /* it's still part of the queue */
David S. Miller37437bb2008-07-16 02:15:04 -070048 __netif_schedule(q);
Jarek Poplawski62523522008-10-06 10:41:50 -070049
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070050 return 0;
51}
52
David S. Millerd3b753d2008-07-15 20:14:35 -070053static inline struct sk_buff *dequeue_skb(struct Qdisc *q)
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070054{
Jarek Poplawski554794d2008-10-06 09:54:39 -070055 struct sk_buff *skb = q->gso_skb;
Eric Dumazet1abbe132012-12-11 15:54:33 +000056 const struct netdev_queue *txq = q->dev_queue;
Jarek Poplawski554794d2008-10-06 09:54:39 -070057
Jarek Poplawskiebf05982008-09-22 22:16:23 -070058 if (unlikely(skb)) {
Jarek Poplawskiebf05982008-09-22 22:16:23 -070059 /* check the reason of requeuing without tx lock first */
Eric Dumazet1abbe132012-12-11 15:54:33 +000060 txq = netdev_get_tx_queue(txq->dev, skb_get_queue_mapping(skb));
Tom Herbert734664982011-11-28 16:32:44 +000061 if (!netif_xmit_frozen_or_stopped(txq)) {
Jarek Poplawski62523522008-10-06 10:41:50 -070062 q->gso_skb = NULL;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +000063 q->q.qlen--;
64 } else
Jarek Poplawskiebf05982008-09-22 22:16:23 -070065 skb = NULL;
66 } else {
Eric Dumazet1abbe132012-12-11 15:54:33 +000067 if (!(q->flags & TCQ_F_ONETXQUEUE) || !netif_xmit_frozen_or_stopped(txq))
68 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);
Joe Perchese87cc472012-05-13 21:56:26 +000088 net_warn_ratelimited("Dead loop on netdevice %s, fix it urgently!\n",
89 dev_queue->dev->name);
Krishna Kumar6c1361a2007-06-24 19:56:09 -070090 ret = qdisc_qlen(q);
91 } else {
92 /*
93 * Another cpu is holding lock, requeue & delay xmits for
94 * some time.
95 */
Eric Dumazetd6d9ca02010-07-19 10:48:49 +000096 __this_cpu_inc(softnet_data.cpu_collision);
David S. Miller37437bb2008-07-16 02:15:04 -070097 ret = dev_requeue_skb(skb, q);
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070098 }
99
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700100 return ret;
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700101}
102
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900103/*
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000104 * 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 Kumar6c1361a2007-06-24 19:56:09 -0700107 *
108 * Returns to the caller:
109 * 0 - queue is empty or throttled.
110 * >0 - queue is not empty.
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700111 */
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000112int 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 Torvalds1da177e2005-04-16 15:20:36 -0700115{
Peter P Waskiewicz Jr5f1a4852007-11-13 20:40:55 -0800116 int ret = NETDEV_TX_BUSY;
David S. Miller7698b4f2008-07-16 01:42:40 -0700117
118 /* And release qdisc */
119 spin_unlock(root_lock);
Herbert Xud90df3a2007-05-10 04:55:14 -0700120
David S. Millerc773e842008-07-08 23:13:53 -0700121 HARD_TX_LOCK(dev, txq, smp_processor_id());
Tom Herbert734664982011-11-28 16:32:44 +0000122 if (!netif_xmit_frozen_or_stopped(txq))
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700123 ret = dev_hard_start_xmit(skb, dev, txq);
Patrick McHardy572a9d72009-11-10 06:14:14 +0000124
David S. Millerc773e842008-07-08 23:13:53 -0700125 HARD_TX_UNLOCK(dev, txq);
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700126
David S. Miller7698b4f2008-07-16 01:42:40 -0700127 spin_lock(root_lock);
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700128
Jarek Poplawski9a1654b2009-11-15 07:20:12 +0000129 if (dev_xmit_complete(ret)) {
130 /* Driver sent out skb successfully or skb was consumed */
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700131 ret = qdisc_qlen(q);
Jarek Poplawski9a1654b2009-11-15 07:20:12 +0000132 } else if (ret == NETDEV_TX_LOCKED) {
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700133 /* Driver try lock failed */
David S. Millereb6aafe2008-07-08 23:12:38 -0700134 ret = handle_dev_cpu_collision(skb, txq, q);
Jarek Poplawski9a1654b2009-11-15 07:20:12 +0000135 } else {
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700136 /* Driver returned NETDEV_TX_BUSY - requeue skb */
Joe Perchese87cc472012-05-13 21:56:26 +0000137 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 Kumar6c1361a2007-06-24 19:56:09 -0700140
David S. Miller37437bb2008-07-16 02:15:04 -0700141 ret = dev_requeue_skb(skb, q);
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700142 }
143
Tom Herbert734664982011-11-28 16:32:44 +0000144 if (ret && netif_xmit_frozen_or_stopped(txq))
David S. Miller37437bb2008-07-16 02:15:04 -0700145 ret = 0;
146
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700147 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000150/*
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 */
169static 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 Dumazet7fee2262010-05-11 23:19:48 +0000180 WARN_ON_ONCE(skb_dst_is_noref(skb));
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000181 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. Miller37437bb2008-07-16 02:15:04 -0700188void __qdisc_run(struct Qdisc *q)
Herbert Xu48d83322006-06-19 23:57:59 -0700189{
jamald5b8aa12011-06-26 08:13:54 +0000190 int quota = weight_p;
Herbert Xu2ba25062008-03-28 16:25:26 -0700191
David S. Miller37437bb2008-07-16 02:15:04 -0700192 while (qdisc_restart(q)) {
Herbert Xu2ba25062008-03-28 16:25:26 -0700193 /*
jamald5b8aa12011-06-26 08:13:54 +0000194 * Ordered by possible occurrence: Postpone processing if
195 * 1. we've exceeded packet quota
196 * 2. another process needs the CPU;
Herbert Xu2ba25062008-03-28 16:25:26 -0700197 */
Krishna Kumarf0c50c72011-07-14 23:16:21 +0000198 if (--quota <= 0 || need_resched()) {
David S. Miller37437bb2008-07-16 02:15:04 -0700199 __netif_schedule(q);
Herbert Xu2ba25062008-03-28 16:25:26 -0700200 break;
201 }
202 }
Herbert Xu48d83322006-06-19 23:57:59 -0700203
Eric Dumazetbc135b22010-06-02 03:23:51 -0700204 qdisc_run_end(q);
Herbert Xu48d83322006-06-19 23:57:59 -0700205}
206
Eric Dumazet9d214932009-05-17 20:55:16 -0700207unsigned 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}
220EXPORT_SYMBOL(dev_trans_start);
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222static void dev_watchdog(unsigned long arg)
223{
224 struct net_device *dev = (struct net_device *)arg;
225
Herbert Xu932ff272006-06-09 12:20:56 -0700226 netif_tx_lock(dev);
David S. Millere8a04642008-07-17 00:34:19 -0700227 if (!qdisc_tx_is_noop(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (netif_device_present(dev) &&
229 netif_running(dev) &&
230 netif_carrier_ok(dev)) {
Eric Dumazet9d214932009-05-17 20:55:16 -0700231 int some_queue_timedout = 0;
David S. Millere8a04642008-07-17 00:34:19 -0700232 unsigned int i;
Eric Dumazet9d214932009-05-17 20:55:16 -0700233 unsigned long trans_start;
Stephen Hemminger338f7562006-05-16 15:02:12 -0700234
David S. Millere8a04642008-07-17 00:34:19 -0700235 for (i = 0; i < dev->num_tx_queues; i++) {
236 struct netdev_queue *txq;
237
238 txq = netdev_get_tx_queue(dev, i);
Eric Dumazet9d214932009-05-17 20:55:16 -0700239 /*
240 * old device drivers set dev->trans_start
241 */
242 trans_start = txq->trans_start ? : dev->trans_start;
Tom Herbert734664982011-11-28 16:32:44 +0000243 if (netif_xmit_stopped(txq) &&
Eric Dumazet9d214932009-05-17 20:55:16 -0700244 time_after(jiffies, (trans_start +
245 dev->watchdog_timeo))) {
246 some_queue_timedout = 1;
david decotignyccf5ff62011-11-16 12:15:10 +0000247 txq->trans_timeout++;
David S. Millere8a04642008-07-17 00:34:19 -0700248 break;
249 }
250 }
251
Eric Dumazet9d214932009-05-17 20:55:16 -0700252 if (some_queue_timedout) {
Eric Dumazet9d214932009-05-17 20:55:16 -0700253 WARN_ONCE(1, KERN_INFO "NETDEV WATCHDOG: %s (%s): transmit queue %u timed out\n",
David S. Miller3019de12011-06-06 16:41:33 -0700254 dev->name, netdev_drivername(dev), i);
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800255 dev->netdev_ops->ndo_tx_timeout(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
David S. Millere8a04642008-07-17 00:34:19 -0700257 if (!mod_timer(&dev->watchdog_timer,
258 round_jiffies(jiffies +
259 dev->watchdog_timeo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 dev_hold(dev);
261 }
262 }
Herbert Xu932ff272006-06-09 12:20:56 -0700263 netif_tx_unlock(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 dev_put(dev);
266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268void __netdev_watchdog_up(struct net_device *dev)
269{
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800270 if (dev->netdev_ops->ndo_tx_timeout) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (dev->watchdog_timeo <= 0)
272 dev->watchdog_timeo = 5*HZ;
Venkatesh Pallipadi60468d52007-05-31 21:28:44 -0700273 if (!mod_timer(&dev->watchdog_timer,
274 round_jiffies(jiffies + dev->watchdog_timeo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 dev_hold(dev);
276 }
277}
278
279static void dev_watchdog_up(struct net_device *dev)
280{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 __netdev_watchdog_up(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
284static void dev_watchdog_down(struct net_device *dev)
285{
Herbert Xu932ff272006-06-09 12:20:56 -0700286 netif_tx_lock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 if (del_timer(&dev->watchdog_timer))
Stephen Hemminger15333062006-03-20 22:32:28 -0800288 dev_put(dev);
Herbert Xu932ff272006-06-09 12:20:56 -0700289 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700292/**
293 * netif_carrier_on - set carrier
294 * @dev: network device
295 *
296 * Device has detected that carrier.
297 */
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700298void netif_carrier_on(struct net_device *dev)
299{
Jeff Garzikbfaae0f2007-10-17 23:26:43 -0700300 if (test_and_clear_bit(__LINK_STATE_NOCARRIER, &dev->state)) {
David S. Millerb4730012008-11-19 15:33:54 -0800301 if (dev->reg_state == NETREG_UNINITIALIZED)
302 return;
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700303 linkwatch_fire_event(dev);
Jeff Garzikbfaae0f2007-10-17 23:26:43 -0700304 if (netif_running(dev))
305 __netdev_watchdog_up(dev);
306 }
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700307}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800308EXPORT_SYMBOL(netif_carrier_on);
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700309
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700310/**
311 * netif_carrier_off - clear carrier
312 * @dev: network device
313 *
314 * Device has detected loss of carrier.
315 */
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700316void netif_carrier_off(struct net_device *dev)
317{
David S. Millerb4730012008-11-19 15:33:54 -0800318 if (!test_and_set_bit(__LINK_STATE_NOCARRIER, &dev->state)) {
319 if (dev->reg_state == NETREG_UNINITIALIZED)
320 return;
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700321 linkwatch_fire_event(dev);
David S. Millerb4730012008-11-19 15:33:54 -0800322 }
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700323}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800324EXPORT_SYMBOL(netif_carrier_off);
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326/* "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 Graf94df1092005-06-18 22:59:08 -0700331static int noop_enqueue(struct sk_buff *skb, struct Qdisc * qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 kfree_skb(skb);
334 return NET_XMIT_CN;
335}
336
Thomas Graf94df1092005-06-18 22:59:08 -0700337static struct sk_buff *noop_dequeue(struct Qdisc * qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 return NULL;
340}
341
Eric Dumazet20fea082007-11-14 01:44:41 -0800342struct Qdisc_ops noop_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 .id = "noop",
344 .priv_size = 0,
345 .enqueue = noop_enqueue,
346 .dequeue = noop_dequeue,
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700347 .peek = noop_dequeue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 .owner = THIS_MODULE,
349};
350
David S. Miller7698b4f2008-07-16 01:42:40 -0700351static struct netdev_queue noop_netdev_queue = {
David S. Miller7698b4f2008-07-16 01:42:40 -0700352 .qdisc = &noop_qdisc,
Jarek Poplawski9f3ffae2008-10-19 23:37:47 -0700353 .qdisc_sleeping = &noop_qdisc,
David S. Miller7698b4f2008-07-16 01:42:40 -0700354};
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356struct Qdisc noop_qdisc = {
357 .enqueue = noop_enqueue,
358 .dequeue = noop_dequeue,
359 .flags = TCQ_F_BUILTIN,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900360 .ops = &noop_qdisc_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 .list = LIST_HEAD_INIT(noop_qdisc.list),
David S. Miller838740002008-07-17 00:53:03 -0700362 .q.lock = __SPIN_LOCK_UNLOCKED(noop_qdisc.q.lock),
David S. Miller7698b4f2008-07-16 01:42:40 -0700363 .dev_queue = &noop_netdev_queue,
Eric Dumazet7b5edbc2010-10-15 19:22:34 +0000364 .busylock = __SPIN_LOCK_UNLOCKED(noop_qdisc.busylock),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365};
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800366EXPORT_SYMBOL(noop_qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Eric Dumazet20fea082007-11-14 01:44:41 -0800368static struct Qdisc_ops noqueue_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 .id = "noqueue",
370 .priv_size = 0,
371 .enqueue = noop_enqueue,
372 .dequeue = noop_dequeue,
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700373 .peek = noop_dequeue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 .owner = THIS_MODULE,
375};
376
David S. Miller30ee42b2008-07-18 23:00:11 -0700377static struct Qdisc noqueue_qdisc;
378static struct netdev_queue noqueue_netdev_queue = {
379 .qdisc = &noqueue_qdisc,
Jarek Poplawski9f3ffae2008-10-19 23:37:47 -0700380 .qdisc_sleeping = &noqueue_qdisc,
David S. Miller30ee42b2008-07-18 23:00:11 -0700381};
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383static 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. Miller30ee42b2008-07-18 23:00:11 -0700389 .q.lock = __SPIN_LOCK_UNLOCKED(noqueue_qdisc.q.lock),
390 .dev_queue = &noqueue_netdev_queue,
Eric Dumazet7b5edbc2010-10-15 19:22:34 +0000391 .busylock = __SPIN_LOCK_UNLOCKED(noqueue_qdisc.busylock),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392};
393
394
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000395static 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 Graf321090e2005-06-18 22:58:35 -0700398
David S. Millerd3678b42008-07-21 09:56:13 -0700399/* 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 Kumarfd3ae5e2009-08-18 21:55:59 +0000405/*
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 */
410struct 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 */
421static const int bitmap2band[] = {-1, 0, 1, 0, 2, 0, 1, 0};
422
423static inline struct sk_buff_head *band2list(struct pfifo_fast_priv *priv,
424 int band)
David S. Millerd3678b42008-07-21 09:56:13 -0700425{
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000426 return priv->q + band;
David S. Millerd3678b42008-07-21 09:56:13 -0700427}
428
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000429static int pfifo_fast_enqueue(struct sk_buff *skb, struct Qdisc *qdisc)
David S. Millerd3678b42008-07-21 09:56:13 -0700430{
Krishna Kumara453e062009-08-30 22:20:28 -0700431 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. Millerd3678b42008-07-21 09:56:13 -0700435
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000436 priv->bitmap |= (1 << band);
David S. Millerd3678b42008-07-21 09:56:13 -0700437 qdisc->q.qlen++;
Thomas Graf821d24ae2005-06-18 22:58:15 -0700438 return __qdisc_enqueue_tail(skb, qdisc, list);
David S. Millerd3678b42008-07-21 09:56:13 -0700439 }
Thomas Graf821d24ae2005-06-18 22:58:15 -0700440
441 return qdisc_drop(skb, qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000444static struct sk_buff *pfifo_fast_dequeue(struct Qdisc *qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000446 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
447 int band = bitmap2band[priv->bitmap];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000449 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. Millerd3678b42008-07-21 09:56:13 -0700458 }
Thomas Graff87a9c32005-06-18 22:58:53 -0700459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return NULL;
461}
462
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000463static struct sk_buff *pfifo_fast_peek(struct Qdisc *qdisc)
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700464{
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000465 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
466 int band = bitmap2band[priv->bitmap];
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700467
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000468 if (band >= 0) {
469 struct sk_buff_head *list = band2list(priv, band);
470
471 return skb_peek(list);
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700472 }
473
474 return NULL;
475}
476
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000477static void pfifo_fast_reset(struct Qdisc *qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
David S. Millerd3678b42008-07-21 09:56:13 -0700479 int prio;
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000480 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
David S. Millerd3678b42008-07-21 09:56:13 -0700481
482 for (prio = 0; prio < PFIFO_FAST_BANDS; prio++)
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000483 __qdisc_reset_queue(qdisc, band2list(priv, prio));
David S. Millerd3678b42008-07-21 09:56:13 -0700484
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000485 priv->bitmap = 0;
Thomas Graf821d24ae2005-06-18 22:58:15 -0700486 qdisc->qstats.backlog = 0;
David S. Millerd3678b42008-07-21 09:56:13 -0700487 qdisc->q.qlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
David S. Millerd3678b42008-07-21 09:56:13 -0700490static int pfifo_fast_dump(struct Qdisc *qdisc, struct sk_buff *skb)
491{
492 struct tc_prio_qopt opt = { .bands = PFIFO_FAST_BANDS };
493
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000494 memcpy(&opt.priomap, prio2band, TC_PRIO_MAX + 1);
David S. Miller1b34ec42012-03-29 05:11:39 -0400495 if (nla_put(skb, TCA_OPTIONS, sizeof(opt), &opt))
496 goto nla_put_failure;
David S. Millerd3678b42008-07-21 09:56:13 -0700497 return skb->len;
498
499nla_put_failure:
500 return -1;
501}
502
503static int pfifo_fast_init(struct Qdisc *qdisc, struct nlattr *opt)
504{
505 int prio;
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000506 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
David S. Millerd3678b42008-07-21 09:56:13 -0700507
508 for (prio = 0; prio < PFIFO_FAST_BANDS; prio++)
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000509 skb_queue_head_init(band2list(priv, prio));
David S. Millerd3678b42008-07-21 09:56:13 -0700510
Eric Dumazet23624932011-01-21 16:26:09 -0800511 /* Can by-pass the queue discipline */
512 qdisc->flags |= TCQ_F_CAN_BYPASS;
David S. Millerd3678b42008-07-21 09:56:13 -0700513 return 0;
514}
515
David S. Miller6ec1c692009-09-06 01:58:51 -0700516struct Qdisc_ops pfifo_fast_ops __read_mostly = {
David S. Millerd3678b42008-07-21 09:56:13 -0700517 .id = "pfifo_fast",
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000518 .priv_size = sizeof(struct pfifo_fast_priv),
David S. Millerd3678b42008-07-21 09:56:13 -0700519 .enqueue = pfifo_fast_enqueue,
520 .dequeue = pfifo_fast_dequeue,
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700521 .peek = pfifo_fast_peek,
David S. Millerd3678b42008-07-21 09:56:13 -0700522 .init = pfifo_fast_init,
523 .reset = pfifo_fast_reset,
524 .dump = pfifo_fast_dump,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 .owner = THIS_MODULE,
526};
John Fastabendb8970f02011-01-17 08:06:09 +0000527EXPORT_SYMBOL(pfifo_fast_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Eric Dumazet23d3b8b2012-09-05 01:02:56 +0000529static struct lock_class_key qdisc_tx_busylock;
530
David S. Miller5ce2d482008-07-08 17:06:30 -0700531struct Qdisc *qdisc_alloc(struct netdev_queue *dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -0700532 struct Qdisc_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 void *p;
535 struct Qdisc *sch;
Eric Dumazetd2760552011-03-03 11:10:02 -0800536 unsigned int size = QDISC_ALIGN(sizeof(*sch)) + ops->priv_size;
Thomas Graf3d54b822005-07-05 14:15:09 -0700537 int err = -ENOBUFS;
Eric Dumazet23d3b8b2012-09-05 01:02:56 +0000538 struct net_device *dev = dev_queue->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Eric Dumazetf2cd2d32010-11-29 08:14:37 +0000540 p = kzalloc_node(size, GFP_KERNEL,
541 netdev_queue_numa_node_read(dev_queue));
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (!p)
Thomas Graf3d54b822005-07-05 14:15:09 -0700544 goto errout;
Thomas Graf3d54b822005-07-05 14:15:09 -0700545 sch = (struct Qdisc *) QDISC_ALIGN((unsigned long) p);
Eric Dumazetd2760552011-03-03 11:10:02 -0800546 /* 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 Torvalds1da177e2005-04-16 15:20:36 -0700556 INIT_LIST_HEAD(&sch->list);
557 skb_queue_head_init(&sch->q);
Eric Dumazet23d3b8b2012-09-05 01:02:56 +0000558
Eric Dumazet79640a42010-06-02 05:09:29 -0700559 spin_lock_init(&sch->busylock);
Eric Dumazet23d3b8b2012-09-05 01:02:56 +0000560 lockdep_set_class(&sch->busylock,
561 dev->qdisc_tx_busylock ?: &qdisc_tx_busylock);
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 sch->ops = ops;
564 sch->enqueue = ops->enqueue;
565 sch->dequeue = ops->dequeue;
David S. Millerbb949fb2008-07-08 16:55:56 -0700566 sch->dev_queue = dev_queue;
Eric Dumazet23d3b8b2012-09-05 01:02:56 +0000567 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 atomic_set(&sch->refcnt, 1);
Thomas Graf3d54b822005-07-05 14:15:09 -0700569
570 return sch;
571errout:
WANG Cong01e123d2008-06-27 19:51:35 -0700572 return ERR_PTR(err);
Thomas Graf3d54b822005-07-05 14:15:09 -0700573}
574
Changli Gao3511c912010-10-16 13:04:08 +0000575struct Qdisc *qdisc_create_dflt(struct netdev_queue *dev_queue,
576 struct Qdisc_ops *ops, unsigned int parentid)
Thomas Graf3d54b822005-07-05 14:15:09 -0700577{
578 struct Qdisc *sch;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900579
David S. Miller5ce2d482008-07-08 17:06:30 -0700580 sch = qdisc_alloc(dev_queue, ops);
Thomas Graf3d54b822005-07-05 14:15:09 -0700581 if (IS_ERR(sch))
582 goto errout;
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800583 sch->parent = parentid;
Thomas Graf3d54b822005-07-05 14:15:09 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (!ops->init || ops->init(sch, NULL) == 0)
586 return sch;
587
Thomas Graf0fbbeb12005-08-23 10:12:44 -0700588 qdisc_destroy(sch);
Thomas Graf3d54b822005-07-05 14:15:09 -0700589errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return NULL;
591}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800592EXPORT_SYMBOL(qdisc_create_dflt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
David S. Miller5fb66222008-08-02 20:02:43 -0700594/* Under qdisc_lock(qdisc) and BH! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596void qdisc_reset(struct Qdisc *qdisc)
597{
Eric Dumazet20fea082007-11-14 01:44:41 -0800598 const struct Qdisc_ops *ops = qdisc->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 if (ops->reset)
601 ops->reset(qdisc);
Jarek Poplawski67305eb2008-11-03 02:52:50 -0800602
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000603 if (qdisc->gso_skb) {
604 kfree_skb(qdisc->gso_skb);
605 qdisc->gso_skb = NULL;
606 qdisc->q.qlen = 0;
607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800609EXPORT_SYMBOL(qdisc_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Eric Dumazet5d944c62010-03-31 07:06:04 +0000611static 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. Miller1e0d5a52008-08-17 22:31:26 -0700618void qdisc_destroy(struct Qdisc *qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
Eric Dumazet20fea082007-11-14 01:44:41 -0800620 const struct Qdisc_ops *ops = qdisc->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
David S. Miller1e0d5a52008-08-17 22:31:26 -0700622 if (qdisc->flags & TCQ_F_BUILTIN ||
623 !atomic_dec_and_test(&qdisc->refcnt))
624 return;
625
David S. Miller3a682fb2008-07-20 18:13:01 -0700626#ifdef CONFIG_NET_SCHED
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700627 qdisc_list_del(qdisc);
628
Eric Dumazeta2da5702011-01-20 03:48:19 +0000629 qdisc_put_stab(rtnl_dereference(qdisc->stab));
David S. Miller3a682fb2008-07-20 18:13:01 -0700630#endif
Patrick McHardy85670cc2006-09-27 16:45:45 -0700631 gen_kill_estimator(&qdisc->bstats, &qdisc->rate_est);
Patrick McHardy85670cc2006-09-27 16:45:45 -0700632 if (ops->reset)
633 ops->reset(qdisc);
634 if (ops->destroy)
635 ops->destroy(qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Patrick McHardy85670cc2006-09-27 16:45:45 -0700637 module_put(ops->owner);
David S. Miller5ce2d482008-07-08 17:06:30 -0700638 dev_put(qdisc_dev(qdisc));
David S. Miller8a34c5d2008-07-17 00:47:45 -0700639
Jarek Poplawski554794d2008-10-06 09:54:39 -0700640 kfree_skb(qdisc->gso_skb);
Eric Dumazet5d944c62010-03-31 07:06:04 +0000641 /*
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. Miller8a34c5d2008-07-17 00:47:45 -0700646}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800647EXPORT_SYMBOL(qdisc_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Patrick McHardy589983c2009-09-04 06:41:20 +0000649/* Attach toplevel qdisc to device queue. */
650struct 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 Fastabendb8970f02011-01-17 08:06:09 +0000673EXPORT_SYMBOL(dev_graft_qdisc);
Patrick McHardy589983c2009-09-04 06:41:20 +0000674
David S. Millere8a04642008-07-17 00:34:19 -0700675static void attach_one_default_qdisc(struct net_device *dev,
676 struct netdev_queue *dev_queue,
677 void *_unused)
678{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000679 struct Qdisc *qdisc = &noqueue_qdisc;
David S. Millere8a04642008-07-17 00:34:19 -0700680
681 if (dev->tx_queue_len) {
Changli Gao3511c912010-10-16 13:04:08 +0000682 qdisc = qdisc_create_dflt(dev_queue,
David S. Millerd3678b42008-07-21 09:56:13 -0700683 &pfifo_fast_ops, TC_H_ROOT);
David S. Millere8a04642008-07-17 00:34:19 -0700684 if (!qdisc) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000685 netdev_info(dev, "activation failed\n");
David S. Millere8a04642008-07-17 00:34:19 -0700686 return;
687 }
Eric Dumazet1abbe132012-12-11 15:54:33 +0000688 if (!netif_is_multiqueue(dev))
689 qdisc->flags |= TCQ_F_ONETXQUEUE;
David S. Millere8a04642008-07-17 00:34:19 -0700690 }
691 dev_queue->qdisc_sleeping = qdisc;
692}
693
David S. Miller6ec1c692009-09-06 01:58:51 -0700694static 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 Gao3511c912010-10-16 13:04:08 +0000706 qdisc = qdisc_create_dflt(txq, &mq_qdisc_ops, TC_H_ROOT);
David S. Miller6ec1c692009-09-06 01:58:51 -0700707 if (qdisc) {
708 qdisc->ops->attach(qdisc);
709 dev->qdisc = qdisc;
710 }
711 }
712}
713
David S. Millere8a04642008-07-17 00:34:19 -0700714static void transition_one_qdisc(struct net_device *dev,
715 struct netdev_queue *dev_queue,
716 void *_need_watchdog)
717{
David S. Miller838740002008-07-17 00:53:03 -0700718 struct Qdisc *new_qdisc = dev_queue->qdisc_sleeping;
David S. Millere8a04642008-07-17 00:34:19 -0700719 int *need_watchdog_p = _need_watchdog;
720
David S. Millera9312ae2008-08-17 21:51:03 -0700721 if (!(new_qdisc->flags & TCQ_F_BUILTIN))
722 clear_bit(__QDISC_STATE_DEACTIVATED, &new_qdisc->state);
723
David S. Miller838740002008-07-17 00:53:03 -0700724 rcu_assign_pointer(dev_queue->qdisc, new_qdisc);
Eric Dumazet9d214932009-05-17 20:55:16 -0700725 if (need_watchdog_p && new_qdisc != &noqueue_qdisc) {
726 dev_queue->trans_start = 0;
David S. Millere8a04642008-07-17 00:34:19 -0700727 *need_watchdog_p = 1;
Eric Dumazet9d214932009-05-17 20:55:16 -0700728 }
David S. Millere8a04642008-07-17 00:34:19 -0700729}
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731void dev_activate(struct net_device *dev)
732{
David S. Millere8a04642008-07-17 00:34:19 -0700733 int need_watchdog;
David S. Millerb0e1e642008-07-08 17:42:10 -0700734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 /* No queueing discipline is attached to device;
David S. Millerd3678b42008-07-21 09:56:13 -0700736 create default one i.e. pfifo_fast for devices,
737 which need queueing and noqueue_qdisc for
738 virtual interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 */
740
David S. Miller6ec1c692009-09-06 01:58:51 -0700741 if (dev->qdisc == &noop_qdisc)
742 attach_default_qdiscs(dev);
Patrick McHardyaf356af2009-09-04 06:41:18 +0000743
Tommy S. Christensencacaddf2005-05-03 16:18:52 -0700744 if (!netif_carrier_ok(dev))
745 /* Delay activation until next carrier-on event */
746 return;
747
David S. Millere8a04642008-07-17 00:34:19 -0700748 need_watchdog = 0;
749 netdev_for_each_tx_queue(dev, transition_one_qdisc, &need_watchdog);
Eric Dumazet24824a02010-10-02 06:11:55 +0000750 if (dev_ingress_queue(dev))
751 transition_one_qdisc(dev, dev_ingress_queue(dev), NULL);
David S. Millere8a04642008-07-17 00:34:19 -0700752
753 if (need_watchdog) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 dev->trans_start = jiffies;
755 dev_watchdog_up(dev);
756 }
David S. Millerb0e1e642008-07-08 17:42:10 -0700757}
John Fastabendb8970f02011-01-17 08:06:09 +0000758EXPORT_SYMBOL(dev_activate);
David S. Millerb0e1e642008-07-08 17:42:10 -0700759
David S. Millere8a04642008-07-17 00:34:19 -0700760static void dev_deactivate_queue(struct net_device *dev,
761 struct netdev_queue *dev_queue,
762 void *_qdisc_default)
David S. Millerb0e1e642008-07-08 17:42:10 -0700763{
David S. Millere8a04642008-07-17 00:34:19 -0700764 struct Qdisc *qdisc_default = _qdisc_default;
David S. Miller970565b2008-07-08 23:10:33 -0700765 struct Qdisc *qdisc;
David S. Millerb0e1e642008-07-08 17:42:10 -0700766
David S. Miller970565b2008-07-08 23:10:33 -0700767 qdisc = dev_queue->qdisc;
David S. Millerb0e1e642008-07-08 17:42:10 -0700768 if (qdisc) {
David S. Miller838740002008-07-17 00:53:03 -0700769 spin_lock_bh(qdisc_lock(qdisc));
770
David S. Millera9312ae2008-08-17 21:51:03 -0700771 if (!(qdisc->flags & TCQ_F_BUILTIN))
772 set_bit(__QDISC_STATE_DEACTIVATED, &qdisc->state);
773
Jarek Poplawskif7a54c12008-08-27 02:22:07 -0700774 rcu_assign_pointer(dev_queue->qdisc, qdisc_default);
David S. Millerb0e1e642008-07-08 17:42:10 -0700775 qdisc_reset(qdisc);
David S. Millerd3b753d2008-07-15 20:14:35 -0700776
David S. Miller838740002008-07-17 00:53:03 -0700777 spin_unlock_bh(qdisc_lock(qdisc));
David S. Millerb0e1e642008-07-08 17:42:10 -0700778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
David S. Miller4335cd22008-08-17 21:58:07 -0700781static bool some_qdisc_is_busy(struct net_device *dev)
David S. Millere8a04642008-07-17 00:34:19 -0700782{
783 unsigned int i;
784
785 for (i = 0; i < dev->num_tx_queues; i++) {
786 struct netdev_queue *dev_queue;
David S. Miller7698b4f2008-07-16 01:42:40 -0700787 spinlock_t *root_lock;
David S. Millere2627c82008-07-16 00:56:32 -0700788 struct Qdisc *q;
David S. Millere8a04642008-07-17 00:34:19 -0700789 int val;
790
791 dev_queue = netdev_get_tx_queue(dev, i);
David S. Millerb9a3b112008-08-13 15:18:38 -0700792 q = dev_queue->qdisc_sleeping;
David S. Miller5fb66222008-08-02 20:02:43 -0700793 root_lock = qdisc_lock(q);
David S. Millere8a04642008-07-17 00:34:19 -0700794
David S. Miller4335cd22008-08-17 21:58:07 -0700795 spin_lock_bh(root_lock);
David S. Millere8a04642008-07-17 00:34:19 -0700796
Eric Dumazetbc135b22010-06-02 03:23:51 -0700797 val = (qdisc_is_running(q) ||
David S. Millerb9a3b112008-08-13 15:18:38 -0700798 test_bit(__QDISC_STATE_SCHED, &q->state));
David S. Millere8a04642008-07-17 00:34:19 -0700799
David S. Miller4335cd22008-08-17 21:58:07 -0700800 spin_unlock_bh(root_lock);
David S. Millere8a04642008-07-17 00:34:19 -0700801
802 if (val)
803 return true;
804 }
805 return false;
806}
807
Eric Dumazet31376632011-05-19 23:42:09 +0000808/**
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 Purdila44345722010-12-13 12:44:07 +0000815void dev_deactivate_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
Octavian Purdila44345722010-12-13 12:44:07 +0000817 struct net_device *dev;
Eric Dumazet31376632011-05-19 23:42:09 +0000818 bool sync_needed = false;
Herbert Xu41a23b02007-05-10 14:12:47 -0700819
Octavian Purdila44345722010-12-13 12:44:07 +0000820 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 Dumazet31376632011-05-19 23:42:09 +0000828 sync_needed |= !dev->dismantle;
Octavian Purdila44345722010-12-13 12:44:07 +0000829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Eric Dumazet31376632011-05-19 23:42:09 +0000831 /* 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 Torvalds1da177e2005-04-16 15:20:36 -0700837
Herbert Xud4828d82006-06-22 02:28:18 -0700838 /* Wait for outstanding qdisc_run calls. */
Octavian Purdila44345722010-12-13 12:44:07 +0000839 list_for_each_entry(dev, head, unreg_list)
840 while (some_qdisc_is_busy(dev))
841 yield();
842}
843
844void 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. Biederman5f04d502011-02-20 11:49:45 -0800850 list_del(&single);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
John Fastabendb8970f02011-01-17 08:06:09 +0000852EXPORT_SYMBOL(dev_deactivate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
David S. Millerb0e1e642008-07-08 17:42:10 -0700854static void dev_init_scheduler_queue(struct net_device *dev,
855 struct netdev_queue *dev_queue,
David S. Millere8a04642008-07-17 00:34:19 -0700856 void *_qdisc)
David S. Millerb0e1e642008-07-08 17:42:10 -0700857{
David S. Millere8a04642008-07-17 00:34:19 -0700858 struct Qdisc *qdisc = _qdisc;
859
David S. Millerb0e1e642008-07-08 17:42:10 -0700860 dev_queue->qdisc = qdisc;
861 dev_queue->qdisc_sleeping = qdisc;
David S. Millerb0e1e642008-07-08 17:42:10 -0700862}
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864void dev_init_scheduler(struct net_device *dev)
865{
Patrick McHardyaf356af2009-09-04 06:41:18 +0000866 dev->qdisc = &noop_qdisc;
David S. Millere8a04642008-07-17 00:34:19 -0700867 netdev_for_each_tx_queue(dev, dev_init_scheduler_queue, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +0000868 if (dev_ingress_queue(dev))
869 dev_init_scheduler_queue(dev, dev_ingress_queue(dev), &noop_qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800871 setup_timer(&dev->watchdog_timer, dev_watchdog, (unsigned long)dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
873
David S. Millere8a04642008-07-17 00:34:19 -0700874static void shutdown_scheduler_queue(struct net_device *dev,
875 struct netdev_queue *dev_queue,
876 void *_qdisc_default)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
David S. Millerb0e1e642008-07-08 17:42:10 -0700878 struct Qdisc *qdisc = dev_queue->qdisc_sleeping;
David S. Millere8a04642008-07-17 00:34:19 -0700879 struct Qdisc *qdisc_default = _qdisc_default;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
David S. Millerb0e1e642008-07-08 17:42:10 -0700881 if (qdisc) {
Jarek Poplawskif7a54c12008-08-27 02:22:07 -0700882 rcu_assign_pointer(dev_queue->qdisc, qdisc_default);
David S. Millerb0e1e642008-07-08 17:42:10 -0700883 dev_queue->qdisc_sleeping = qdisc_default;
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 qdisc_destroy(qdisc);
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900886 }
David S. Millerb0e1e642008-07-08 17:42:10 -0700887}
888
889void dev_shutdown(struct net_device *dev)
890{
David S. Millere8a04642008-07-17 00:34:19 -0700891 netdev_for_each_tx_queue(dev, shutdown_scheduler_queue, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +0000892 if (dev_ingress_queue(dev))
893 shutdown_scheduler_queue(dev, dev_ingress_queue(dev), &noop_qdisc);
Patrick McHardyaf356af2009-09-04 06:41:18 +0000894 qdisc_destroy(dev->qdisc);
895 dev->qdisc = &noop_qdisc;
896
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700897 WARN_ON(timer_pending(&dev->watchdog_timer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}