blob: 9461e8ae052998604bfe68fd233fb70bde499898 [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
14#include <asm/uaccess.h>
15#include <asm/system.h>
16#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/module.h>
18#include <linux/types.h>
19#include <linux/kernel.h>
20#include <linux/sched.h>
21#include <linux/string.h>
22#include <linux/mm.h>
23#include <linux/socket.h>
24#include <linux/sockios.h>
25#include <linux/in.h>
26#include <linux/errno.h>
27#include <linux/interrupt.h>
28#include <linux/netdevice.h>
29#include <linux/skbuff.h>
30#include <linux/rtnetlink.h>
31#include <linux/init.h>
32#include <linux/rcupdate.h>
33#include <linux/list.h>
34#include <net/sock.h>
35#include <net/pkt_sched.h>
36
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070037#define SCHED_TX_DROP -2
38#define SCHED_TX_QUEUE -3
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/* Main transmission queue. */
41
Patrick McHardy0463d4a2007-04-16 17:02:10 -070042/* Modifications to data participating in scheduling must be protected with
43 * dev->queue_lock spinlock.
44 *
45 * The idea is the following:
46 * - enqueue, dequeue are serialized via top level device
47 * spinlock dev->queue_lock.
Patrick McHardyfd44de72007-04-16 17:07:08 -070048 * - ingress filtering is serialized via top level device
49 * spinlock dev->ingress_lock.
Patrick McHardy0463d4a2007-04-16 17:02:10 -070050 * - updates to tree and tree walking are only done under the rtnl mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53void qdisc_lock_tree(struct net_device *dev)
54{
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 spin_lock_bh(&dev->queue_lock);
Patrick McHardyfd44de72007-04-16 17:07:08 -070056 spin_lock(&dev->ingress_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
59void qdisc_unlock_tree(struct net_device *dev)
60{
Patrick McHardyfd44de72007-04-16 17:07:08 -070061 spin_unlock(&dev->ingress_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 spin_unlock_bh(&dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070065static inline int qdisc_qlen(struct Qdisc *q)
66{
67 BUG_ON((int) q->q.qlen < 0);
68 return q->q.qlen;
69}
70
71static inline int handle_dev_cpu_collision(struct net_device *dev)
72{
73 if (unlikely(dev->xmit_lock_owner == smp_processor_id())) {
74 if (net_ratelimit())
75 printk(KERN_WARNING
76 "Dead loop on netdevice %s, fix it urgently!\n",
77 dev->name);
78 return SCHED_TX_DROP;
79 }
80 __get_cpu_var(netdev_rx_stat).cpu_collision++;
81 return SCHED_TX_QUEUE;
82}
83
84static inline int
85do_dev_requeue(struct sk_buff *skb, struct net_device *dev, struct Qdisc *q)
86{
87
88 if (unlikely(skb->next))
89 dev->gso_skb = skb;
90 else
91 q->ops->requeue(skb, q);
92 /* XXX: Could netif_schedule fail? Or is the fact we are
93 * requeueing imply the hardware path is closed
94 * and even if we fail, some interupt will wake us
95 */
96 netif_schedule(dev);
97 return 0;
98}
99
100static inline struct sk_buff *
101try_get_tx_pkt(struct net_device *dev, struct Qdisc *q)
102{
103 struct sk_buff *skb = dev->gso_skb;
104
105 if (skb)
106 dev->gso_skb = NULL;
107 else
108 skb = q->dequeue(q);
109
110 return skb;
111}
112
113static inline int
114tx_islocked(struct sk_buff *skb, struct net_device *dev, struct Qdisc *q)
115{
116 int ret = handle_dev_cpu_collision(dev);
117
118 if (ret == SCHED_TX_DROP) {
119 kfree_skb(skb);
120 return qdisc_qlen(q);
121 }
122
123 return do_dev_requeue(skb, dev, q);
124}
125
126
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900127/*
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700128 NOTE: Called under dev->queue_lock with locally disabled BH.
129
130 __LINK_STATE_QDISC_RUNNING guarantees only one CPU
131 can enter this region at a time.
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 dev->queue_lock serializes queue accesses for this device
134 AND dev->qdisc pointer itself.
135
Herbert Xu932ff272006-06-09 12:20:56 -0700136 netif_tx_lock serializes accesses to device driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Herbert Xu932ff272006-06-09 12:20:56 -0700138 dev->queue_lock and netif_tx_lock are mutually exclusive,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if one is grabbed, another must be free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700141 Multiple CPUs may contend for the two locks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700143 Note, that this procedure can be called by a watchdog timer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700145 Returns to the caller:
Herbert Xud90df3a2007-05-10 04:55:14 -0700146 Returns: 0 - queue is empty or throttled.
147 >0 - queue is not empty.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149*/
150
Herbert Xu48d83322006-06-19 23:57:59 -0700151static inline int qdisc_restart(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 struct Qdisc *q = dev->qdisc;
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700154 unsigned lockless = (dev->features & NETIF_F_LLTX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 struct sk_buff *skb;
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700156 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700158 skb = try_get_tx_pkt(dev, q);
159 if (skb == NULL)
160 return 0;
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700161
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700162 /* we have a packet to send */
163 if (!lockless) {
164 if (!netif_tx_trylock(dev))
165 return tx_islocked(skb, dev, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700167 /* all clear .. */
168 spin_unlock(&dev->queue_lock);
Herbert Xud90df3a2007-05-10 04:55:14 -0700169
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700170 ret = NETDEV_TX_BUSY;
171 if (!netif_queue_stopped(dev))
172 /* churn baby churn .. */
173 ret = dev_hard_start_xmit(skb, dev);
174
175 if (!lockless)
176 netif_tx_unlock(dev);
177
178 spin_lock(&dev->queue_lock);
179
180 /* we need to refresh q because it may be invalid since
181 * we dropped dev->queue_lock earlier ...
182 * So dont try to be clever grasshopper
183 */
184 q = dev->qdisc;
185 /* most likely result, packet went ok */
186 if (ret == NETDEV_TX_OK)
187 return qdisc_qlen(q);
188 /* only for lockless drivers .. */
189 if (ret == NETDEV_TX_LOCKED && lockless)
190 return tx_islocked(skb, dev, q);
191
192 if (unlikely (ret != NETDEV_TX_BUSY && net_ratelimit()))
193 printk(KERN_WARNING " BUG %s code %d qlen %d\n",dev->name, ret, q->q.qlen);
194
195 return do_dev_requeue(skb, dev, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700198
Herbert Xu48d83322006-06-19 23:57:59 -0700199void __qdisc_run(struct net_device *dev)
200{
Herbert Xud90df3a2007-05-10 04:55:14 -0700201 do {
202 if (!qdisc_restart(dev))
203 break;
204 } while (!netif_queue_stopped(dev));
Herbert Xu48d83322006-06-19 23:57:59 -0700205
206 clear_bit(__LINK_STATE_QDISC_RUNNING, &dev->state);
207}
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209static void dev_watchdog(unsigned long arg)
210{
211 struct net_device *dev = (struct net_device *)arg;
212
Herbert Xu932ff272006-06-09 12:20:56 -0700213 netif_tx_lock(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (dev->qdisc != &noop_qdisc) {
215 if (netif_device_present(dev) &&
216 netif_running(dev) &&
217 netif_carrier_ok(dev)) {
218 if (netif_queue_stopped(dev) &&
Stephen Hemminger338f7562006-05-16 15:02:12 -0700219 time_after(jiffies, dev->trans_start + dev->watchdog_timeo)) {
220
221 printk(KERN_INFO "NETDEV WATCHDOG: %s: transmit timed out\n",
222 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 dev->tx_timeout(dev);
224 }
Arjan van de Venf5a6e012007-02-05 17:59:51 -0800225 if (!mod_timer(&dev->watchdog_timer, round_jiffies(jiffies + dev->watchdog_timeo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 dev_hold(dev);
227 }
228 }
Herbert Xu932ff272006-06-09 12:20:56 -0700229 netif_tx_unlock(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 dev_put(dev);
232}
233
234static void dev_watchdog_init(struct net_device *dev)
235{
236 init_timer(&dev->watchdog_timer);
237 dev->watchdog_timer.data = (unsigned long)dev;
238 dev->watchdog_timer.function = dev_watchdog;
239}
240
241void __netdev_watchdog_up(struct net_device *dev)
242{
243 if (dev->tx_timeout) {
244 if (dev->watchdog_timeo <= 0)
245 dev->watchdog_timeo = 5*HZ;
Venkatesh Pallipadi60468d52007-05-31 21:28:44 -0700246 if (!mod_timer(&dev->watchdog_timer,
247 round_jiffies(jiffies + dev->watchdog_timeo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 dev_hold(dev);
249 }
250}
251
252static void dev_watchdog_up(struct net_device *dev)
253{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 __netdev_watchdog_up(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
257static void dev_watchdog_down(struct net_device *dev)
258{
Herbert Xu932ff272006-06-09 12:20:56 -0700259 netif_tx_lock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (del_timer(&dev->watchdog_timer))
Stephen Hemminger15333062006-03-20 22:32:28 -0800261 dev_put(dev);
Herbert Xu932ff272006-06-09 12:20:56 -0700262 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700265void netif_carrier_on(struct net_device *dev)
266{
267 if (test_and_clear_bit(__LINK_STATE_NOCARRIER, &dev->state))
268 linkwatch_fire_event(dev);
269 if (netif_running(dev))
270 __netdev_watchdog_up(dev);
271}
272
273void netif_carrier_off(struct net_device *dev)
274{
275 if (!test_and_set_bit(__LINK_STATE_NOCARRIER, &dev->state))
276 linkwatch_fire_event(dev);
277}
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279/* "NOOP" scheduler: the best scheduler, recommended for all interfaces
280 under all circumstances. It is difficult to invent anything faster or
281 cheaper.
282 */
283
Thomas Graf94df1092005-06-18 22:59:08 -0700284static int noop_enqueue(struct sk_buff *skb, struct Qdisc * qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 kfree_skb(skb);
287 return NET_XMIT_CN;
288}
289
Thomas Graf94df1092005-06-18 22:59:08 -0700290static struct sk_buff *noop_dequeue(struct Qdisc * qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 return NULL;
293}
294
Thomas Graf94df1092005-06-18 22:59:08 -0700295static int noop_requeue(struct sk_buff *skb, struct Qdisc* qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 if (net_ratelimit())
Thomas Graf94df1092005-06-18 22:59:08 -0700298 printk(KERN_DEBUG "%s deferred output. It is buggy.\n",
299 skb->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 kfree_skb(skb);
301 return NET_XMIT_CN;
302}
303
304struct Qdisc_ops noop_qdisc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 .id = "noop",
306 .priv_size = 0,
307 .enqueue = noop_enqueue,
308 .dequeue = noop_dequeue,
309 .requeue = noop_requeue,
310 .owner = THIS_MODULE,
311};
312
313struct Qdisc noop_qdisc = {
314 .enqueue = noop_enqueue,
315 .dequeue = noop_dequeue,
316 .flags = TCQ_F_BUILTIN,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900317 .ops = &noop_qdisc_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 .list = LIST_HEAD_INIT(noop_qdisc.list),
319};
320
321static struct Qdisc_ops noqueue_qdisc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 .id = "noqueue",
323 .priv_size = 0,
324 .enqueue = noop_enqueue,
325 .dequeue = noop_dequeue,
326 .requeue = noop_requeue,
327 .owner = THIS_MODULE,
328};
329
330static struct Qdisc noqueue_qdisc = {
331 .enqueue = NULL,
332 .dequeue = noop_dequeue,
333 .flags = TCQ_F_BUILTIN,
334 .ops = &noqueue_qdisc_ops,
335 .list = LIST_HEAD_INIT(noqueue_qdisc.list),
336};
337
338
339static const u8 prio2band[TC_PRIO_MAX+1] =
340 { 1, 2, 2, 2, 1, 2, 0, 0 , 1, 1, 1, 1, 1, 1, 1, 1 };
341
342/* 3-band FIFO queue: old style, but should be a bit faster than
343 generic prio+fifo combination.
344 */
345
Thomas Graff87a9c32005-06-18 22:58:53 -0700346#define PFIFO_FAST_BANDS 3
347
Thomas Graf321090e2005-06-18 22:58:35 -0700348static inline struct sk_buff_head *prio2list(struct sk_buff *skb,
349 struct Qdisc *qdisc)
350{
351 struct sk_buff_head *list = qdisc_priv(qdisc);
352 return list + prio2band[skb->priority & TC_PRIO_MAX];
353}
354
Thomas Graff87a9c32005-06-18 22:58:53 -0700355static int pfifo_fast_enqueue(struct sk_buff *skb, struct Qdisc* qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Thomas Graf321090e2005-06-18 22:58:35 -0700357 struct sk_buff_head *list = prio2list(skb, qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Thomas Graf821d24a2005-06-18 22:58:15 -0700359 if (skb_queue_len(list) < qdisc->dev->tx_queue_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 qdisc->q.qlen++;
Thomas Graf821d24a2005-06-18 22:58:15 -0700361 return __qdisc_enqueue_tail(skb, qdisc, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
Thomas Graf821d24a2005-06-18 22:58:15 -0700363
364 return qdisc_drop(skb, qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
Thomas Graff87a9c32005-06-18 22:58:53 -0700367static struct sk_buff *pfifo_fast_dequeue(struct Qdisc* qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 int prio;
370 struct sk_buff_head *list = qdisc_priv(qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Thomas Graf452f2992005-07-18 13:30:53 -0700372 for (prio = 0; prio < PFIFO_FAST_BANDS; prio++) {
373 if (!skb_queue_empty(list + prio)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 qdisc->q.qlen--;
Thomas Graf452f2992005-07-18 13:30:53 -0700375 return __qdisc_dequeue_head(qdisc, list + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377 }
Thomas Graff87a9c32005-06-18 22:58:53 -0700378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return NULL;
380}
381
Thomas Graff87a9c32005-06-18 22:58:53 -0700382static int pfifo_fast_requeue(struct sk_buff *skb, struct Qdisc* qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 qdisc->q.qlen++;
Thomas Graf321090e2005-06-18 22:58:35 -0700385 return __qdisc_requeue(skb, qdisc, prio2list(skb, qdisc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Thomas Graff87a9c32005-06-18 22:58:53 -0700388static void pfifo_fast_reset(struct Qdisc* qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 int prio;
391 struct sk_buff_head *list = qdisc_priv(qdisc);
392
Thomas Graff87a9c32005-06-18 22:58:53 -0700393 for (prio = 0; prio < PFIFO_FAST_BANDS; prio++)
Thomas Graf821d24a2005-06-18 22:58:15 -0700394 __qdisc_reset_queue(qdisc, list + prio);
395
396 qdisc->qstats.backlog = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 qdisc->q.qlen = 0;
398}
399
400static int pfifo_fast_dump(struct Qdisc *qdisc, struct sk_buff *skb)
401{
Thomas Graff87a9c32005-06-18 22:58:53 -0700402 struct tc_prio_qopt opt = { .bands = PFIFO_FAST_BANDS };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 memcpy(&opt.priomap, prio2band, TC_PRIO_MAX+1);
405 RTA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt);
406 return skb->len;
407
408rtattr_failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return -1;
410}
411
412static int pfifo_fast_init(struct Qdisc *qdisc, struct rtattr *opt)
413{
Thomas Graff87a9c32005-06-18 22:58:53 -0700414 int prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 struct sk_buff_head *list = qdisc_priv(qdisc);
416
Thomas Graff87a9c32005-06-18 22:58:53 -0700417 for (prio = 0; prio < PFIFO_FAST_BANDS; prio++)
418 skb_queue_head_init(list + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 return 0;
421}
422
423static struct Qdisc_ops pfifo_fast_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 .id = "pfifo_fast",
Thomas Graff87a9c32005-06-18 22:58:53 -0700425 .priv_size = PFIFO_FAST_BANDS * sizeof(struct sk_buff_head),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 .enqueue = pfifo_fast_enqueue,
427 .dequeue = pfifo_fast_dequeue,
428 .requeue = pfifo_fast_requeue,
429 .init = pfifo_fast_init,
430 .reset = pfifo_fast_reset,
431 .dump = pfifo_fast_dump,
432 .owner = THIS_MODULE,
433};
434
Thomas Graf3d54b822005-07-05 14:15:09 -0700435struct Qdisc *qdisc_alloc(struct net_device *dev, struct Qdisc_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 void *p;
438 struct Qdisc *sch;
Thomas Graf3d54b822005-07-05 14:15:09 -0700439 unsigned int size;
440 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 /* ensure that the Qdisc and the private data are 32-byte aligned */
Thomas Graf3d54b822005-07-05 14:15:09 -0700443 size = QDISC_ALIGN(sizeof(*sch));
444 size += ops->priv_size + (QDISC_ALIGNTO - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700446 p = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (!p)
Thomas Graf3d54b822005-07-05 14:15:09 -0700448 goto errout;
Thomas Graf3d54b822005-07-05 14:15:09 -0700449 sch = (struct Qdisc *) QDISC_ALIGN((unsigned long) p);
450 sch->padded = (char *) sch - (char *) p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 INIT_LIST_HEAD(&sch->list);
453 skb_queue_head_init(&sch->q);
454 sch->ops = ops;
455 sch->enqueue = ops->enqueue;
456 sch->dequeue = ops->dequeue;
457 sch->dev = dev;
458 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 atomic_set(&sch->refcnt, 1);
Thomas Graf3d54b822005-07-05 14:15:09 -0700460
461 return sch;
462errout:
463 return ERR_PTR(-err);
464}
465
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800466struct Qdisc * qdisc_create_dflt(struct net_device *dev, struct Qdisc_ops *ops,
467 unsigned int parentid)
Thomas Graf3d54b822005-07-05 14:15:09 -0700468{
469 struct Qdisc *sch;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900470
Thomas Graf3d54b822005-07-05 14:15:09 -0700471 sch = qdisc_alloc(dev, ops);
472 if (IS_ERR(sch))
473 goto errout;
Patrick McHardyfd44de72007-04-16 17:07:08 -0700474 sch->stats_lock = &dev->queue_lock;
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800475 sch->parent = parentid;
Thomas Graf3d54b822005-07-05 14:15:09 -0700476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (!ops->init || ops->init(sch, NULL) == 0)
478 return sch;
479
Thomas Graf0fbbeb12005-08-23 10:12:44 -0700480 qdisc_destroy(sch);
Thomas Graf3d54b822005-07-05 14:15:09 -0700481errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 return NULL;
483}
484
485/* Under dev->queue_lock and BH! */
486
487void qdisc_reset(struct Qdisc *qdisc)
488{
489 struct Qdisc_ops *ops = qdisc->ops;
490
491 if (ops->reset)
492 ops->reset(qdisc);
493}
494
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900495/* this is the rcu callback function to clean up a qdisc when there
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 * are no further references to it */
497
498static void __qdisc_destroy(struct rcu_head *head)
499{
500 struct Qdisc *qdisc = container_of(head, struct Qdisc, q_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 kfree((char *) qdisc - qdisc->padded);
502}
503
504/* Under dev->queue_lock and BH! */
505
506void qdisc_destroy(struct Qdisc *qdisc)
507{
Patrick McHardy85670cc2006-09-27 16:45:45 -0700508 struct Qdisc_ops *ops = qdisc->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 if (qdisc->flags & TCQ_F_BUILTIN ||
Patrick McHardy85670cc2006-09-27 16:45:45 -0700511 !atomic_dec_and_test(&qdisc->refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return;
513
Patrick McHardy85670cc2006-09-27 16:45:45 -0700514 list_del(&qdisc->list);
515#ifdef CONFIG_NET_ESTIMATOR
516 gen_kill_estimator(&qdisc->bstats, &qdisc->rate_est);
517#endif
518 if (ops->reset)
519 ops->reset(qdisc);
520 if (ops->destroy)
521 ops->destroy(qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Patrick McHardy85670cc2006-09-27 16:45:45 -0700523 module_put(ops->owner);
524 dev_put(qdisc->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 call_rcu(&qdisc->q_rcu, __qdisc_destroy);
526}
527
528void dev_activate(struct net_device *dev)
529{
530 /* No queueing discipline is attached to device;
531 create default one i.e. pfifo_fast for devices,
532 which need queueing and noqueue_qdisc for
533 virtual interfaces
534 */
535
536 if (dev->qdisc_sleeping == &noop_qdisc) {
537 struct Qdisc *qdisc;
538 if (dev->tx_queue_len) {
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800539 qdisc = qdisc_create_dflt(dev, &pfifo_fast_ops,
540 TC_H_ROOT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (qdisc == NULL) {
542 printk(KERN_INFO "%s: activation failed\n", dev->name);
543 return;
544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 list_add_tail(&qdisc->list, &dev->qdisc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 } else {
547 qdisc = &noqueue_qdisc;
548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 dev->qdisc_sleeping = qdisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551
Tommy S. Christensencacaddf2005-05-03 16:18:52 -0700552 if (!netif_carrier_ok(dev))
553 /* Delay activation until next carrier-on event */
554 return;
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 spin_lock_bh(&dev->queue_lock);
557 rcu_assign_pointer(dev->qdisc, dev->qdisc_sleeping);
558 if (dev->qdisc != &noqueue_qdisc) {
559 dev->trans_start = jiffies;
560 dev_watchdog_up(dev);
561 }
562 spin_unlock_bh(&dev->queue_lock);
563}
564
565void dev_deactivate(struct net_device *dev)
566{
567 struct Qdisc *qdisc;
Herbert Xu41a23b02007-05-10 14:12:47 -0700568 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 spin_lock_bh(&dev->queue_lock);
571 qdisc = dev->qdisc;
572 dev->qdisc = &noop_qdisc;
573
574 qdisc_reset(qdisc);
575
Herbert Xu41a23b02007-05-10 14:12:47 -0700576 skb = dev->gso_skb;
577 dev->gso_skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 spin_unlock_bh(&dev->queue_lock);
579
Herbert Xu41a23b02007-05-10 14:12:47 -0700580 kfree_skb(skb);
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 dev_watchdog_down(dev);
583
Herbert Xud4828d82006-06-22 02:28:18 -0700584 /* Wait for outstanding dev_queue_xmit calls. */
585 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Herbert Xud4828d82006-06-22 02:28:18 -0700587 /* Wait for outstanding qdisc_run calls. */
588 while (test_bit(__LINK_STATE_QDISC_RUNNING, &dev->state))
589 yield();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
592void dev_init_scheduler(struct net_device *dev)
593{
594 qdisc_lock_tree(dev);
595 dev->qdisc = &noop_qdisc;
596 dev->qdisc_sleeping = &noop_qdisc;
597 INIT_LIST_HEAD(&dev->qdisc_list);
598 qdisc_unlock_tree(dev);
599
600 dev_watchdog_init(dev);
601}
602
603void dev_shutdown(struct net_device *dev)
604{
605 struct Qdisc *qdisc;
606
607 qdisc_lock_tree(dev);
608 qdisc = dev->qdisc_sleeping;
609 dev->qdisc = &noop_qdisc;
610 dev->qdisc_sleeping = &noop_qdisc;
611 qdisc_destroy(qdisc);
612#if defined(CONFIG_NET_SCH_INGRESS) || defined(CONFIG_NET_SCH_INGRESS_MODULE)
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900613 if ((qdisc = dev->qdisc_ingress) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 dev->qdisc_ingress = NULL;
615 qdisc_destroy(qdisc);
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617#endif
618 BUG_TRAP(!timer_pending(&dev->watchdog_timer));
619 qdisc_unlock_tree(dev);
620}
621
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700622EXPORT_SYMBOL(netif_carrier_on);
623EXPORT_SYMBOL(netif_carrier_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624EXPORT_SYMBOL(noop_qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625EXPORT_SYMBOL(qdisc_create_dflt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626EXPORT_SYMBOL(qdisc_destroy);
627EXPORT_SYMBOL(qdisc_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628EXPORT_SYMBOL(qdisc_lock_tree);
629EXPORT_SYMBOL(qdisc_unlock_tree);