blob: cbc0a9a00e30ec6598d357847c41ee52fc96368d [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>
nikolay@redhat.com07ce76a2013-08-03 22:07:47 +020028#include <linux/if_vlan.h>
Jiri Pirko292f1c72013-02-12 00:12:03 +000029#include <net/sch_generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <net/pkt_sched.h>
Eric Dumazet7fee2262010-05-11 23:19:48 +000031#include <net/dst.h>
Jesper Dangaard Brouere5430022017-08-15 21:11:03 +020032#include <trace/events/qdisc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
stephen hemminger34aedd32013-08-31 10:15:33 -070034/* Qdisc to use by default */
35const struct Qdisc_ops *default_qdisc_ops = &pfifo_fast_ops;
36EXPORT_SYMBOL(default_qdisc_ops);
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/* Main transmission queue. */
39
Patrick McHardy0463d4a2007-04-16 17:02:10 -070040/* Modifications to data participating in scheduling must be protected with
David S. Miller5fb66222008-08-02 20:02:43 -070041 * qdisc_lock(qdisc) spinlock.
Patrick McHardy0463d4a2007-04-16 17:02:10 -070042 *
43 * The idea is the following:
David S. Millerc7e4f3b2008-07-16 03:22:39 -070044 * - enqueue, dequeue are serialized via qdisc root lock
45 * - ingress filtering is also serialized via qdisc root lock
Patrick McHardy0463d4a2007-04-16 17:02:10 -070046 * - updates to tree and tree walking are only done under the rtnl mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
David S. Miller37437bb2008-07-16 02:15:04 -070049static inline int dev_requeue_skb(struct sk_buff *skb, struct Qdisc *q)
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070050{
Jarek Poplawski62523522008-10-06 10:41:50 -070051 q->gso_skb = skb;
Jarek Poplawski53e91502008-10-08 11:36:22 -070052 q->qstats.requeues++;
WANG Conga27758f2016-06-03 15:05:57 -070053 qdisc_qstats_backlog_inc(q, skb);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +000054 q->q.qlen++; /* it's still part of the queue */
David S. Miller37437bb2008-07-16 02:15:04 -070055 __netif_schedule(q);
Jarek Poplawski62523522008-10-06 10:41:50 -070056
Jamal Hadi Salimc716a812007-06-10 17:31:24 -070057 return 0;
58}
59
Eric Dumazet55a93b32014-10-03 15:31:07 -070060static void try_bulk_dequeue_skb(struct Qdisc *q,
61 struct sk_buff *skb,
Jesper Dangaard Brouerb8358d72014-10-09 12:18:10 +020062 const struct netdev_queue *txq,
63 int *packets)
Jesper Dangaard Brouer5772e9a2014-10-01 22:35:59 +020064{
Eric Dumazet55a93b32014-10-03 15:31:07 -070065 int bytelimit = qdisc_avail_bulklimit(txq) - skb->len;
Jesper Dangaard Brouer5772e9a2014-10-01 22:35:59 +020066
67 while (bytelimit > 0) {
Eric Dumazet55a93b32014-10-03 15:31:07 -070068 struct sk_buff *nskb = q->dequeue(q);
69
70 if (!nskb)
Jesper Dangaard Brouer5772e9a2014-10-01 22:35:59 +020071 break;
72
Eric Dumazet55a93b32014-10-03 15:31:07 -070073 bytelimit -= nskb->len; /* covers GSO len */
74 skb->next = nskb;
75 skb = nskb;
Jesper Dangaard Brouerb8358d72014-10-09 12:18:10 +020076 (*packets)++; /* GSO counts as one pkt */
Jesper Dangaard Brouer5772e9a2014-10-01 22:35:59 +020077 }
Eric Dumazet55a93b32014-10-03 15:31:07 -070078 skb->next = NULL;
Jesper Dangaard Brouer5772e9a2014-10-01 22:35:59 +020079}
80
Eric Dumazet4d202a02016-06-21 23:16:52 -070081/* This variant of try_bulk_dequeue_skb() makes sure
82 * all skbs in the chain are for the same txq
83 */
84static void try_bulk_dequeue_skb_slow(struct Qdisc *q,
85 struct sk_buff *skb,
86 int *packets)
87{
88 int mapping = skb_get_queue_mapping(skb);
89 struct sk_buff *nskb;
90 int cnt = 0;
91
92 do {
93 nskb = q->dequeue(q);
94 if (!nskb)
95 break;
96 if (unlikely(skb_get_queue_mapping(nskb) != mapping)) {
97 q->skb_bad_txq = nskb;
98 qdisc_qstats_backlog_inc(q, nskb);
99 q->q.qlen++;
100 break;
101 }
102 skb->next = nskb;
103 skb = nskb;
104 } while (++cnt < 8);
105 (*packets) += cnt;
106 skb->next = NULL;
107}
108
Jesper Dangaard Brouer5772e9a2014-10-01 22:35:59 +0200109/* Note that dequeue_skb can possibly return a SKB list (via skb->next).
110 * A requeued skb (via q->gso_skb) can also be a SKB list.
111 */
Jesper Dangaard Brouerb8358d72014-10-09 12:18:10 +0200112static struct sk_buff *dequeue_skb(struct Qdisc *q, bool *validate,
113 int *packets)
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700114{
Jarek Poplawski554794d2008-10-06 09:54:39 -0700115 struct sk_buff *skb = q->gso_skb;
Eric Dumazet1abbe132012-12-11 15:54:33 +0000116 const struct netdev_queue *txq = q->dev_queue;
Jarek Poplawski554794d2008-10-06 09:54:39 -0700117
Jesper Dangaard Brouerb8358d72014-10-09 12:18:10 +0200118 *packets = 1;
Jarek Poplawskiebf05982008-09-22 22:16:23 -0700119 if (unlikely(skb)) {
Eric Dumazet4d202a02016-06-21 23:16:52 -0700120 /* skb in gso_skb were already validated */
121 *validate = false;
Jarek Poplawskiebf05982008-09-22 22:16:23 -0700122 /* check the reason of requeuing without tx lock first */
Daniel Borkmann10c51b56232014-08-27 11:11:27 +0200123 txq = skb_get_tx_queue(txq->dev, skb);
Tom Herbert734664982011-11-28 16:32:44 +0000124 if (!netif_xmit_frozen_or_stopped(txq)) {
Jarek Poplawski62523522008-10-06 10:41:50 -0700125 q->gso_skb = NULL;
WANG Conga27758f2016-06-03 15:05:57 -0700126 qdisc_qstats_backlog_dec(q, skb);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000127 q->q.qlen--;
128 } else
Jarek Poplawskiebf05982008-09-22 22:16:23 -0700129 skb = NULL;
Jesper Dangaard Brouere5430022017-08-15 21:11:03 +0200130 goto trace;
Eric Dumazet4d202a02016-06-21 23:16:52 -0700131 }
132 *validate = true;
133 skb = q->skb_bad_txq;
134 if (unlikely(skb)) {
135 /* check the reason of requeuing without tx lock first */
136 txq = skb_get_tx_queue(txq->dev, skb);
137 if (!netif_xmit_frozen_or_stopped(txq)) {
138 q->skb_bad_txq = NULL;
139 qdisc_qstats_backlog_dec(q, skb);
140 q->q.qlen--;
141 goto bulk;
David S. Miller50cbe9a2014-08-30 19:13:51 -0700142 }
Jesper Dangaard Brouere5430022017-08-15 21:11:03 +0200143 skb = NULL;
144 goto trace;
Eric Dumazet4d202a02016-06-21 23:16:52 -0700145 }
146 if (!(q->flags & TCQ_F_ONETXQUEUE) ||
147 !netif_xmit_frozen_or_stopped(txq))
148 skb = q->dequeue(q);
149 if (skb) {
150bulk:
151 if (qdisc_may_bulk(q))
152 try_bulk_dequeue_skb(q, skb, txq, packets);
153 else
154 try_bulk_dequeue_skb_slow(q, skb, packets);
Jarek Poplawskiebf05982008-09-22 22:16:23 -0700155 }
Jesper Dangaard Brouere5430022017-08-15 21:11:03 +0200156trace:
157 trace_qdisc_dequeue(q, txq, *packets, skb);
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700158 return skb;
159}
160
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900161/*
Jesper Dangaard Brouer10770bc2014-09-02 16:35:33 +0200162 * Transmit possibly several skbs, and handle the return status as
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -0700163 * required. Owning running seqcount bit guarantees that
Jesper Dangaard Brouer10770bc2014-09-02 16:35:33 +0200164 * only one CPU can execute this function.
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700165 *
166 * Returns to the caller:
John Fastabend29b86cd2017-12-07 09:54:47 -0800167 * false - hardware queue frozen backoff
168 * true - feel free to send more pkts
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700169 */
John Fastabend29b86cd2017-12-07 09:54:47 -0800170bool sch_direct_xmit(struct sk_buff *skb, struct Qdisc *q,
171 struct net_device *dev, struct netdev_queue *txq,
172 spinlock_t *root_lock, bool validate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Peter P Waskiewicz Jr5f1a4852007-11-13 20:40:55 -0800174 int ret = NETDEV_TX_BUSY;
David S. Miller7698b4f2008-07-16 01:42:40 -0700175
176 /* And release qdisc */
John Fastabend6b3ba912017-12-07 09:54:25 -0800177 if (root_lock)
178 spin_unlock(root_lock);
Herbert Xud90df3a2007-05-10 04:55:14 -0700179
Eric Dumazet55a93b32014-10-03 15:31:07 -0700180 /* Note that we validate skb (GSO, checksum, ...) outside of locks */
181 if (validate)
182 skb = validate_xmit_skb_list(skb, dev);
Patrick McHardy572a9d72009-11-10 06:14:14 +0000183
Lars Persson3dcd493fb2016-04-12 08:45:52 +0200184 if (likely(skb)) {
Eric Dumazet55a93b32014-10-03 15:31:07 -0700185 HARD_TX_LOCK(dev, txq, smp_processor_id());
186 if (!netif_xmit_frozen_or_stopped(txq))
187 skb = dev_hard_start_xmit(skb, dev, txq, &ret);
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700188
Eric Dumazet55a93b32014-10-03 15:31:07 -0700189 HARD_TX_UNLOCK(dev, txq);
Lars Persson3dcd493fb2016-04-12 08:45:52 +0200190 } else {
John Fastabend6b3ba912017-12-07 09:54:25 -0800191 if (root_lock)
192 spin_lock(root_lock);
John Fastabend29b86cd2017-12-07 09:54:47 -0800193 return true;
Eric Dumazet55a93b32014-10-03 15:31:07 -0700194 }
John Fastabend6b3ba912017-12-07 09:54:25 -0800195
196 if (root_lock)
197 spin_lock(root_lock);
Jamal Hadi Salimc716a812007-06-10 17:31:24 -0700198
John Fastabend29b86cd2017-12-07 09:54:47 -0800199 if (!dev_xmit_complete(ret)) {
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700200 /* Driver returned NETDEV_TX_BUSY - requeue skb */
Joe Perchese87cc472012-05-13 21:56:26 +0000201 if (unlikely(ret != NETDEV_TX_BUSY))
202 net_warn_ratelimited("BUG %s code %d qlen %d\n",
203 dev->name, ret, q->q.qlen);
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700204
John Fastabend29b86cd2017-12-07 09:54:47 -0800205 dev_requeue_skb(skb, q);
206 return false;
Krishna Kumar6c1361a2007-06-24 19:56:09 -0700207 }
208
Tom Herbert734664982011-11-28 16:32:44 +0000209 if (ret && netif_xmit_frozen_or_stopped(txq))
John Fastabend29b86cd2017-12-07 09:54:47 -0800210 return false;
David S. Miller37437bb2008-07-16 02:15:04 -0700211
John Fastabend29b86cd2017-12-07 09:54:47 -0800212 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000215/*
216 * NOTE: Called under qdisc_lock(q) with locally disabled BH.
217 *
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -0700218 * running seqcount guarantees only one CPU can process
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000219 * this qdisc at a time. qdisc_lock(q) serializes queue accesses for
220 * this queue.
221 *
222 * netif_tx_lock serializes accesses to device driver.
223 *
224 * qdisc_lock(q) and netif_tx_lock are mutually exclusive,
225 * if one is grabbed, another must be free.
226 *
227 * Note, that this procedure can be called by a watchdog timer
228 *
229 * Returns to the caller:
230 * 0 - queue is empty or throttled.
231 * >0 - queue is not empty.
232 *
233 */
John Fastabend29b86cd2017-12-07 09:54:47 -0800234static inline bool qdisc_restart(struct Qdisc *q, int *packets)
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000235{
John Fastabend6b3ba912017-12-07 09:54:25 -0800236 spinlock_t *root_lock = NULL;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000237 struct netdev_queue *txq;
238 struct net_device *dev;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000239 struct sk_buff *skb;
Eric Dumazet55a93b32014-10-03 15:31:07 -0700240 bool validate;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000241
242 /* Dequeue packet */
Jesper Dangaard Brouerb8358d72014-10-09 12:18:10 +0200243 skb = dequeue_skb(q, &validate, packets);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000244 if (unlikely(!skb))
John Fastabend29b86cd2017-12-07 09:54:47 -0800245 return false;
Daniel Borkmann10c51b56232014-08-27 11:11:27 +0200246
John Fastabend6b3ba912017-12-07 09:54:25 -0800247 if (!(q->flags & TCQ_F_NOLOCK))
248 root_lock = qdisc_lock(q);
249
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000250 dev = qdisc_dev(q);
Daniel Borkmann10c51b56232014-08-27 11:11:27 +0200251 txq = skb_get_tx_queue(dev, skb);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000252
Eric Dumazet55a93b32014-10-03 15:31:07 -0700253 return sch_direct_xmit(skb, q, dev, txq, root_lock, validate);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000254}
255
David S. Miller37437bb2008-07-16 02:15:04 -0700256void __qdisc_run(struct Qdisc *q)
Herbert Xu48d83322006-06-19 23:57:59 -0700257{
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +0100258 int quota = dev_tx_weight;
Jesper Dangaard Brouerb8358d72014-10-09 12:18:10 +0200259 int packets;
Herbert Xu2ba25062008-03-28 16:25:26 -0700260
Jesper Dangaard Brouerb8358d72014-10-09 12:18:10 +0200261 while (qdisc_restart(q, &packets)) {
Herbert Xu2ba25062008-03-28 16:25:26 -0700262 /*
jamald5b8aa12011-06-26 08:13:54 +0000263 * Ordered by possible occurrence: Postpone processing if
264 * 1. we've exceeded packet quota
265 * 2. another process needs the CPU;
Herbert Xu2ba25062008-03-28 16:25:26 -0700266 */
Jesper Dangaard Brouerb8358d72014-10-09 12:18:10 +0200267 quota -= packets;
268 if (quota <= 0 || need_resched()) {
David S. Miller37437bb2008-07-16 02:15:04 -0700269 __netif_schedule(q);
Herbert Xu2ba25062008-03-28 16:25:26 -0700270 break;
271 }
272 }
Herbert Xu48d83322006-06-19 23:57:59 -0700273}
274
Eric Dumazet9d214932009-05-17 20:55:16 -0700275unsigned long dev_trans_start(struct net_device *dev)
276{
nikolay@redhat.com07ce76a2013-08-03 22:07:47 +0200277 unsigned long val, res;
Eric Dumazet9d214932009-05-17 20:55:16 -0700278 unsigned int i;
279
nikolay@redhat.com07ce76a2013-08-03 22:07:47 +0200280 if (is_vlan_dev(dev))
281 dev = vlan_dev_real_dev(dev);
Florian Westphal9b366272016-05-03 16:33:14 +0200282 res = netdev_get_tx_queue(dev, 0)->trans_start;
283 for (i = 1; i < dev->num_tx_queues; i++) {
Eric Dumazet9d214932009-05-17 20:55:16 -0700284 val = netdev_get_tx_queue(dev, i)->trans_start;
285 if (val && time_after(val, res))
286 res = val;
287 }
nikolay@redhat.com07ce76a2013-08-03 22:07:47 +0200288
Eric Dumazet9d214932009-05-17 20:55:16 -0700289 return res;
290}
291EXPORT_SYMBOL(dev_trans_start);
292
Kees Cookcdeabbb2017-10-16 17:29:17 -0700293static void dev_watchdog(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Kees Cookcdeabbb2017-10-16 17:29:17 -0700295 struct net_device *dev = from_timer(dev, t, watchdog_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Herbert Xu932ff272006-06-09 12:20:56 -0700297 netif_tx_lock(dev);
David S. Millere8a04642008-07-17 00:34:19 -0700298 if (!qdisc_tx_is_noop(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (netif_device_present(dev) &&
300 netif_running(dev) &&
301 netif_carrier_ok(dev)) {
Eric Dumazet9d214932009-05-17 20:55:16 -0700302 int some_queue_timedout = 0;
David S. Millere8a04642008-07-17 00:34:19 -0700303 unsigned int i;
Eric Dumazet9d214932009-05-17 20:55:16 -0700304 unsigned long trans_start;
Stephen Hemminger338f7562006-05-16 15:02:12 -0700305
David S. Millere8a04642008-07-17 00:34:19 -0700306 for (i = 0; i < dev->num_tx_queues; i++) {
307 struct netdev_queue *txq;
308
309 txq = netdev_get_tx_queue(dev, i);
Florian Westphal9b366272016-05-03 16:33:14 +0200310 trans_start = txq->trans_start;
Tom Herbert734664982011-11-28 16:32:44 +0000311 if (netif_xmit_stopped(txq) &&
Eric Dumazet9d214932009-05-17 20:55:16 -0700312 time_after(jiffies, (trans_start +
313 dev->watchdog_timeo))) {
314 some_queue_timedout = 1;
david decotignyccf5ff62011-11-16 12:15:10 +0000315 txq->trans_timeout++;
David S. Millere8a04642008-07-17 00:34:19 -0700316 break;
317 }
318 }
319
Eric Dumazet9d214932009-05-17 20:55:16 -0700320 if (some_queue_timedout) {
Eric Dumazet9d214932009-05-17 20:55:16 -0700321 WARN_ONCE(1, KERN_INFO "NETDEV WATCHDOG: %s (%s): transmit queue %u timed out\n",
David S. Miller3019de12011-06-06 16:41:33 -0700322 dev->name, netdev_drivername(dev), i);
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800323 dev->netdev_ops->ndo_tx_timeout(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
David S. Millere8a04642008-07-17 00:34:19 -0700325 if (!mod_timer(&dev->watchdog_timer,
326 round_jiffies(jiffies +
327 dev->watchdog_timeo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 dev_hold(dev);
329 }
330 }
Herbert Xu932ff272006-06-09 12:20:56 -0700331 netif_tx_unlock(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 dev_put(dev);
334}
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336void __netdev_watchdog_up(struct net_device *dev)
337{
Stephen Hemmingerd3147742008-11-19 21:32:24 -0800338 if (dev->netdev_ops->ndo_tx_timeout) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (dev->watchdog_timeo <= 0)
340 dev->watchdog_timeo = 5*HZ;
Venkatesh Pallipadi60468d52007-05-31 21:28:44 -0700341 if (!mod_timer(&dev->watchdog_timer,
342 round_jiffies(jiffies + dev->watchdog_timeo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 dev_hold(dev);
344 }
345}
346
347static void dev_watchdog_up(struct net_device *dev)
348{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 __netdev_watchdog_up(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
352static void dev_watchdog_down(struct net_device *dev)
353{
Herbert Xu932ff272006-06-09 12:20:56 -0700354 netif_tx_lock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (del_timer(&dev->watchdog_timer))
Stephen Hemminger15333062006-03-20 22:32:28 -0800356 dev_put(dev);
Herbert Xu932ff272006-06-09 12:20:56 -0700357 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700360/**
361 * netif_carrier_on - set carrier
362 * @dev: network device
363 *
364 * Device has detected that carrier.
365 */
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700366void netif_carrier_on(struct net_device *dev)
367{
Jeff Garzikbfaae0f2007-10-17 23:26:43 -0700368 if (test_and_clear_bit(__LINK_STATE_NOCARRIER, &dev->state)) {
David S. Millerb4730012008-11-19 15:33:54 -0800369 if (dev->reg_state == NETREG_UNINITIALIZED)
370 return;
david decotigny2d3b4792014-03-29 09:48:35 -0700371 atomic_inc(&dev->carrier_changes);
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700372 linkwatch_fire_event(dev);
Jeff Garzikbfaae0f2007-10-17 23:26:43 -0700373 if (netif_running(dev))
374 __netdev_watchdog_up(dev);
375 }
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700376}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800377EXPORT_SYMBOL(netif_carrier_on);
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700378
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700379/**
380 * netif_carrier_off - clear carrier
381 * @dev: network device
382 *
383 * Device has detected loss of carrier.
384 */
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700385void netif_carrier_off(struct net_device *dev)
386{
David S. Millerb4730012008-11-19 15:33:54 -0800387 if (!test_and_set_bit(__LINK_STATE_NOCARRIER, &dev->state)) {
388 if (dev->reg_state == NETREG_UNINITIALIZED)
389 return;
david decotigny2d3b4792014-03-29 09:48:35 -0700390 atomic_inc(&dev->carrier_changes);
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700391 linkwatch_fire_event(dev);
David S. Millerb4730012008-11-19 15:33:54 -0800392 }
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700393}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800394EXPORT_SYMBOL(netif_carrier_off);
Denis Vlasenko0a242ef2005-08-11 15:32:53 -0700395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396/* "NOOP" scheduler: the best scheduler, recommended for all interfaces
397 under all circumstances. It is difficult to invent anything faster or
398 cheaper.
399 */
400
Eric Dumazet520ac302016-06-21 23:16:49 -0700401static int noop_enqueue(struct sk_buff *skb, struct Qdisc *qdisc,
402 struct sk_buff **to_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Eric Dumazet520ac302016-06-21 23:16:49 -0700404 __qdisc_drop(skb, to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return NET_XMIT_CN;
406}
407
Yang Yingliang82d567c2013-12-10 20:55:31 +0800408static struct sk_buff *noop_dequeue(struct Qdisc *qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
410 return NULL;
411}
412
Eric Dumazet20fea082007-11-14 01:44:41 -0800413struct Qdisc_ops noop_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 .id = "noop",
415 .priv_size = 0,
416 .enqueue = noop_enqueue,
417 .dequeue = noop_dequeue,
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700418 .peek = noop_dequeue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 .owner = THIS_MODULE,
420};
421
David S. Miller7698b4f2008-07-16 01:42:40 -0700422static struct netdev_queue noop_netdev_queue = {
David S. Miller7698b4f2008-07-16 01:42:40 -0700423 .qdisc = &noop_qdisc,
Jarek Poplawski9f3ffae2008-10-19 23:37:47 -0700424 .qdisc_sleeping = &noop_qdisc,
David S. Miller7698b4f2008-07-16 01:42:40 -0700425};
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427struct Qdisc noop_qdisc = {
428 .enqueue = noop_enqueue,
429 .dequeue = noop_dequeue,
430 .flags = TCQ_F_BUILTIN,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900431 .ops = &noop_qdisc_ops,
David S. Miller838740002008-07-17 00:53:03 -0700432 .q.lock = __SPIN_LOCK_UNLOCKED(noop_qdisc.q.lock),
David S. Miller7698b4f2008-07-16 01:42:40 -0700433 .dev_queue = &noop_netdev_queue,
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -0700434 .running = SEQCNT_ZERO(noop_qdisc.running),
Eric Dumazet7b5edbc2010-10-15 19:22:34 +0000435 .busylock = __SPIN_LOCK_UNLOCKED(noop_qdisc.busylock),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436};
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800437EXPORT_SYMBOL(noop_qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Phil Sutterd66d6c32015-08-27 21:21:38 +0200439static int noqueue_init(struct Qdisc *qdisc, struct nlattr *opt)
440{
441 /* register_qdisc() assigns a default of noop_enqueue if unset,
442 * but __dev_queue_xmit() treats noqueue only as such
443 * if this is NULL - so clear it here. */
444 qdisc->enqueue = NULL;
445 return 0;
446}
447
448struct Qdisc_ops noqueue_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 .id = "noqueue",
450 .priv_size = 0,
Phil Sutterd66d6c32015-08-27 21:21:38 +0200451 .init = noqueue_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 .enqueue = noop_enqueue,
453 .dequeue = noop_dequeue,
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700454 .peek = noop_dequeue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 .owner = THIS_MODULE,
456};
457
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000458static const u8 prio2band[TC_PRIO_MAX + 1] = {
459 1, 2, 2, 2, 1, 2, 0, 0 , 1, 1, 1, 1, 1, 1, 1, 1
460};
Thomas Graf321090e2005-06-18 22:58:35 -0700461
David S. Millerd3678b42008-07-21 09:56:13 -0700462/* 3-band FIFO queue: old style, but should be a bit faster than
463 generic prio+fifo combination.
464 */
465
466#define PFIFO_FAST_BANDS 3
467
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000468/*
469 * Private data for a pfifo_fast scheduler containing:
470 * - queues for the three band
471 * - bitmap indicating which of the bands contain skbs
472 */
473struct pfifo_fast_priv {
474 u32 bitmap;
Florian Westphal48da34b2016-09-18 00:57:34 +0200475 struct qdisc_skb_head q[PFIFO_FAST_BANDS];
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000476};
477
478/*
479 * Convert a bitmap to the first band number where an skb is queued, where:
480 * bitmap=0 means there are no skbs on any band.
481 * bitmap=1 means there is an skb on band 0.
482 * bitmap=7 means there are skbs on all 3 bands, etc.
483 */
484static const int bitmap2band[] = {-1, 0, 1, 0, 2, 0, 1, 0};
485
Florian Westphal48da34b2016-09-18 00:57:34 +0200486static inline struct qdisc_skb_head *band2list(struct pfifo_fast_priv *priv,
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000487 int band)
David S. Millerd3678b42008-07-21 09:56:13 -0700488{
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000489 return priv->q + band;
David S. Millerd3678b42008-07-21 09:56:13 -0700490}
491
Eric Dumazet520ac302016-06-21 23:16:49 -0700492static int pfifo_fast_enqueue(struct sk_buff *skb, struct Qdisc *qdisc,
493 struct sk_buff **to_free)
David S. Millerd3678b42008-07-21 09:56:13 -0700494{
Florian Westphal97d06782016-09-18 00:57:31 +0200495 if (qdisc->q.qlen < qdisc_dev(qdisc)->tx_queue_len) {
Krishna Kumara453e062009-08-30 22:20:28 -0700496 int band = prio2band[skb->priority & TC_PRIO_MAX];
497 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
Florian Westphal48da34b2016-09-18 00:57:34 +0200498 struct qdisc_skb_head *list = band2list(priv, band);
David S. Millerd3678b42008-07-21 09:56:13 -0700499
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000500 priv->bitmap |= (1 << band);
David S. Millerd3678b42008-07-21 09:56:13 -0700501 qdisc->q.qlen++;
Thomas Graf821d24ae2005-06-18 22:58:15 -0700502 return __qdisc_enqueue_tail(skb, qdisc, list);
David S. Millerd3678b42008-07-21 09:56:13 -0700503 }
Thomas Graf821d24ae2005-06-18 22:58:15 -0700504
Eric Dumazet520ac302016-06-21 23:16:49 -0700505 return qdisc_drop(skb, qdisc, to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000508static struct sk_buff *pfifo_fast_dequeue(struct Qdisc *qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000510 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
511 int band = bitmap2band[priv->bitmap];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000513 if (likely(band >= 0)) {
Florian Westphal48da34b2016-09-18 00:57:34 +0200514 struct qdisc_skb_head *qh = band2list(priv, band);
515 struct sk_buff *skb = __qdisc_dequeue_head(qh);
Florian Westphalec323362016-09-18 00:57:32 +0200516
517 if (likely(skb != NULL)) {
518 qdisc_qstats_backlog_dec(qdisc, skb);
519 qdisc_bstats_update(qdisc, skb);
520 }
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000521
522 qdisc->q.qlen--;
Florian Westphal48da34b2016-09-18 00:57:34 +0200523 if (qh->qlen == 0)
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000524 priv->bitmap &= ~(1 << band);
525
526 return skb;
David S. Millerd3678b42008-07-21 09:56:13 -0700527 }
Thomas Graff87a9c32005-06-18 22:58:53 -0700528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return NULL;
530}
531
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000532static struct sk_buff *pfifo_fast_peek(struct Qdisc *qdisc)
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700533{
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000534 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
535 int band = bitmap2band[priv->bitmap];
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700536
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000537 if (band >= 0) {
Florian Westphal48da34b2016-09-18 00:57:34 +0200538 struct qdisc_skb_head *qh = band2list(priv, band);
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000539
Florian Westphal48da34b2016-09-18 00:57:34 +0200540 return qh->head;
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700541 }
542
543 return NULL;
544}
545
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000546static void pfifo_fast_reset(struct Qdisc *qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
David S. Millerd3678b42008-07-21 09:56:13 -0700548 int prio;
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000549 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
David S. Millerd3678b42008-07-21 09:56:13 -0700550
551 for (prio = 0; prio < PFIFO_FAST_BANDS; prio++)
Eric Dumazet1b5c5492016-06-13 20:21:50 -0700552 __qdisc_reset_queue(band2list(priv, prio));
David S. Millerd3678b42008-07-21 09:56:13 -0700553
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000554 priv->bitmap = 0;
Thomas Graf821d24ae2005-06-18 22:58:15 -0700555 qdisc->qstats.backlog = 0;
David S. Millerd3678b42008-07-21 09:56:13 -0700556 qdisc->q.qlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
David S. Millerd3678b42008-07-21 09:56:13 -0700559static int pfifo_fast_dump(struct Qdisc *qdisc, struct sk_buff *skb)
560{
561 struct tc_prio_qopt opt = { .bands = PFIFO_FAST_BANDS };
562
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000563 memcpy(&opt.priomap, prio2band, TC_PRIO_MAX + 1);
David S. Miller1b34ec42012-03-29 05:11:39 -0400564 if (nla_put(skb, TCA_OPTIONS, sizeof(opt), &opt))
565 goto nla_put_failure;
David S. Millerd3678b42008-07-21 09:56:13 -0700566 return skb->len;
567
568nla_put_failure:
569 return -1;
570}
571
572static int pfifo_fast_init(struct Qdisc *qdisc, struct nlattr *opt)
573{
574 int prio;
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000575 struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
David S. Millerd3678b42008-07-21 09:56:13 -0700576
577 for (prio = 0; prio < PFIFO_FAST_BANDS; prio++)
Florian Westphal48da34b2016-09-18 00:57:34 +0200578 qdisc_skb_head_init(band2list(priv, prio));
David S. Millerd3678b42008-07-21 09:56:13 -0700579
Eric Dumazet23624932011-01-21 16:26:09 -0800580 /* Can by-pass the queue discipline */
581 qdisc->flags |= TCQ_F_CAN_BYPASS;
David S. Millerd3678b42008-07-21 09:56:13 -0700582 return 0;
583}
584
David S. Miller6ec1c692009-09-06 01:58:51 -0700585struct Qdisc_ops pfifo_fast_ops __read_mostly = {
David S. Millerd3678b42008-07-21 09:56:13 -0700586 .id = "pfifo_fast",
Krishna Kumarfd3ae5e2009-08-18 21:55:59 +0000587 .priv_size = sizeof(struct pfifo_fast_priv),
David S. Millerd3678b42008-07-21 09:56:13 -0700588 .enqueue = pfifo_fast_enqueue,
589 .dequeue = pfifo_fast_dequeue,
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700590 .peek = pfifo_fast_peek,
David S. Millerd3678b42008-07-21 09:56:13 -0700591 .init = pfifo_fast_init,
592 .reset = pfifo_fast_reset,
593 .dump = pfifo_fast_dump,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 .owner = THIS_MODULE,
595};
Eric Dumazet1f27cde2016-03-02 08:21:43 -0800596EXPORT_SYMBOL(pfifo_fast_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Eric Dumazet23d3b8b2012-09-05 01:02:56 +0000598static struct lock_class_key qdisc_tx_busylock;
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -0700599static struct lock_class_key qdisc_running_key;
Eric Dumazet23d3b8b2012-09-05 01:02:56 +0000600
David S. Miller5ce2d482008-07-08 17:06:30 -0700601struct Qdisc *qdisc_alloc(struct netdev_queue *dev_queue,
stephen hemmingerd2a7f262013-08-31 10:15:50 -0700602 const struct Qdisc_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 void *p;
605 struct Qdisc *sch;
Eric Dumazetd2760552011-03-03 11:10:02 -0800606 unsigned int size = QDISC_ALIGN(sizeof(*sch)) + ops->priv_size;
Thomas Graf3d54b822005-07-05 14:15:09 -0700607 int err = -ENOBUFS;
Jesus Sanchez-Palencia26aa0452017-10-16 18:01:23 -0700608 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Jesus Sanchez-Palencia26aa0452017-10-16 18:01:23 -0700610 if (!dev_queue) {
611 err = -EINVAL;
612 goto errout;
613 }
614
615 dev = dev_queue->dev;
Eric Dumazetf2cd2d32010-11-29 08:14:37 +0000616 p = kzalloc_node(size, GFP_KERNEL,
617 netdev_queue_numa_node_read(dev_queue));
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 if (!p)
Thomas Graf3d54b822005-07-05 14:15:09 -0700620 goto errout;
Thomas Graf3d54b822005-07-05 14:15:09 -0700621 sch = (struct Qdisc *) QDISC_ALIGN((unsigned long) p);
Eric Dumazetd2760552011-03-03 11:10:02 -0800622 /* if we got non aligned memory, ask more and do alignment ourself */
623 if (sch != p) {
624 kfree(p);
625 p = kzalloc_node(size + QDISC_ALIGNTO - 1, GFP_KERNEL,
626 netdev_queue_numa_node_read(dev_queue));
627 if (!p)
628 goto errout;
629 sch = (struct Qdisc *) QDISC_ALIGN((unsigned long) p);
630 sch->padded = (char *) sch - (char *) p;
631 }
Florian Westphal48da34b2016-09-18 00:57:34 +0200632 qdisc_skb_head_init(&sch->q);
633 spin_lock_init(&sch->q.lock);
Eric Dumazet23d3b8b2012-09-05 01:02:56 +0000634
Eric Dumazet79640a42010-06-02 05:09:29 -0700635 spin_lock_init(&sch->busylock);
Eric Dumazet23d3b8b2012-09-05 01:02:56 +0000636 lockdep_set_class(&sch->busylock,
637 dev->qdisc_tx_busylock ?: &qdisc_tx_busylock);
638
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -0700639 seqcount_init(&sch->running);
640 lockdep_set_class(&sch->running,
641 dev->qdisc_running_key ?: &qdisc_running_key);
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 sch->ops = ops;
644 sch->enqueue = ops->enqueue;
645 sch->dequeue = ops->dequeue;
David S. Millerbb949fb2008-07-08 16:55:56 -0700646 sch->dev_queue = dev_queue;
Eric Dumazet23d3b8b2012-09-05 01:02:56 +0000647 dev_hold(dev);
Reshetova, Elena7b936402017-07-04 15:53:07 +0300648 refcount_set(&sch->refcnt, 1);
Thomas Graf3d54b822005-07-05 14:15:09 -0700649
650 return sch;
651errout:
WANG Cong01e123d2008-06-27 19:51:35 -0700652 return ERR_PTR(err);
Thomas Graf3d54b822005-07-05 14:15:09 -0700653}
654
Changli Gao3511c912010-10-16 13:04:08 +0000655struct Qdisc *qdisc_create_dflt(struct netdev_queue *dev_queue,
stephen hemmingerd2a7f262013-08-31 10:15:50 -0700656 const struct Qdisc_ops *ops,
657 unsigned int parentid)
Thomas Graf3d54b822005-07-05 14:15:09 -0700658{
659 struct Qdisc *sch;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900660
stephen hemminger6da7c8f2013-08-27 16:19:08 -0700661 if (!try_module_get(ops->owner))
Eric Dumazet166ee5b2016-08-24 09:39:02 -0700662 return NULL;
stephen hemminger6da7c8f2013-08-27 16:19:08 -0700663
David S. Miller5ce2d482008-07-08 17:06:30 -0700664 sch = qdisc_alloc(dev_queue, ops);
Eric Dumazet166ee5b2016-08-24 09:39:02 -0700665 if (IS_ERR(sch)) {
666 module_put(ops->owner);
667 return NULL;
668 }
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800669 sch->parent = parentid;
Thomas Graf3d54b822005-07-05 14:15:09 -0700670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (!ops->init || ops->init(sch, NULL) == 0)
672 return sch;
673
Thomas Graf0fbbeb12005-08-23 10:12:44 -0700674 qdisc_destroy(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return NULL;
676}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800677EXPORT_SYMBOL(qdisc_create_dflt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
David S. Miller5fb66222008-08-02 20:02:43 -0700679/* Under qdisc_lock(qdisc) and BH! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681void qdisc_reset(struct Qdisc *qdisc)
682{
Eric Dumazet20fea082007-11-14 01:44:41 -0800683 const struct Qdisc_ops *ops = qdisc->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 if (ops->reset)
686 ops->reset(qdisc);
Jarek Poplawski67305eb2008-11-03 02:52:50 -0800687
Eric Dumazet4d202a02016-06-21 23:16:52 -0700688 kfree_skb(qdisc->skb_bad_txq);
689 qdisc->skb_bad_txq = NULL;
690
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000691 if (qdisc->gso_skb) {
Jesper Dangaard Brouer3f3c7ee2014-09-03 12:12:50 +0200692 kfree_skb_list(qdisc->gso_skb);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000693 qdisc->gso_skb = NULL;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000694 }
Eric Dumazet4d202a02016-06-21 23:16:52 -0700695 qdisc->q.qlen = 0;
Konstantin Khlebnikovc8e18122017-09-20 15:45:36 +0300696 qdisc->qstats.backlog = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800698EXPORT_SYMBOL(qdisc_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Cong Wang752fbcc2017-09-19 13:15:42 -0700700static void qdisc_free(struct Qdisc *qdisc)
Eric Dumazet5d944c62010-03-31 07:06:04 +0000701{
John Fastabend73c20a82016-01-05 09:11:36 -0800702 if (qdisc_is_percpu_stats(qdisc)) {
John Fastabend22e0f8b2014-09-28 11:52:56 -0700703 free_percpu(qdisc->cpu_bstats);
John Fastabend73c20a82016-01-05 09:11:36 -0800704 free_percpu(qdisc->cpu_qstats);
705 }
John Fastabend22e0f8b2014-09-28 11:52:56 -0700706
Eric Dumazet5d944c62010-03-31 07:06:04 +0000707 kfree((char *) qdisc - qdisc->padded);
708}
709
David S. Miller1e0d5a52008-08-17 22:31:26 -0700710void qdisc_destroy(struct Qdisc *qdisc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Eric Dumazet20fea082007-11-14 01:44:41 -0800712 const struct Qdisc_ops *ops = qdisc->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
David S. Miller1e0d5a52008-08-17 22:31:26 -0700714 if (qdisc->flags & TCQ_F_BUILTIN ||
Reshetova, Elena7b936402017-07-04 15:53:07 +0300715 !refcount_dec_and_test(&qdisc->refcnt))
David S. Miller1e0d5a52008-08-17 22:31:26 -0700716 return;
717
David S. Miller3a682fb2008-07-20 18:13:01 -0700718#ifdef CONFIG_NET_SCHED
Jiri Kosina59cc1f62016-08-10 11:05:15 +0200719 qdisc_hash_del(qdisc);
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700720
Eric Dumazeta2da5702011-01-20 03:48:19 +0000721 qdisc_put_stab(rtnl_dereference(qdisc->stab));
David S. Miller3a682fb2008-07-20 18:13:01 -0700722#endif
Eric Dumazet1c0d32f2016-12-04 09:48:16 -0800723 gen_kill_estimator(&qdisc->rate_est);
Patrick McHardy85670cc2006-09-27 16:45:45 -0700724 if (ops->reset)
725 ops->reset(qdisc);
726 if (ops->destroy)
727 ops->destroy(qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Patrick McHardy85670cc2006-09-27 16:45:45 -0700729 module_put(ops->owner);
David S. Miller5ce2d482008-07-08 17:06:30 -0700730 dev_put(qdisc_dev(qdisc));
David S. Miller8a34c5d2008-07-17 00:47:45 -0700731
Jesper Dangaard Brouer3f3c7ee2014-09-03 12:12:50 +0200732 kfree_skb_list(qdisc->gso_skb);
Eric Dumazet4d202a02016-06-21 23:16:52 -0700733 kfree_skb(qdisc->skb_bad_txq);
Cong Wang752fbcc2017-09-19 13:15:42 -0700734 qdisc_free(qdisc);
David S. Miller8a34c5d2008-07-17 00:47:45 -0700735}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800736EXPORT_SYMBOL(qdisc_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Patrick McHardy589983c2009-09-04 06:41:20 +0000738/* Attach toplevel qdisc to device queue. */
739struct Qdisc *dev_graft_qdisc(struct netdev_queue *dev_queue,
740 struct Qdisc *qdisc)
741{
742 struct Qdisc *oqdisc = dev_queue->qdisc_sleeping;
743 spinlock_t *root_lock;
744
745 root_lock = qdisc_lock(oqdisc);
746 spin_lock_bh(root_lock);
747
748 /* Prune old scheduler */
Reshetova, Elena7b936402017-07-04 15:53:07 +0300749 if (oqdisc && refcount_read(&oqdisc->refcnt) <= 1)
Patrick McHardy589983c2009-09-04 06:41:20 +0000750 qdisc_reset(oqdisc);
751
752 /* ... and graft new one */
753 if (qdisc == NULL)
754 qdisc = &noop_qdisc;
755 dev_queue->qdisc_sleeping = qdisc;
756 rcu_assign_pointer(dev_queue->qdisc, &noop_qdisc);
757
758 spin_unlock_bh(root_lock);
759
760 return oqdisc;
761}
John Fastabendb8970f02011-01-17 08:06:09 +0000762EXPORT_SYMBOL(dev_graft_qdisc);
Patrick McHardy589983c2009-09-04 06:41:20 +0000763
David S. Millere8a04642008-07-17 00:34:19 -0700764static void attach_one_default_qdisc(struct net_device *dev,
765 struct netdev_queue *dev_queue,
766 void *_unused)
767{
Phil Sutter3e692f22015-08-27 21:21:39 +0200768 struct Qdisc *qdisc;
769 const struct Qdisc_ops *ops = default_qdisc_ops;
David S. Millere8a04642008-07-17 00:34:19 -0700770
Phil Sutter3e692f22015-08-27 21:21:39 +0200771 if (dev->priv_flags & IFF_NO_QUEUE)
772 ops = &noqueue_qdisc_ops;
773
774 qdisc = qdisc_create_dflt(dev_queue, ops, TC_H_ROOT);
775 if (!qdisc) {
776 netdev_info(dev, "activation failed\n");
777 return;
David S. Millere8a04642008-07-17 00:34:19 -0700778 }
Phil Sutter3e692f22015-08-27 21:21:39 +0200779 if (!netif_is_multiqueue(dev))
Eric Dumazet4eaf3b82015-12-01 20:08:51 -0800780 qdisc->flags |= TCQ_F_ONETXQUEUE | TCQ_F_NOPARENT;
David S. Millere8a04642008-07-17 00:34:19 -0700781 dev_queue->qdisc_sleeping = qdisc;
782}
783
David S. Miller6ec1c692009-09-06 01:58:51 -0700784static void attach_default_qdiscs(struct net_device *dev)
785{
786 struct netdev_queue *txq;
787 struct Qdisc *qdisc;
788
789 txq = netdev_get_tx_queue(dev, 0);
790
Phil Sutter4b469952015-08-13 19:01:07 +0200791 if (!netif_is_multiqueue(dev) ||
Phil Sutter4b469952015-08-13 19:01:07 +0200792 dev->priv_flags & IFF_NO_QUEUE) {
David S. Miller6ec1c692009-09-06 01:58:51 -0700793 netdev_for_each_tx_queue(dev, attach_one_default_qdisc, NULL);
794 dev->qdisc = txq->qdisc_sleeping;
Eric Dumazet551143d2017-08-24 21:12:28 -0700795 qdisc_refcount_inc(dev->qdisc);
David S. Miller6ec1c692009-09-06 01:58:51 -0700796 } else {
Changli Gao3511c912010-10-16 13:04:08 +0000797 qdisc = qdisc_create_dflt(txq, &mq_qdisc_ops, TC_H_ROOT);
David S. Miller6ec1c692009-09-06 01:58:51 -0700798 if (qdisc) {
David S. Miller6ec1c692009-09-06 01:58:51 -0700799 dev->qdisc = qdisc;
Eric Dumazete57a7842013-12-12 15:41:56 -0800800 qdisc->ops->attach(qdisc);
David S. Miller6ec1c692009-09-06 01:58:51 -0700801 }
802 }
Jiri Kosina59cc1f62016-08-10 11:05:15 +0200803#ifdef CONFIG_NET_SCHED
WANG Cong92f91702017-04-04 18:51:30 -0700804 if (dev->qdisc != &noop_qdisc)
Jiri Kosina49b49972017-03-08 16:03:32 +0100805 qdisc_hash_add(dev->qdisc, false);
Jiri Kosina59cc1f62016-08-10 11:05:15 +0200806#endif
David S. Miller6ec1c692009-09-06 01:58:51 -0700807}
808
David S. Millere8a04642008-07-17 00:34:19 -0700809static void transition_one_qdisc(struct net_device *dev,
810 struct netdev_queue *dev_queue,
811 void *_need_watchdog)
812{
David S. Miller838740002008-07-17 00:53:03 -0700813 struct Qdisc *new_qdisc = dev_queue->qdisc_sleeping;
David S. Millere8a04642008-07-17 00:34:19 -0700814 int *need_watchdog_p = _need_watchdog;
815
David S. Millera9312ae2008-08-17 21:51:03 -0700816 if (!(new_qdisc->flags & TCQ_F_BUILTIN))
817 clear_bit(__QDISC_STATE_DEACTIVATED, &new_qdisc->state);
818
David S. Miller838740002008-07-17 00:53:03 -0700819 rcu_assign_pointer(dev_queue->qdisc, new_qdisc);
Phil Sutter3e692f22015-08-27 21:21:39 +0200820 if (need_watchdog_p) {
Eric Dumazet9d214932009-05-17 20:55:16 -0700821 dev_queue->trans_start = 0;
David S. Millere8a04642008-07-17 00:34:19 -0700822 *need_watchdog_p = 1;
Eric Dumazet9d214932009-05-17 20:55:16 -0700823 }
David S. Millere8a04642008-07-17 00:34:19 -0700824}
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826void dev_activate(struct net_device *dev)
827{
David S. Millere8a04642008-07-17 00:34:19 -0700828 int need_watchdog;
David S. Millerb0e1e642008-07-08 17:42:10 -0700829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 /* No queueing discipline is attached to device;
stephen hemminger6da7c8f2013-08-27 16:19:08 -0700831 * create default one for devices, which need queueing
832 * and noqueue_qdisc for virtual interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 */
834
David S. Miller6ec1c692009-09-06 01:58:51 -0700835 if (dev->qdisc == &noop_qdisc)
836 attach_default_qdiscs(dev);
Patrick McHardyaf356af2009-09-04 06:41:18 +0000837
Tommy S. Christensencacaddf2005-05-03 16:18:52 -0700838 if (!netif_carrier_ok(dev))
839 /* Delay activation until next carrier-on event */
840 return;
841
David S. Millere8a04642008-07-17 00:34:19 -0700842 need_watchdog = 0;
843 netdev_for_each_tx_queue(dev, transition_one_qdisc, &need_watchdog);
Eric Dumazet24824a02010-10-02 06:11:55 +0000844 if (dev_ingress_queue(dev))
845 transition_one_qdisc(dev, dev_ingress_queue(dev), NULL);
David S. Millere8a04642008-07-17 00:34:19 -0700846
847 if (need_watchdog) {
Florian Westphal860e9532016-05-03 16:33:13 +0200848 netif_trans_update(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 dev_watchdog_up(dev);
850 }
David S. Millerb0e1e642008-07-08 17:42:10 -0700851}
John Fastabendb8970f02011-01-17 08:06:09 +0000852EXPORT_SYMBOL(dev_activate);
David S. Millerb0e1e642008-07-08 17:42:10 -0700853
David S. Millere8a04642008-07-17 00:34:19 -0700854static void dev_deactivate_queue(struct net_device *dev,
855 struct netdev_queue *dev_queue,
856 void *_qdisc_default)
David S. Millerb0e1e642008-07-08 17:42:10 -0700857{
David S. Millere8a04642008-07-17 00:34:19 -0700858 struct Qdisc *qdisc_default = _qdisc_default;
David S. Miller970565b2008-07-08 23:10:33 -0700859 struct Qdisc *qdisc;
David S. Millerb0e1e642008-07-08 17:42:10 -0700860
John Fastabend46e5da40a2014-09-12 20:04:52 -0700861 qdisc = rtnl_dereference(dev_queue->qdisc);
David S. Millerb0e1e642008-07-08 17:42:10 -0700862 if (qdisc) {
David S. Miller838740002008-07-17 00:53:03 -0700863 spin_lock_bh(qdisc_lock(qdisc));
864
David S. Millera9312ae2008-08-17 21:51:03 -0700865 if (!(qdisc->flags & TCQ_F_BUILTIN))
866 set_bit(__QDISC_STATE_DEACTIVATED, &qdisc->state);
867
Jarek Poplawskif7a54c12008-08-27 02:22:07 -0700868 rcu_assign_pointer(dev_queue->qdisc, qdisc_default);
David S. Millerb0e1e642008-07-08 17:42:10 -0700869 qdisc_reset(qdisc);
David S. Millerd3b753d2008-07-15 20:14:35 -0700870
David S. Miller838740002008-07-17 00:53:03 -0700871 spin_unlock_bh(qdisc_lock(qdisc));
David S. Millerb0e1e642008-07-08 17:42:10 -0700872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
David S. Miller4335cd22008-08-17 21:58:07 -0700875static bool some_qdisc_is_busy(struct net_device *dev)
David S. Millere8a04642008-07-17 00:34:19 -0700876{
877 unsigned int i;
878
879 for (i = 0; i < dev->num_tx_queues; i++) {
880 struct netdev_queue *dev_queue;
David S. Miller7698b4f2008-07-16 01:42:40 -0700881 spinlock_t *root_lock;
David S. Millere2627c82008-07-16 00:56:32 -0700882 struct Qdisc *q;
David S. Millere8a04642008-07-17 00:34:19 -0700883 int val;
884
885 dev_queue = netdev_get_tx_queue(dev, i);
David S. Millerb9a3b112008-08-13 15:18:38 -0700886 q = dev_queue->qdisc_sleeping;
David S. Millere8a04642008-07-17 00:34:19 -0700887
John Fastabend6b3ba912017-12-07 09:54:25 -0800888 if (q->flags & TCQ_F_NOLOCK) {
889 val = test_bit(__QDISC_STATE_SCHED, &q->state);
890 } else {
891 root_lock = qdisc_lock(q);
892 spin_lock_bh(root_lock);
David S. Millere8a04642008-07-17 00:34:19 -0700893
John Fastabend6b3ba912017-12-07 09:54:25 -0800894 val = (qdisc_is_running(q) ||
895 test_bit(__QDISC_STATE_SCHED, &q->state));
David S. Millere8a04642008-07-17 00:34:19 -0700896
John Fastabend6b3ba912017-12-07 09:54:25 -0800897 spin_unlock_bh(root_lock);
898 }
David S. Millere8a04642008-07-17 00:34:19 -0700899
900 if (val)
901 return true;
902 }
903 return false;
904}
905
Eric Dumazet31376632011-05-19 23:42:09 +0000906/**
907 * dev_deactivate_many - deactivate transmissions on several devices
908 * @head: list of devices to deactivate
909 *
910 * This function returns only when all outstanding transmissions
911 * have completed, unless all devices are in dismantle phase.
912 */
Octavian Purdila44345722010-12-13 12:44:07 +0000913void dev_deactivate_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Octavian Purdila44345722010-12-13 12:44:07 +0000915 struct net_device *dev;
Eric Dumazet31376632011-05-19 23:42:09 +0000916 bool sync_needed = false;
Herbert Xu41a23b02007-05-10 14:12:47 -0700917
Eric W. Biederman5cde2822013-10-05 19:26:05 -0700918 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +0000919 netdev_for_each_tx_queue(dev, dev_deactivate_queue,
920 &noop_qdisc);
921 if (dev_ingress_queue(dev))
922 dev_deactivate_queue(dev, dev_ingress_queue(dev),
923 &noop_qdisc);
924
925 dev_watchdog_down(dev);
Eric Dumazet31376632011-05-19 23:42:09 +0000926 sync_needed |= !dev->dismantle;
Octavian Purdila44345722010-12-13 12:44:07 +0000927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Eric Dumazet31376632011-05-19 23:42:09 +0000929 /* Wait for outstanding qdisc-less dev_queue_xmit calls.
930 * This is avoided if all devices are in dismantle phase :
931 * Caller will call synchronize_net() for us
932 */
933 if (sync_needed)
934 synchronize_net();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Herbert Xud4828d82006-06-22 02:28:18 -0700936 /* Wait for outstanding qdisc_run calls. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -0700937 list_for_each_entry(dev, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +0000938 while (some_qdisc_is_busy(dev))
939 yield();
940}
941
942void dev_deactivate(struct net_device *dev)
943{
944 LIST_HEAD(single);
945
Eric W. Biederman5cde2822013-10-05 19:26:05 -0700946 list_add(&dev->close_list, &single);
Octavian Purdila44345722010-12-13 12:44:07 +0000947 dev_deactivate_many(&single);
Eric W. Biederman5f04d502011-02-20 11:49:45 -0800948 list_del(&single);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
John Fastabendb8970f02011-01-17 08:06:09 +0000950EXPORT_SYMBOL(dev_deactivate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
David S. Millerb0e1e642008-07-08 17:42:10 -0700952static void dev_init_scheduler_queue(struct net_device *dev,
953 struct netdev_queue *dev_queue,
David S. Millere8a04642008-07-17 00:34:19 -0700954 void *_qdisc)
David S. Millerb0e1e642008-07-08 17:42:10 -0700955{
David S. Millere8a04642008-07-17 00:34:19 -0700956 struct Qdisc *qdisc = _qdisc;
957
John Fastabend46e5da40a2014-09-12 20:04:52 -0700958 rcu_assign_pointer(dev_queue->qdisc, qdisc);
David S. Millerb0e1e642008-07-08 17:42:10 -0700959 dev_queue->qdisc_sleeping = qdisc;
David S. Millerb0e1e642008-07-08 17:42:10 -0700960}
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962void dev_init_scheduler(struct net_device *dev)
963{
Patrick McHardyaf356af2009-09-04 06:41:18 +0000964 dev->qdisc = &noop_qdisc;
David S. Millere8a04642008-07-17 00:34:19 -0700965 netdev_for_each_tx_queue(dev, dev_init_scheduler_queue, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +0000966 if (dev_ingress_queue(dev))
967 dev_init_scheduler_queue(dev, dev_ingress_queue(dev), &noop_qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Kees Cookcdeabbb2017-10-16 17:29:17 -0700969 timer_setup(&dev->watchdog_timer, dev_watchdog, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
971
David S. Millere8a04642008-07-17 00:34:19 -0700972static void shutdown_scheduler_queue(struct net_device *dev,
973 struct netdev_queue *dev_queue,
974 void *_qdisc_default)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
David S. Millerb0e1e642008-07-08 17:42:10 -0700976 struct Qdisc *qdisc = dev_queue->qdisc_sleeping;
David S. Millere8a04642008-07-17 00:34:19 -0700977 struct Qdisc *qdisc_default = _qdisc_default;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
David S. Millerb0e1e642008-07-08 17:42:10 -0700979 if (qdisc) {
Jarek Poplawskif7a54c12008-08-27 02:22:07 -0700980 rcu_assign_pointer(dev_queue->qdisc, qdisc_default);
David S. Millerb0e1e642008-07-08 17:42:10 -0700981 dev_queue->qdisc_sleeping = qdisc_default;
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 qdisc_destroy(qdisc);
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900984 }
David S. Millerb0e1e642008-07-08 17:42:10 -0700985}
986
987void dev_shutdown(struct net_device *dev)
988{
David S. Millere8a04642008-07-17 00:34:19 -0700989 netdev_for_each_tx_queue(dev, shutdown_scheduler_queue, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +0000990 if (dev_ingress_queue(dev))
991 shutdown_scheduler_queue(dev, dev_ingress_queue(dev), &noop_qdisc);
Patrick McHardyaf356af2009-09-04 06:41:18 +0000992 qdisc_destroy(dev->qdisc);
993 dev->qdisc = &noop_qdisc;
994
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700995 WARN_ON(timer_pending(&dev->watchdog_timer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
Jiri Pirko292f1c72013-02-12 00:12:03 +0000997
Eric Dumazet01cb71d2013-06-02 13:55:05 +0000998void psched_ratecfg_precompute(struct psched_ratecfg *r,
Eric Dumazet3e1e3aa2013-09-19 09:10:03 -0700999 const struct tc_ratespec *conf,
1000 u64 rate64)
Jiri Pirko292f1c72013-02-12 00:12:03 +00001001{
Eric Dumazet01cb71d2013-06-02 13:55:05 +00001002 memset(r, 0, sizeof(*r));
1003 r->overhead = conf->overhead;
Eric Dumazet3e1e3aa2013-09-19 09:10:03 -07001004 r->rate_bytes_ps = max_t(u64, conf->rate, rate64);
Jesper Dangaard Brouer8a8e3d82013-08-14 23:47:11 +02001005 r->linklayer = (conf->linklayer & TC_LINKLAYER_MASK);
Jiri Pirko292f1c72013-02-12 00:12:03 +00001006 r->mult = 1;
1007 /*
Eric Dumazet130d3d62013-06-06 13:56:19 -07001008 * The deal here is to replace a divide by a reciprocal one
1009 * in fast path (a reciprocal divide is a multiply and a shift)
1010 *
1011 * Normal formula would be :
1012 * time_in_ns = (NSEC_PER_SEC * len) / rate_bps
1013 *
1014 * We compute mult/shift to use instead :
1015 * time_in_ns = (len * mult) >> shift;
1016 *
1017 * We try to get the highest possible mult value for accuracy,
1018 * but have to make sure no overflows will ever happen.
Jiri Pirko292f1c72013-02-12 00:12:03 +00001019 */
Eric Dumazet130d3d62013-06-06 13:56:19 -07001020 if (r->rate_bytes_ps > 0) {
1021 u64 factor = NSEC_PER_SEC;
Jiri Pirko292f1c72013-02-12 00:12:03 +00001022
Eric Dumazet130d3d62013-06-06 13:56:19 -07001023 for (;;) {
1024 r->mult = div64_u64(factor, r->rate_bytes_ps);
1025 if (r->mult & (1U << 31) || factor & (1ULL << 63))
1026 break;
1027 factor <<= 1;
1028 r->shift++;
1029 }
Jiri Pirko292f1c72013-02-12 00:12:03 +00001030 }
1031}
1032EXPORT_SYMBOL(psched_ratecfg_precompute);
Jiri Pirko46209402017-11-03 11:46:25 +01001033
1034static void mini_qdisc_rcu_func(struct rcu_head *head)
1035{
1036}
1037
1038void mini_qdisc_pair_swap(struct mini_Qdisc_pair *miniqp,
1039 struct tcf_proto *tp_head)
1040{
1041 struct mini_Qdisc *miniq_old = rtnl_dereference(*miniqp->p_miniq);
1042 struct mini_Qdisc *miniq;
1043
1044 if (!tp_head) {
1045 RCU_INIT_POINTER(*miniqp->p_miniq, NULL);
1046 return;
1047 }
1048
1049 miniq = !miniq_old || miniq_old == &miniqp->miniq2 ?
1050 &miniqp->miniq1 : &miniqp->miniq2;
1051
1052 /* We need to make sure that readers won't see the miniq
1053 * we are about to modify. So wait until previous call_rcu_bh callback
1054 * is done.
1055 */
1056 rcu_barrier_bh();
1057 miniq->filter_list = tp_head;
1058 rcu_assign_pointer(*miniqp->p_miniq, miniq);
1059
1060 if (miniq_old)
1061 /* This is counterpart of the rcu barrier above. We need to
1062 * block potential new user of miniq_old until all readers
1063 * are not seeing it.
1064 */
1065 call_rcu_bh(&miniq_old->rcu, mini_qdisc_rcu_func);
1066}
1067EXPORT_SYMBOL(mini_qdisc_pair_swap);
1068
1069void mini_qdisc_pair_init(struct mini_Qdisc_pair *miniqp, struct Qdisc *qdisc,
1070 struct mini_Qdisc __rcu **p_miniq)
1071{
1072 miniqp->miniq1.cpu_bstats = qdisc->cpu_bstats;
1073 miniqp->miniq1.cpu_qstats = qdisc->cpu_qstats;
1074 miniqp->miniq2.cpu_bstats = qdisc->cpu_bstats;
1075 miniqp->miniq2.cpu_qstats = qdisc->cpu_qstats;
1076 miniqp->p_miniq = p_miniq;
1077}
1078EXPORT_SYMBOL(mini_qdisc_pair_init);