2 * net/sched/sch_generic.c Generic packet scheduler routines.
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.
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 * Jamal Hadi Salim, <hadi@cyberus.ca> 990601
14 #include <linux/bitops.h>
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>
20 #include <linux/errno.h>
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>
27 #include <net/pkt_sched.h>
29 /* Main transmission queue. */
31 /* Modifications to data participating in scheduling must be protected with
32 * dev->queue_lock spinlock.
34 * The idea is the following:
35 * - enqueue, dequeue are serialized via top level device
36 * spinlock dev->queue_lock.
37 * - ingress filtering is serialized via top level device
38 * spinlock dev->ingress_lock.
39 * - updates to tree and tree walking are only done under the rtnl mutex.
42 void qdisc_lock_tree(struct net_device
*dev
)
44 spin_lock_bh(&dev
->queue_lock
);
45 spin_lock(&dev
->ingress_lock
);
48 void qdisc_unlock_tree(struct net_device
*dev
)
50 spin_unlock(&dev
->ingress_lock
);
51 spin_unlock_bh(&dev
->queue_lock
);
54 static inline int qdisc_qlen(struct Qdisc
*q
)
59 static inline int dev_requeue_skb(struct sk_buff
*skb
, struct net_device
*dev
,
62 if (unlikely(skb
->next
))
65 q
->ops
->requeue(skb
, q
);
71 static inline struct sk_buff
*dev_dequeue_skb(struct net_device
*dev
,
76 if ((skb
= dev
->gso_skb
))
84 static inline int handle_dev_cpu_collision(struct sk_buff
*skb
,
85 struct net_device
*dev
,
90 if (unlikely(dev
->xmit_lock_owner
== smp_processor_id())) {
92 * Same CPU holding the lock. It may be a transient
93 * configuration error, when hard_start_xmit() recurses. We
94 * detect it by checking xmit owner and drop the packet when
95 * deadloop is detected. Return OK to try the next skb.
99 printk(KERN_WARNING
"Dead loop on netdevice %s, "
100 "fix it urgently!\n", dev
->name
);
104 * Another cpu is holding lock, requeue & delay xmits for
107 __get_cpu_var(netdev_rx_stat
).cpu_collision
++;
108 ret
= dev_requeue_skb(skb
, dev
, q
);
115 * NOTE: Called under dev->queue_lock with locally disabled BH.
117 * __LINK_STATE_QDISC_RUNNING guarantees only one CPU can process this
118 * device at a time. dev->queue_lock serializes queue accesses for
119 * this device AND dev->qdisc pointer itself.
121 * netif_tx_lock serializes accesses to device driver.
123 * dev->queue_lock and netif_tx_lock are mutually exclusive,
124 * if one is grabbed, another must be free.
126 * Note, that this procedure can be called by a watchdog timer
128 * Returns to the caller:
129 * 0 - queue is empty or throttled.
130 * >0 - queue is not empty.
133 static inline int qdisc_restart(struct net_device
*dev
)
135 struct Qdisc
*q
= dev
->qdisc
;
140 if (unlikely((skb
= dev_dequeue_skb(dev
, q
)) == NULL
))
144 /* And release queue */
145 spin_unlock(&dev
->queue_lock
);
147 HARD_TX_LOCK(dev
, smp_processor_id());
148 ret
= dev_hard_start_xmit(skb
, dev
);
151 spin_lock(&dev
->queue_lock
);
156 /* Driver sent out skb successfully */
160 case NETDEV_TX_LOCKED
:
161 /* Driver try lock failed */
162 ret
= handle_dev_cpu_collision(skb
, dev
, q
);
166 /* Driver returned NETDEV_TX_BUSY - requeue skb */
167 if (unlikely (ret
!= NETDEV_TX_BUSY
&& net_ratelimit()))
168 printk(KERN_WARNING
"BUG %s code %d qlen %d\n",
169 dev
->name
, ret
, q
->q
.qlen
);
171 ret
= dev_requeue_skb(skb
, dev
, q
);
178 void __qdisc_run(struct net_device
*dev
)
181 if (!qdisc_restart(dev
))
183 } while (!netif_queue_stopped(dev
));
185 clear_bit(__LINK_STATE_QDISC_RUNNING
, &dev
->state
);
188 static void dev_watchdog(unsigned long arg
)
190 struct net_device
*dev
= (struct net_device
*)arg
;
193 if (dev
->qdisc
!= &noop_qdisc
) {
194 if (netif_device_present(dev
) &&
195 netif_running(dev
) &&
196 netif_carrier_ok(dev
)) {
197 if (netif_queue_stopped(dev
) &&
198 time_after(jiffies
, dev
->trans_start
+ dev
->watchdog_timeo
)) {
200 printk(KERN_INFO
"NETDEV WATCHDOG: %s: transmit timed out\n",
202 dev
->tx_timeout(dev
);
204 if (!mod_timer(&dev
->watchdog_timer
, round_jiffies(jiffies
+ dev
->watchdog_timeo
)))
208 netif_tx_unlock(dev
);
213 static void dev_watchdog_init(struct net_device
*dev
)
215 init_timer(&dev
->watchdog_timer
);
216 dev
->watchdog_timer
.data
= (unsigned long)dev
;
217 dev
->watchdog_timer
.function
= dev_watchdog
;
220 void __netdev_watchdog_up(struct net_device
*dev
)
222 if (dev
->tx_timeout
) {
223 if (dev
->watchdog_timeo
<= 0)
224 dev
->watchdog_timeo
= 5*HZ
;
225 if (!mod_timer(&dev
->watchdog_timer
,
226 round_jiffies(jiffies
+ dev
->watchdog_timeo
)))
231 static void dev_watchdog_up(struct net_device
*dev
)
233 __netdev_watchdog_up(dev
);
236 static void dev_watchdog_down(struct net_device
*dev
)
238 netif_tx_lock_bh(dev
);
239 if (del_timer(&dev
->watchdog_timer
))
241 netif_tx_unlock_bh(dev
);
245 * netif_carrier_on - set carrier
246 * @dev: network device
248 * Device has detected that carrier.
250 void netif_carrier_on(struct net_device
*dev
)
252 if (test_and_clear_bit(__LINK_STATE_NOCARRIER
, &dev
->state
)) {
253 linkwatch_fire_event(dev
);
254 if (netif_running(dev
))
255 __netdev_watchdog_up(dev
);
260 * netif_carrier_off - clear carrier
261 * @dev: network device
263 * Device has detected loss of carrier.
265 void netif_carrier_off(struct net_device
*dev
)
267 if (!test_and_set_bit(__LINK_STATE_NOCARRIER
, &dev
->state
))
268 linkwatch_fire_event(dev
);
271 /* "NOOP" scheduler: the best scheduler, recommended for all interfaces
272 under all circumstances. It is difficult to invent anything faster or
276 static int noop_enqueue(struct sk_buff
*skb
, struct Qdisc
* qdisc
)
282 static struct sk_buff
*noop_dequeue(struct Qdisc
* qdisc
)
287 static int noop_requeue(struct sk_buff
*skb
, struct Qdisc
* qdisc
)
290 printk(KERN_DEBUG
"%s deferred output. It is buggy.\n",
296 struct Qdisc_ops noop_qdisc_ops
= {
299 .enqueue
= noop_enqueue
,
300 .dequeue
= noop_dequeue
,
301 .requeue
= noop_requeue
,
302 .owner
= THIS_MODULE
,
305 struct Qdisc noop_qdisc
= {
306 .enqueue
= noop_enqueue
,
307 .dequeue
= noop_dequeue
,
308 .flags
= TCQ_F_BUILTIN
,
309 .ops
= &noop_qdisc_ops
,
310 .list
= LIST_HEAD_INIT(noop_qdisc
.list
),
313 static struct Qdisc_ops noqueue_qdisc_ops
= {
316 .enqueue
= noop_enqueue
,
317 .dequeue
= noop_dequeue
,
318 .requeue
= noop_requeue
,
319 .owner
= THIS_MODULE
,
322 static struct Qdisc noqueue_qdisc
= {
324 .dequeue
= noop_dequeue
,
325 .flags
= TCQ_F_BUILTIN
,
326 .ops
= &noqueue_qdisc_ops
,
327 .list
= LIST_HEAD_INIT(noqueue_qdisc
.list
),
331 static const u8 prio2band
[TC_PRIO_MAX
+1] =
332 { 1, 2, 2, 2, 1, 2, 0, 0 , 1, 1, 1, 1, 1, 1, 1, 1 };
334 /* 3-band FIFO queue: old style, but should be a bit faster than
335 generic prio+fifo combination.
338 #define PFIFO_FAST_BANDS 3
340 static inline struct sk_buff_head
*prio2list(struct sk_buff
*skb
,
343 struct sk_buff_head
*list
= qdisc_priv(qdisc
);
344 return list
+ prio2band
[skb
->priority
& TC_PRIO_MAX
];
347 static int pfifo_fast_enqueue(struct sk_buff
*skb
, struct Qdisc
* qdisc
)
349 struct sk_buff_head
*list
= prio2list(skb
, qdisc
);
351 if (skb_queue_len(list
) < qdisc
->dev
->tx_queue_len
) {
353 return __qdisc_enqueue_tail(skb
, qdisc
, list
);
356 return qdisc_drop(skb
, qdisc
);
359 static struct sk_buff
*pfifo_fast_dequeue(struct Qdisc
* qdisc
)
362 struct sk_buff_head
*list
= qdisc_priv(qdisc
);
364 for (prio
= 0; prio
< PFIFO_FAST_BANDS
; prio
++) {
365 if (!skb_queue_empty(list
+ prio
)) {
367 return __qdisc_dequeue_head(qdisc
, list
+ prio
);
374 static int pfifo_fast_requeue(struct sk_buff
*skb
, struct Qdisc
* qdisc
)
377 return __qdisc_requeue(skb
, qdisc
, prio2list(skb
, qdisc
));
380 static void pfifo_fast_reset(struct Qdisc
* qdisc
)
383 struct sk_buff_head
*list
= qdisc_priv(qdisc
);
385 for (prio
= 0; prio
< PFIFO_FAST_BANDS
; prio
++)
386 __qdisc_reset_queue(qdisc
, list
+ prio
);
388 qdisc
->qstats
.backlog
= 0;
392 static int pfifo_fast_dump(struct Qdisc
*qdisc
, struct sk_buff
*skb
)
394 struct tc_prio_qopt opt
= { .bands
= PFIFO_FAST_BANDS
};
396 memcpy(&opt
.priomap
, prio2band
, TC_PRIO_MAX
+1);
397 RTA_PUT(skb
, TCA_OPTIONS
, sizeof(opt
), &opt
);
404 static int pfifo_fast_init(struct Qdisc
*qdisc
, struct rtattr
*opt
)
407 struct sk_buff_head
*list
= qdisc_priv(qdisc
);
409 for (prio
= 0; prio
< PFIFO_FAST_BANDS
; prio
++)
410 skb_queue_head_init(list
+ prio
);
415 static struct Qdisc_ops pfifo_fast_ops
= {
417 .priv_size
= PFIFO_FAST_BANDS
* sizeof(struct sk_buff_head
),
418 .enqueue
= pfifo_fast_enqueue
,
419 .dequeue
= pfifo_fast_dequeue
,
420 .requeue
= pfifo_fast_requeue
,
421 .init
= pfifo_fast_init
,
422 .reset
= pfifo_fast_reset
,
423 .dump
= pfifo_fast_dump
,
424 .owner
= THIS_MODULE
,
427 struct Qdisc
*qdisc_alloc(struct net_device
*dev
, struct Qdisc_ops
*ops
)
434 /* ensure that the Qdisc and the private data are 32-byte aligned */
435 size
= QDISC_ALIGN(sizeof(*sch
));
436 size
+= ops
->priv_size
+ (QDISC_ALIGNTO
- 1);
438 p
= kzalloc(size
, GFP_KERNEL
);
441 sch
= (struct Qdisc
*) QDISC_ALIGN((unsigned long) p
);
442 sch
->padded
= (char *) sch
- (char *) p
;
444 INIT_LIST_HEAD(&sch
->list
);
445 skb_queue_head_init(&sch
->q
);
447 sch
->enqueue
= ops
->enqueue
;
448 sch
->dequeue
= ops
->dequeue
;
451 atomic_set(&sch
->refcnt
, 1);
455 return ERR_PTR(-err
);
458 struct Qdisc
* qdisc_create_dflt(struct net_device
*dev
, struct Qdisc_ops
*ops
,
459 unsigned int parentid
)
463 sch
= qdisc_alloc(dev
, ops
);
466 sch
->stats_lock
= &dev
->queue_lock
;
467 sch
->parent
= parentid
;
469 if (!ops
->init
|| ops
->init(sch
, NULL
) == 0)
477 /* Under dev->queue_lock and BH! */
479 void qdisc_reset(struct Qdisc
*qdisc
)
481 struct Qdisc_ops
*ops
= qdisc
->ops
;
487 /* this is the rcu callback function to clean up a qdisc when there
488 * are no further references to it */
490 static void __qdisc_destroy(struct rcu_head
*head
)
492 struct Qdisc
*qdisc
= container_of(head
, struct Qdisc
, q_rcu
);
493 kfree((char *) qdisc
- qdisc
->padded
);
496 /* Under dev->queue_lock and BH! */
498 void qdisc_destroy(struct Qdisc
*qdisc
)
500 struct Qdisc_ops
*ops
= qdisc
->ops
;
502 if (qdisc
->flags
& TCQ_F_BUILTIN
||
503 !atomic_dec_and_test(&qdisc
->refcnt
))
506 list_del(&qdisc
->list
);
507 gen_kill_estimator(&qdisc
->bstats
, &qdisc
->rate_est
);
513 module_put(ops
->owner
);
515 call_rcu(&qdisc
->q_rcu
, __qdisc_destroy
);
518 void dev_activate(struct net_device
*dev
)
520 /* No queueing discipline is attached to device;
521 create default one i.e. pfifo_fast for devices,
522 which need queueing and noqueue_qdisc for
526 if (dev
->qdisc_sleeping
== &noop_qdisc
) {
528 if (dev
->tx_queue_len
) {
529 qdisc
= qdisc_create_dflt(dev
, &pfifo_fast_ops
,
532 printk(KERN_INFO
"%s: activation failed\n", dev
->name
);
535 list_add_tail(&qdisc
->list
, &dev
->qdisc_list
);
537 qdisc
= &noqueue_qdisc
;
539 dev
->qdisc_sleeping
= qdisc
;
542 if (!netif_carrier_ok(dev
))
543 /* Delay activation until next carrier-on event */
546 spin_lock_bh(&dev
->queue_lock
);
547 rcu_assign_pointer(dev
->qdisc
, dev
->qdisc_sleeping
);
548 if (dev
->qdisc
!= &noqueue_qdisc
) {
549 dev
->trans_start
= jiffies
;
550 dev_watchdog_up(dev
);
552 spin_unlock_bh(&dev
->queue_lock
);
555 void dev_deactivate(struct net_device
*dev
)
561 spin_lock_bh(&dev
->queue_lock
);
563 dev
->qdisc
= &noop_qdisc
;
569 spin_unlock_bh(&dev
->queue_lock
);
573 dev_watchdog_down(dev
);
575 /* Wait for outstanding qdisc-less dev_queue_xmit calls. */
578 /* Wait for outstanding qdisc_run calls. */
580 while (test_bit(__LINK_STATE_QDISC_RUNNING
, &dev
->state
))
584 * Double-check inside queue lock to ensure that all effects
585 * of the queue run are visible when we return.
587 spin_lock_bh(&dev
->queue_lock
);
588 running
= test_bit(__LINK_STATE_QDISC_RUNNING
, &dev
->state
);
589 spin_unlock_bh(&dev
->queue_lock
);
592 * The running flag should never be set at this point because
593 * we've already set dev->qdisc to noop_qdisc *inside* the same
594 * pair of spin locks. That is, if any qdisc_run starts after
595 * our initial test it should see the noop_qdisc and then
596 * clear the RUNNING bit before dropping the queue lock. So
597 * if it is set here then we've found a bug.
599 } while (WARN_ON_ONCE(running
));
602 void dev_init_scheduler(struct net_device
*dev
)
604 qdisc_lock_tree(dev
);
605 dev
->qdisc
= &noop_qdisc
;
606 dev
->qdisc_sleeping
= &noop_qdisc
;
607 INIT_LIST_HEAD(&dev
->qdisc_list
);
608 qdisc_unlock_tree(dev
);
610 dev_watchdog_init(dev
);
613 void dev_shutdown(struct net_device
*dev
)
617 qdisc_lock_tree(dev
);
618 qdisc
= dev
->qdisc_sleeping
;
619 dev
->qdisc
= &noop_qdisc
;
620 dev
->qdisc_sleeping
= &noop_qdisc
;
621 qdisc_destroy(qdisc
);
622 #if defined(CONFIG_NET_SCH_INGRESS) || defined(CONFIG_NET_SCH_INGRESS_MODULE)
623 if ((qdisc
= dev
->qdisc_ingress
) != NULL
) {
624 dev
->qdisc_ingress
= NULL
;
625 qdisc_destroy(qdisc
);
628 BUG_TRAP(!timer_pending(&dev
->watchdog_timer
));
629 qdisc_unlock_tree(dev
);
632 EXPORT_SYMBOL(netif_carrier_on
);
633 EXPORT_SYMBOL(netif_carrier_off
);
634 EXPORT_SYMBOL(noop_qdisc
);
635 EXPORT_SYMBOL(qdisc_create_dflt
);
636 EXPORT_SYMBOL(qdisc_destroy
);
637 EXPORT_SYMBOL(qdisc_reset
);
638 EXPORT_SYMBOL(qdisc_lock_tree
);
639 EXPORT_SYMBOL(qdisc_unlock_tree
);