Revert "pinctrl: digicolor: add missing platform_set_drvdata() call"
[linux-2.6-block.git] / net / sched / sch_generic.c
CommitLineData
1da177e4
LT
1/*
2 * net/sched/sch_generic.c Generic packet scheduler routines.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 * Jamal Hadi Salim, <hadi@cyberus.ca> 990601
11 * - Ingress support
12 */
13
1da177e4 14#include <linux/bitops.h>
1da177e4
LT
15#include <linux/module.h>
16#include <linux/types.h>
17#include <linux/kernel.h>
18#include <linux/sched.h>
19#include <linux/string.h>
1da177e4 20#include <linux/errno.h>
1da177e4
LT
21#include <linux/netdevice.h>
22#include <linux/skbuff.h>
23#include <linux/rtnetlink.h>
24#include <linux/init.h>
25#include <linux/rcupdate.h>
26#include <linux/list.h>
5a0e3ad6 27#include <linux/slab.h>
07ce76aa 28#include <linux/if_vlan.h>
292f1c7f 29#include <net/sch_generic.h>
1da177e4 30#include <net/pkt_sched.h>
7fee226a 31#include <net/dst.h>
1da177e4 32
34aedd3f 33/* Qdisc to use by default */
34const struct Qdisc_ops *default_qdisc_ops = &pfifo_fast_ops;
35EXPORT_SYMBOL(default_qdisc_ops);
36
1da177e4
LT
37/* Main transmission queue. */
38
0463d4ae 39/* Modifications to data participating in scheduling must be protected with
5fb66229 40 * qdisc_lock(qdisc) spinlock.
0463d4ae
PM
41 *
42 * The idea is the following:
c7e4f3bb
DM
43 * - enqueue, dequeue are serialized via qdisc root lock
44 * - ingress filtering is also serialized via qdisc root lock
0463d4ae 45 * - updates to tree and tree walking are only done under the rtnl mutex.
1da177e4 46 */
1da177e4 47
37437bb2 48static inline int dev_requeue_skb(struct sk_buff *skb, struct Qdisc *q)
c716a81a 49{
6252352d 50 q->gso_skb = skb;
53e91503 51 q->qstats.requeues++;
bbd8a0d3 52 q->q.qlen++; /* it's still part of the queue */
37437bb2 53 __netif_schedule(q);
6252352d 54
c716a81a
JHS
55 return 0;
56}
57
55a93b3e
ED
58static void try_bulk_dequeue_skb(struct Qdisc *q,
59 struct sk_buff *skb,
b8358d70
JDB
60 const struct netdev_queue *txq,
61 int *packets)
5772e9a3 62{
55a93b3e 63 int bytelimit = qdisc_avail_bulklimit(txq) - skb->len;
5772e9a3
JDB
64
65 while (bytelimit > 0) {
55a93b3e 66 struct sk_buff *nskb = q->dequeue(q);
5772e9a3 67
55a93b3e 68 if (!nskb)
5772e9a3
JDB
69 break;
70
55a93b3e
ED
71 bytelimit -= nskb->len; /* covers GSO len */
72 skb->next = nskb;
73 skb = nskb;
b8358d70 74 (*packets)++; /* GSO counts as one pkt */
5772e9a3 75 }
55a93b3e 76 skb->next = NULL;
5772e9a3
JDB
77}
78
79/* Note that dequeue_skb can possibly return a SKB list (via skb->next).
80 * A requeued skb (via q->gso_skb) can also be a SKB list.
81 */
b8358d70
JDB
82static struct sk_buff *dequeue_skb(struct Qdisc *q, bool *validate,
83 int *packets)
c716a81a 84{
554794de 85 struct sk_buff *skb = q->gso_skb;
1abbe139 86 const struct netdev_queue *txq = q->dev_queue;
554794de 87
b8358d70 88 *packets = 1;
55a93b3e 89 *validate = true;
ebf05982 90 if (unlikely(skb)) {
ebf05982 91 /* check the reason of requeuing without tx lock first */
10c51b56 92 txq = skb_get_tx_queue(txq->dev, skb);
73466498 93 if (!netif_xmit_frozen_or_stopped(txq)) {
6252352d 94 q->gso_skb = NULL;
bbd8a0d3
KK
95 q->q.qlen--;
96 } else
ebf05982 97 skb = NULL;
55a93b3e
ED
98 /* skb in gso_skb were already validated */
99 *validate = false;
ebf05982 100 } else {
5772e9a3
JDB
101 if (!(q->flags & TCQ_F_ONETXQUEUE) ||
102 !netif_xmit_frozen_or_stopped(txq)) {
1abbe139 103 skb = q->dequeue(q);
5772e9a3 104 if (skb && qdisc_may_bulk(q))
b8358d70 105 try_bulk_dequeue_skb(q, skb, txq, packets);
50cbe9ab 106 }
ebf05982 107 }
c716a81a
JHS
108 return skb;
109}
110
10297b99 111/*
10770bc2
JDB
112 * Transmit possibly several skbs, and handle the return status as
113 * required. Holding the __QDISC___STATE_RUNNING bit guarantees that
114 * only one CPU can execute this function.
6c1361a6
KK
115 *
116 * Returns to the caller:
117 * 0 - queue is empty or throttled.
118 * >0 - queue is not empty.
6c1361a6 119 */
bbd8a0d3
KK
120int sch_direct_xmit(struct sk_buff *skb, struct Qdisc *q,
121 struct net_device *dev, struct netdev_queue *txq,
55a93b3e 122 spinlock_t *root_lock, bool validate)
1da177e4 123{
5f1a485d 124 int ret = NETDEV_TX_BUSY;
7698b4fc
DM
125
126 /* And release qdisc */
127 spin_unlock(root_lock);
c716a81a 128
55a93b3e
ED
129 /* Note that we validate skb (GSO, checksum, ...) outside of locks */
130 if (validate)
131 skb = validate_xmit_skb_list(skb, dev);
572a9d7b 132
3dcd493f 133 if (likely(skb)) {
55a93b3e
ED
134 HARD_TX_LOCK(dev, txq, smp_processor_id());
135 if (!netif_xmit_frozen_or_stopped(txq))
136 skb = dev_hard_start_xmit(skb, dev, txq, &ret);
c716a81a 137
55a93b3e 138 HARD_TX_UNLOCK(dev, txq);
3dcd493f
LP
139 } else {
140 spin_lock(root_lock);
141 return qdisc_qlen(q);
55a93b3e 142 }
7698b4fc 143 spin_lock(root_lock);
c716a81a 144
9a1654ba
JP
145 if (dev_xmit_complete(ret)) {
146 /* Driver sent out skb successfully or skb was consumed */
6c1361a6 147 ret = qdisc_qlen(q);
9a1654ba 148 } else {
6c1361a6 149 /* Driver returned NETDEV_TX_BUSY - requeue skb */
e87cc472
JP
150 if (unlikely(ret != NETDEV_TX_BUSY))
151 net_warn_ratelimited("BUG %s code %d qlen %d\n",
152 dev->name, ret, q->q.qlen);
6c1361a6 153
37437bb2 154 ret = dev_requeue_skb(skb, q);
6c1361a6 155 }
c716a81a 156
73466498 157 if (ret && netif_xmit_frozen_or_stopped(txq))
37437bb2
DM
158 ret = 0;
159
6c1361a6 160 return ret;
1da177e4
LT
161}
162
bbd8a0d3
KK
163/*
164 * NOTE: Called under qdisc_lock(q) with locally disabled BH.
165 *
9bf2b8c2 166 * __QDISC___STATE_RUNNING guarantees only one CPU can process
bbd8a0d3
KK
167 * this qdisc at a time. qdisc_lock(q) serializes queue accesses for
168 * this queue.
169 *
170 * netif_tx_lock serializes accesses to device driver.
171 *
172 * qdisc_lock(q) and netif_tx_lock are mutually exclusive,
173 * if one is grabbed, another must be free.
174 *
175 * Note, that this procedure can be called by a watchdog timer
176 *
177 * Returns to the caller:
178 * 0 - queue is empty or throttled.
179 * >0 - queue is not empty.
180 *
181 */
b8358d70 182static inline int qdisc_restart(struct Qdisc *q, int *packets)
bbd8a0d3
KK
183{
184 struct netdev_queue *txq;
185 struct net_device *dev;
186 spinlock_t *root_lock;
187 struct sk_buff *skb;
55a93b3e 188 bool validate;
bbd8a0d3
KK
189
190 /* Dequeue packet */
b8358d70 191 skb = dequeue_skb(q, &validate, packets);
bbd8a0d3
KK
192 if (unlikely(!skb))
193 return 0;
10c51b56 194
bbd8a0d3
KK
195 root_lock = qdisc_lock(q);
196 dev = qdisc_dev(q);
10c51b56 197 txq = skb_get_tx_queue(dev, skb);
bbd8a0d3 198
55a93b3e 199 return sch_direct_xmit(skb, q, dev, txq, root_lock, validate);
bbd8a0d3
KK
200}
201
37437bb2 202void __qdisc_run(struct Qdisc *q)
48d83325 203{
d5b8aa1d 204 int quota = weight_p;
b8358d70 205 int packets;
2ba2506c 206
b8358d70 207 while (qdisc_restart(q, &packets)) {
2ba2506c 208 /*
d5b8aa1d 209 * Ordered by possible occurrence: Postpone processing if
210 * 1. we've exceeded packet quota
211 * 2. another process needs the CPU;
2ba2506c 212 */
b8358d70
JDB
213 quota -= packets;
214 if (quota <= 0 || need_resched()) {
37437bb2 215 __netif_schedule(q);
d90df3ad 216 break;
2ba2506c
HX
217 }
218 }
48d83325 219
bc135b23 220 qdisc_run_end(q);
48d83325
HX
221}
222
9d21493b
ED
223unsigned long dev_trans_start(struct net_device *dev)
224{
07ce76aa 225 unsigned long val, res;
9d21493b
ED
226 unsigned int i;
227
07ce76aa 228 if (is_vlan_dev(dev))
229 dev = vlan_dev_real_dev(dev);
9b36627a
FW
230 res = netdev_get_tx_queue(dev, 0)->trans_start;
231 for (i = 1; i < dev->num_tx_queues; i++) {
9d21493b
ED
232 val = netdev_get_tx_queue(dev, i)->trans_start;
233 if (val && time_after(val, res))
234 res = val;
235 }
07ce76aa 236
9d21493b
ED
237 return res;
238}
239EXPORT_SYMBOL(dev_trans_start);
240
1da177e4
LT
241static void dev_watchdog(unsigned long arg)
242{
243 struct net_device *dev = (struct net_device *)arg;
244
932ff279 245 netif_tx_lock(dev);
e8a0464c 246 if (!qdisc_tx_is_noop(dev)) {
1da177e4
LT
247 if (netif_device_present(dev) &&
248 netif_running(dev) &&
249 netif_carrier_ok(dev)) {
9d21493b 250 int some_queue_timedout = 0;
e8a0464c 251 unsigned int i;
9d21493b 252 unsigned long trans_start;
e8a0464c
DM
253
254 for (i = 0; i < dev->num_tx_queues; i++) {
255 struct netdev_queue *txq;
256
257 txq = netdev_get_tx_queue(dev, i);
9b36627a 258 trans_start = txq->trans_start;
73466498 259 if (netif_xmit_stopped(txq) &&
9d21493b
ED
260 time_after(jiffies, (trans_start +
261 dev->watchdog_timeo))) {
262 some_queue_timedout = 1;
ccf5ff69 263 txq->trans_timeout++;
e8a0464c
DM
264 break;
265 }
266 }
338f7566 267
9d21493b 268 if (some_queue_timedout) {
9d21493b 269 WARN_ONCE(1, KERN_INFO "NETDEV WATCHDOG: %s (%s): transmit queue %u timed out\n",
3019de12 270 dev->name, netdev_drivername(dev), i);
d314774c 271 dev->netdev_ops->ndo_tx_timeout(dev);
1da177e4 272 }
e8a0464c
DM
273 if (!mod_timer(&dev->watchdog_timer,
274 round_jiffies(jiffies +
275 dev->watchdog_timeo)))
1da177e4
LT
276 dev_hold(dev);
277 }
278 }
932ff279 279 netif_tx_unlock(dev);
1da177e4
LT
280
281 dev_put(dev);
282}
283
1da177e4
LT
284void __netdev_watchdog_up(struct net_device *dev)
285{
d314774c 286 if (dev->netdev_ops->ndo_tx_timeout) {
1da177e4
LT
287 if (dev->watchdog_timeo <= 0)
288 dev->watchdog_timeo = 5*HZ;
60468d5b
VP
289 if (!mod_timer(&dev->watchdog_timer,
290 round_jiffies(jiffies + dev->watchdog_timeo)))
1da177e4
LT
291 dev_hold(dev);
292 }
293}
294
295static void dev_watchdog_up(struct net_device *dev)
296{
1da177e4 297 __netdev_watchdog_up(dev);
1da177e4
LT
298}
299
300static void dev_watchdog_down(struct net_device *dev)
301{
932ff279 302 netif_tx_lock_bh(dev);
1da177e4 303 if (del_timer(&dev->watchdog_timer))
15333061 304 dev_put(dev);
932ff279 305 netif_tx_unlock_bh(dev);
1da177e4
LT
306}
307
bea3348e
SH
308/**
309 * netif_carrier_on - set carrier
310 * @dev: network device
311 *
312 * Device has detected that carrier.
313 */
0a242efc
DV
314void netif_carrier_on(struct net_device *dev)
315{
bfaae0f0 316 if (test_and_clear_bit(__LINK_STATE_NOCARRIER, &dev->state)) {
b4730016
DM
317 if (dev->reg_state == NETREG_UNINITIALIZED)
318 return;
2d3b479d 319 atomic_inc(&dev->carrier_changes);
0a242efc 320 linkwatch_fire_event(dev);
bfaae0f0
JG
321 if (netif_running(dev))
322 __netdev_watchdog_up(dev);
323 }
0a242efc 324}
62e3ba1b 325EXPORT_SYMBOL(netif_carrier_on);
0a242efc 326
bea3348e
SH
327/**
328 * netif_carrier_off - clear carrier
329 * @dev: network device
330 *
331 * Device has detected loss of carrier.
332 */
0a242efc
DV
333void netif_carrier_off(struct net_device *dev)
334{
b4730016
DM
335 if (!test_and_set_bit(__LINK_STATE_NOCARRIER, &dev->state)) {
336 if (dev->reg_state == NETREG_UNINITIALIZED)
337 return;
2d3b479d 338 atomic_inc(&dev->carrier_changes);
0a242efc 339 linkwatch_fire_event(dev);
b4730016 340 }
0a242efc 341}
62e3ba1b 342EXPORT_SYMBOL(netif_carrier_off);
0a242efc 343
1da177e4
LT
344/* "NOOP" scheduler: the best scheduler, recommended for all interfaces
345 under all circumstances. It is difficult to invent anything faster or
346 cheaper.
347 */
348
82d567c2 349static int noop_enqueue(struct sk_buff *skb, struct Qdisc *qdisc)
1da177e4
LT
350{
351 kfree_skb(skb);
352 return NET_XMIT_CN;
353}
354
82d567c2 355static struct sk_buff *noop_dequeue(struct Qdisc *qdisc)
1da177e4
LT
356{
357 return NULL;
358}
359
20fea08b 360struct Qdisc_ops noop_qdisc_ops __read_mostly = {
1da177e4
LT
361 .id = "noop",
362 .priv_size = 0,
363 .enqueue = noop_enqueue,
364 .dequeue = noop_dequeue,
99c0db26 365 .peek = noop_dequeue,
1da177e4
LT
366 .owner = THIS_MODULE,
367};
368
7698b4fc 369static struct netdev_queue noop_netdev_queue = {
7698b4fc 370 .qdisc = &noop_qdisc,
9f3ffae0 371 .qdisc_sleeping = &noop_qdisc,
7698b4fc
DM
372};
373
1da177e4
LT
374struct Qdisc noop_qdisc = {
375 .enqueue = noop_enqueue,
376 .dequeue = noop_dequeue,
377 .flags = TCQ_F_BUILTIN,
10297b99 378 .ops = &noop_qdisc_ops,
1da177e4 379 .list = LIST_HEAD_INIT(noop_qdisc.list),
83874000 380 .q.lock = __SPIN_LOCK_UNLOCKED(noop_qdisc.q.lock),
7698b4fc 381 .dev_queue = &noop_netdev_queue,
7b5edbc4 382 .busylock = __SPIN_LOCK_UNLOCKED(noop_qdisc.busylock),
1da177e4 383};
62e3ba1b 384EXPORT_SYMBOL(noop_qdisc);
1da177e4 385
d66d6c31
PS
386static int noqueue_init(struct Qdisc *qdisc, struct nlattr *opt)
387{
388 /* register_qdisc() assigns a default of noop_enqueue if unset,
389 * but __dev_queue_xmit() treats noqueue only as such
390 * if this is NULL - so clear it here. */
391 qdisc->enqueue = NULL;
392 return 0;
393}
394
395struct Qdisc_ops noqueue_qdisc_ops __read_mostly = {
1da177e4
LT
396 .id = "noqueue",
397 .priv_size = 0,
d66d6c31 398 .init = noqueue_init,
1da177e4
LT
399 .enqueue = noop_enqueue,
400 .dequeue = noop_dequeue,
99c0db26 401 .peek = noop_dequeue,
1da177e4
LT
402 .owner = THIS_MODULE,
403};
404
cc7ec456
ED
405static const u8 prio2band[TC_PRIO_MAX + 1] = {
406 1, 2, 2, 2, 1, 2, 0, 0 , 1, 1, 1, 1, 1, 1, 1, 1
407};
d3678b46
DM
408
409/* 3-band FIFO queue: old style, but should be a bit faster than
410 generic prio+fifo combination.
411 */
412
413#define PFIFO_FAST_BANDS 3
414
fd3ae5e8
KK
415/*
416 * Private data for a pfifo_fast scheduler containing:
417 * - queues for the three band
418 * - bitmap indicating which of the bands contain skbs
419 */
420struct pfifo_fast_priv {
421 u32 bitmap;
422 struct sk_buff_head q[PFIFO_FAST_BANDS];
423};
424
425/*
426 * Convert a bitmap to the first band number where an skb is queued, where:
427 * bitmap=0 means there are no skbs on any band.
428 * bitmap=1 means there is an skb on band 0.
429 * bitmap=7 means there are skbs on all 3 bands, etc.
430 */
431static const int bitmap2band[] = {-1, 0, 1, 0, 2, 0, 1, 0};
432
433static inline struct sk_buff_head *band2list(struct pfifo_fast_priv *priv,
434 int band)
d3678b46 435{
fd3ae5e8 436 return priv->q + band;
d3678b46
DM
437}
438
cc7ec456 439static int pfifo_fast_enqueue(struct sk_buff *skb, struct Qdisc *qdisc)
321090e7 440{
a453e068
KK
441 if (skb_queue_len(&qdisc->q) < qdisc_dev(qdisc)->tx_queue_len) {
442 int band = prio2band[skb->priority & TC_PRIO_MAX];
443 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
444 struct sk_buff_head *list = band2list(priv, band);
1da177e4 445
fd3ae5e8 446 priv->bitmap |= (1 << band);
d3678b46 447 qdisc->q.qlen++;
821d24ae 448 return __qdisc_enqueue_tail(skb, qdisc, list);
d3678b46 449 }
821d24ae
TG
450
451 return qdisc_drop(skb, qdisc);
1da177e4
LT
452}
453
cc7ec456 454static struct sk_buff *pfifo_fast_dequeue(struct Qdisc *qdisc)
1da177e4 455{
fd3ae5e8
KK
456 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
457 int band = bitmap2band[priv->bitmap];
1da177e4 458
fd3ae5e8
KK
459 if (likely(band >= 0)) {
460 struct sk_buff_head *list = band2list(priv, band);
461 struct sk_buff *skb = __qdisc_dequeue_head(qdisc, list);
462
463 qdisc->q.qlen--;
464 if (skb_queue_empty(list))
465 priv->bitmap &= ~(1 << band);
466
467 return skb;
d3678b46 468 }
f87a9c3d 469
1da177e4
LT
470 return NULL;
471}
472
cc7ec456 473static struct sk_buff *pfifo_fast_peek(struct Qdisc *qdisc)
99c0db26 474{
fd3ae5e8
KK
475 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
476 int band = bitmap2band[priv->bitmap];
477
478 if (band >= 0) {
479 struct sk_buff_head *list = band2list(priv, band);
99c0db26 480
fd3ae5e8 481 return skb_peek(list);
99c0db26
JP
482 }
483
484 return NULL;
485}
486
cc7ec456 487static void pfifo_fast_reset(struct Qdisc *qdisc)
1da177e4 488{
d3678b46 489 int prio;
fd3ae5e8 490 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
d3678b46
DM
491
492 for (prio = 0; prio < PFIFO_FAST_BANDS; prio++)
fd3ae5e8 493 __qdisc_reset_queue(qdisc, band2list(priv, prio));
d3678b46 494
fd3ae5e8 495 priv->bitmap = 0;
821d24ae 496 qdisc->qstats.backlog = 0;
d3678b46 497 qdisc->q.qlen = 0;
1da177e4
LT
498}
499
d3678b46
DM
500static int pfifo_fast_dump(struct Qdisc *qdisc, struct sk_buff *skb)
501{
502 struct tc_prio_qopt opt = { .bands = PFIFO_FAST_BANDS };
503
cc7ec456 504 memcpy(&opt.priomap, prio2band, TC_PRIO_MAX + 1);
1b34ec43
DM
505 if (nla_put(skb, TCA_OPTIONS, sizeof(opt), &opt))
506 goto nla_put_failure;
d3678b46
DM
507 return skb->len;
508
509nla_put_failure:
510 return -1;
511}
512
513static int pfifo_fast_init(struct Qdisc *qdisc, struct nlattr *opt)
514{
515 int prio;
fd3ae5e8 516 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
d3678b46
DM
517
518 for (prio = 0; prio < PFIFO_FAST_BANDS; prio++)
ab34f648 519 __skb_queue_head_init(band2list(priv, prio));
d3678b46 520
23624935
ED
521 /* Can by-pass the queue discipline */
522 qdisc->flags |= TCQ_F_CAN_BYPASS;
d3678b46
DM
523 return 0;
524}
525
6ec1c69a 526struct Qdisc_ops pfifo_fast_ops __read_mostly = {
d3678b46 527 .id = "pfifo_fast",
fd3ae5e8 528 .priv_size = sizeof(struct pfifo_fast_priv),
d3678b46
DM
529 .enqueue = pfifo_fast_enqueue,
530 .dequeue = pfifo_fast_dequeue,
99c0db26 531 .peek = pfifo_fast_peek,
d3678b46
DM
532 .init = pfifo_fast_init,
533 .reset = pfifo_fast_reset,
534 .dump = pfifo_fast_dump,
1da177e4
LT
535 .owner = THIS_MODULE,
536};
1f27cde3 537EXPORT_SYMBOL(pfifo_fast_ops);
1da177e4 538
23d3b8bf
ED
539static struct lock_class_key qdisc_tx_busylock;
540
5ce2d488 541struct Qdisc *qdisc_alloc(struct netdev_queue *dev_queue,
d2a7f269 542 const struct Qdisc_ops *ops)
1da177e4
LT
543{
544 void *p;
545 struct Qdisc *sch;
d276055c 546 unsigned int size = QDISC_ALIGN(sizeof(*sch)) + ops->priv_size;
3d54b82f 547 int err = -ENOBUFS;
23d3b8bf 548 struct net_device *dev = dev_queue->dev;
1da177e4 549
f2cd2d3e
ED
550 p = kzalloc_node(size, GFP_KERNEL,
551 netdev_queue_numa_node_read(dev_queue));
552
1da177e4 553 if (!p)
3d54b82f 554 goto errout;
3d54b82f 555 sch = (struct Qdisc *) QDISC_ALIGN((unsigned long) p);
d276055c
ED
556 /* if we got non aligned memory, ask more and do alignment ourself */
557 if (sch != p) {
558 kfree(p);
559 p = kzalloc_node(size + QDISC_ALIGNTO - 1, GFP_KERNEL,
560 netdev_queue_numa_node_read(dev_queue));
561 if (!p)
562 goto errout;
563 sch = (struct Qdisc *) QDISC_ALIGN((unsigned long) p);
564 sch->padded = (char *) sch - (char *) p;
565 }
1da177e4
LT
566 INIT_LIST_HEAD(&sch->list);
567 skb_queue_head_init(&sch->q);
23d3b8bf 568
79640a4c 569 spin_lock_init(&sch->busylock);
23d3b8bf
ED
570 lockdep_set_class(&sch->busylock,
571 dev->qdisc_tx_busylock ?: &qdisc_tx_busylock);
572
1da177e4
LT
573 sch->ops = ops;
574 sch->enqueue = ops->enqueue;
575 sch->dequeue = ops->dequeue;
bb949fbd 576 sch->dev_queue = dev_queue;
23d3b8bf 577 dev_hold(dev);
1da177e4 578 atomic_set(&sch->refcnt, 1);
3d54b82f
TG
579
580 return sch;
581errout:
01e123d7 582 return ERR_PTR(err);
3d54b82f
TG
583}
584
3511c913 585struct Qdisc *qdisc_create_dflt(struct netdev_queue *dev_queue,
d2a7f269 586 const struct Qdisc_ops *ops,
587 unsigned int parentid)
3d54b82f
TG
588{
589 struct Qdisc *sch;
10297b99 590
6da7c8fc 591 if (!try_module_get(ops->owner))
592 goto errout;
593
5ce2d488 594 sch = qdisc_alloc(dev_queue, ops);
3d54b82f
TG
595 if (IS_ERR(sch))
596 goto errout;
9f9afec4 597 sch->parent = parentid;
3d54b82f 598
1da177e4
LT
599 if (!ops->init || ops->init(sch, NULL) == 0)
600 return sch;
601
0fbbeb1b 602 qdisc_destroy(sch);
3d54b82f 603errout:
1da177e4
LT
604 return NULL;
605}
62e3ba1b 606EXPORT_SYMBOL(qdisc_create_dflt);
1da177e4 607
5fb66229 608/* Under qdisc_lock(qdisc) and BH! */
1da177e4
LT
609
610void qdisc_reset(struct Qdisc *qdisc)
611{
20fea08b 612 const struct Qdisc_ops *ops = qdisc->ops;
1da177e4
LT
613
614 if (ops->reset)
615 ops->reset(qdisc);
67305ebc 616
bbd8a0d3 617 if (qdisc->gso_skb) {
3f3c7eec 618 kfree_skb_list(qdisc->gso_skb);
bbd8a0d3
KK
619 qdisc->gso_skb = NULL;
620 qdisc->q.qlen = 0;
621 }
1da177e4 622}
62e3ba1b 623EXPORT_SYMBOL(qdisc_reset);
1da177e4 624
5d944c64
ED
625static void qdisc_rcu_free(struct rcu_head *head)
626{
627 struct Qdisc *qdisc = container_of(head, struct Qdisc, rcu_head);
628
73c20a8b 629 if (qdisc_is_percpu_stats(qdisc)) {
22e0f8b9 630 free_percpu(qdisc->cpu_bstats);
73c20a8b
JF
631 free_percpu(qdisc->cpu_qstats);
632 }
22e0f8b9 633
5d944c64
ED
634 kfree((char *) qdisc - qdisc->padded);
635}
636
1e0d5a57 637void qdisc_destroy(struct Qdisc *qdisc)
1da177e4 638{
8a34c5dc
DM
639 const struct Qdisc_ops *ops = qdisc->ops;
640
1e0d5a57
DM
641 if (qdisc->flags & TCQ_F_BUILTIN ||
642 !atomic_dec_and_test(&qdisc->refcnt))
643 return;
644
3a682fbd 645#ifdef CONFIG_NET_SCHED
f6e0b239
JP
646 qdisc_list_del(qdisc);
647
a2da570d 648 qdisc_put_stab(rtnl_dereference(qdisc->stab));
3a682fbd 649#endif
8a34c5dc
DM
650 gen_kill_estimator(&qdisc->bstats, &qdisc->rate_est);
651 if (ops->reset)
652 ops->reset(qdisc);
653 if (ops->destroy)
654 ops->destroy(qdisc);
655
656 module_put(ops->owner);
657 dev_put(qdisc_dev(qdisc));
658
3f3c7eec 659 kfree_skb_list(qdisc->gso_skb);
5d944c64
ED
660 /*
661 * gen_estimator est_timer() might access qdisc->q.lock,
662 * wait a RCU grace period before freeing qdisc.
663 */
664 call_rcu(&qdisc->rcu_head, qdisc_rcu_free);
1da177e4 665}
62e3ba1b 666EXPORT_SYMBOL(qdisc_destroy);
1da177e4 667
589983cd
PM
668/* Attach toplevel qdisc to device queue. */
669struct Qdisc *dev_graft_qdisc(struct netdev_queue *dev_queue,
670 struct Qdisc *qdisc)
671{
672 struct Qdisc *oqdisc = dev_queue->qdisc_sleeping;
673 spinlock_t *root_lock;
674
675 root_lock = qdisc_lock(oqdisc);
676 spin_lock_bh(root_lock);
677
678 /* Prune old scheduler */
679 if (oqdisc && atomic_read(&oqdisc->refcnt) <= 1)
680 qdisc_reset(oqdisc);
681
682 /* ... and graft new one */
683 if (qdisc == NULL)
684 qdisc = &noop_qdisc;
685 dev_queue->qdisc_sleeping = qdisc;
686 rcu_assign_pointer(dev_queue->qdisc, &noop_qdisc);
687
688 spin_unlock_bh(root_lock);
689
690 return oqdisc;
691}
b8970f0b 692EXPORT_SYMBOL(dev_graft_qdisc);
589983cd 693
e8a0464c
DM
694static void attach_one_default_qdisc(struct net_device *dev,
695 struct netdev_queue *dev_queue,
696 void *_unused)
697{
3e692f21
PS
698 struct Qdisc *qdisc;
699 const struct Qdisc_ops *ops = default_qdisc_ops;
e8a0464c 700
3e692f21
PS
701 if (dev->priv_flags & IFF_NO_QUEUE)
702 ops = &noqueue_qdisc_ops;
703
704 qdisc = qdisc_create_dflt(dev_queue, ops, TC_H_ROOT);
705 if (!qdisc) {
706 netdev_info(dev, "activation failed\n");
707 return;
e8a0464c 708 }
3e692f21 709 if (!netif_is_multiqueue(dev))
4eaf3b84 710 qdisc->flags |= TCQ_F_ONETXQUEUE | TCQ_F_NOPARENT;
e8a0464c
DM
711 dev_queue->qdisc_sleeping = qdisc;
712}
713
6ec1c69a
DM
714static void attach_default_qdiscs(struct net_device *dev)
715{
716 struct netdev_queue *txq;
717 struct Qdisc *qdisc;
718
719 txq = netdev_get_tx_queue(dev, 0);
720
4b469955 721 if (!netif_is_multiqueue(dev) ||
4b469955 722 dev->priv_flags & IFF_NO_QUEUE) {
6ec1c69a
DM
723 netdev_for_each_tx_queue(dev, attach_one_default_qdisc, NULL);
724 dev->qdisc = txq->qdisc_sleeping;
725 atomic_inc(&dev->qdisc->refcnt);
726 } else {
3511c913 727 qdisc = qdisc_create_dflt(txq, &mq_qdisc_ops, TC_H_ROOT);
6ec1c69a 728 if (qdisc) {
6ec1c69a 729 dev->qdisc = qdisc;
e57a784d 730 qdisc->ops->attach(qdisc);
6ec1c69a
DM
731 }
732 }
733}
734
e8a0464c
DM
735static void transition_one_qdisc(struct net_device *dev,
736 struct netdev_queue *dev_queue,
737 void *_need_watchdog)
738{
83874000 739 struct Qdisc *new_qdisc = dev_queue->qdisc_sleeping;
e8a0464c
DM
740 int *need_watchdog_p = _need_watchdog;
741
a9312ae8
DM
742 if (!(new_qdisc->flags & TCQ_F_BUILTIN))
743 clear_bit(__QDISC_STATE_DEACTIVATED, &new_qdisc->state);
744
83874000 745 rcu_assign_pointer(dev_queue->qdisc, new_qdisc);
3e692f21 746 if (need_watchdog_p) {
9d21493b 747 dev_queue->trans_start = 0;
e8a0464c 748 *need_watchdog_p = 1;
9d21493b 749 }
e8a0464c
DM
750}
751
1da177e4
LT
752void dev_activate(struct net_device *dev)
753{
e8a0464c 754 int need_watchdog;
b0e1e646 755
1da177e4 756 /* No queueing discipline is attached to device;
6da7c8fc 757 * create default one for devices, which need queueing
758 * and noqueue_qdisc for virtual interfaces
1da177e4
LT
759 */
760
6ec1c69a
DM
761 if (dev->qdisc == &noop_qdisc)
762 attach_default_qdiscs(dev);
af356afa 763
cacaddf5
TC
764 if (!netif_carrier_ok(dev))
765 /* Delay activation until next carrier-on event */
766 return;
767
e8a0464c
DM
768 need_watchdog = 0;
769 netdev_for_each_tx_queue(dev, transition_one_qdisc, &need_watchdog);
24824a09
ED
770 if (dev_ingress_queue(dev))
771 transition_one_qdisc(dev, dev_ingress_queue(dev), NULL);
e8a0464c
DM
772
773 if (need_watchdog) {
860e9538 774 netif_trans_update(dev);
1da177e4
LT
775 dev_watchdog_up(dev);
776 }
b0e1e646 777}
b8970f0b 778EXPORT_SYMBOL(dev_activate);
b0e1e646 779
e8a0464c
DM
780static void dev_deactivate_queue(struct net_device *dev,
781 struct netdev_queue *dev_queue,
782 void *_qdisc_default)
b0e1e646 783{
e8a0464c 784 struct Qdisc *qdisc_default = _qdisc_default;
970565bb 785 struct Qdisc *qdisc;
970565bb 786
46e5da40 787 qdisc = rtnl_dereference(dev_queue->qdisc);
b0e1e646 788 if (qdisc) {
83874000
DM
789 spin_lock_bh(qdisc_lock(qdisc));
790
a9312ae8
DM
791 if (!(qdisc->flags & TCQ_F_BUILTIN))
792 set_bit(__QDISC_STATE_DEACTIVATED, &qdisc->state);
793
f7a54c13 794 rcu_assign_pointer(dev_queue->qdisc, qdisc_default);
b0e1e646 795 qdisc_reset(qdisc);
d3b753db 796
83874000 797 spin_unlock_bh(qdisc_lock(qdisc));
b0e1e646 798 }
1da177e4
LT
799}
800
4335cd2d 801static bool some_qdisc_is_busy(struct net_device *dev)
e8a0464c
DM
802{
803 unsigned int i;
804
805 for (i = 0; i < dev->num_tx_queues; i++) {
806 struct netdev_queue *dev_queue;
7698b4fc 807 spinlock_t *root_lock;
e2627c8c 808 struct Qdisc *q;
e8a0464c
DM
809 int val;
810
811 dev_queue = netdev_get_tx_queue(dev, i);
b9a3b110 812 q = dev_queue->qdisc_sleeping;
5fb66229 813 root_lock = qdisc_lock(q);
e8a0464c 814
4335cd2d 815 spin_lock_bh(root_lock);
e8a0464c 816
bc135b23 817 val = (qdisc_is_running(q) ||
b9a3b110 818 test_bit(__QDISC_STATE_SCHED, &q->state));
e8a0464c 819
4335cd2d 820 spin_unlock_bh(root_lock);
e8a0464c
DM
821
822 if (val)
823 return true;
824 }
825 return false;
826}
827
3137663d
ED
828/**
829 * dev_deactivate_many - deactivate transmissions on several devices
830 * @head: list of devices to deactivate
831 *
832 * This function returns only when all outstanding transmissions
833 * have completed, unless all devices are in dismantle phase.
834 */
44345724 835void dev_deactivate_many(struct list_head *head)
1da177e4 836{
44345724 837 struct net_device *dev;
3137663d 838 bool sync_needed = false;
41a23b07 839
5cde2829 840 list_for_each_entry(dev, head, close_list) {
44345724
OP
841 netdev_for_each_tx_queue(dev, dev_deactivate_queue,
842 &noop_qdisc);
843 if (dev_ingress_queue(dev))
844 dev_deactivate_queue(dev, dev_ingress_queue(dev),
845 &noop_qdisc);
846
847 dev_watchdog_down(dev);
3137663d 848 sync_needed |= !dev->dismantle;
44345724 849 }
1da177e4 850
3137663d
ED
851 /* Wait for outstanding qdisc-less dev_queue_xmit calls.
852 * This is avoided if all devices are in dismantle phase :
853 * Caller will call synchronize_net() for us
854 */
855 if (sync_needed)
856 synchronize_net();
1da177e4 857
d4828d85 858 /* Wait for outstanding qdisc_run calls. */
5cde2829 859 list_for_each_entry(dev, head, close_list)
44345724
OP
860 while (some_qdisc_is_busy(dev))
861 yield();
862}
863
864void dev_deactivate(struct net_device *dev)
865{
866 LIST_HEAD(single);
867
5cde2829 868 list_add(&dev->close_list, &single);
44345724 869 dev_deactivate_many(&single);
5f04d506 870 list_del(&single);
1da177e4 871}
b8970f0b 872EXPORT_SYMBOL(dev_deactivate);
1da177e4 873
b0e1e646
DM
874static void dev_init_scheduler_queue(struct net_device *dev,
875 struct netdev_queue *dev_queue,
e8a0464c 876 void *_qdisc)
b0e1e646 877{
e8a0464c
DM
878 struct Qdisc *qdisc = _qdisc;
879
46e5da40 880 rcu_assign_pointer(dev_queue->qdisc, qdisc);
b0e1e646 881 dev_queue->qdisc_sleeping = qdisc;
b0e1e646
DM
882}
883
1da177e4
LT
884void dev_init_scheduler(struct net_device *dev)
885{
af356afa 886 dev->qdisc = &noop_qdisc;
e8a0464c 887 netdev_for_each_tx_queue(dev, dev_init_scheduler_queue, &noop_qdisc);
24824a09
ED
888 if (dev_ingress_queue(dev))
889 dev_init_scheduler_queue(dev, dev_ingress_queue(dev), &noop_qdisc);
1da177e4 890
b24b8a24 891 setup_timer(&dev->watchdog_timer, dev_watchdog, (unsigned long)dev);
1da177e4
LT
892}
893
e8a0464c
DM
894static void shutdown_scheduler_queue(struct net_device *dev,
895 struct netdev_queue *dev_queue,
896 void *_qdisc_default)
1da177e4 897{
b0e1e646 898 struct Qdisc *qdisc = dev_queue->qdisc_sleeping;
e8a0464c 899 struct Qdisc *qdisc_default = _qdisc_default;
b0e1e646
DM
900
901 if (qdisc) {
f7a54c13 902 rcu_assign_pointer(dev_queue->qdisc, qdisc_default);
b0e1e646 903 dev_queue->qdisc_sleeping = qdisc_default;
1da177e4 904
1da177e4 905 qdisc_destroy(qdisc);
10297b99 906 }
b0e1e646
DM
907}
908
909void dev_shutdown(struct net_device *dev)
910{
e8a0464c 911 netdev_for_each_tx_queue(dev, shutdown_scheduler_queue, &noop_qdisc);
24824a09
ED
912 if (dev_ingress_queue(dev))
913 shutdown_scheduler_queue(dev, dev_ingress_queue(dev), &noop_qdisc);
af356afa
PM
914 qdisc_destroy(dev->qdisc);
915 dev->qdisc = &noop_qdisc;
916
547b792c 917 WARN_ON(timer_pending(&dev->watchdog_timer));
1da177e4 918}
292f1c7f 919
01cb71d2 920void psched_ratecfg_precompute(struct psched_ratecfg *r,
3e1e3aae
ED
921 const struct tc_ratespec *conf,
922 u64 rate64)
292f1c7f 923{
01cb71d2
ED
924 memset(r, 0, sizeof(*r));
925 r->overhead = conf->overhead;
3e1e3aae 926 r->rate_bytes_ps = max_t(u64, conf->rate, rate64);
8a8e3d84 927 r->linklayer = (conf->linklayer & TC_LINKLAYER_MASK);
292f1c7f
JP
928 r->mult = 1;
929 /*
130d3d68
ED
930 * The deal here is to replace a divide by a reciprocal one
931 * in fast path (a reciprocal divide is a multiply and a shift)
932 *
933 * Normal formula would be :
934 * time_in_ns = (NSEC_PER_SEC * len) / rate_bps
935 *
936 * We compute mult/shift to use instead :
937 * time_in_ns = (len * mult) >> shift;
938 *
939 * We try to get the highest possible mult value for accuracy,
940 * but have to make sure no overflows will ever happen.
292f1c7f 941 */
130d3d68
ED
942 if (r->rate_bytes_ps > 0) {
943 u64 factor = NSEC_PER_SEC;
944
945 for (;;) {
946 r->mult = div64_u64(factor, r->rate_bytes_ps);
947 if (r->mult & (1U << 31) || factor & (1ULL << 63))
292f1c7f 948 break;
130d3d68
ED
949 factor <<= 1;
950 r->shift++;
292f1c7f 951 }
292f1c7f
JP
952 }
953}
954EXPORT_SYMBOL(psched_ratecfg_precompute);