2 * net/sched/sch_mqprio.c
4 * Copyright (c) 2010 John Fastabend <john.r.fastabend@intel.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
11 #include <linux/types.h>
12 #include <linux/slab.h>
13 #include <linux/kernel.h>
14 #include <linux/string.h>
15 #include <linux/errno.h>
16 #include <linux/skbuff.h>
17 #include <linux/module.h>
18 #include <net/netlink.h>
19 #include <net/pkt_sched.h>
20 #include <net/sch_generic.h>
23 struct Qdisc
**qdiscs
;
27 static void mqprio_destroy(struct Qdisc
*sch
)
29 struct net_device
*dev
= qdisc_dev(sch
);
30 struct mqprio_sched
*priv
= qdisc_priv(sch
);
35 ntx
< dev
->num_tx_queues
&& priv
->qdiscs
[ntx
];
37 qdisc_destroy(priv
->qdiscs
[ntx
]);
41 if (priv
->hw_owned
&& dev
->netdev_ops
->ndo_setup_tc
)
42 dev
->netdev_ops
->ndo_setup_tc(dev
, 0);
44 netdev_set_num_tc(dev
, 0);
47 static int mqprio_parse_opt(struct net_device
*dev
, struct tc_mqprio_qopt
*qopt
)
51 /* Verify num_tc is not out of max range */
52 if (qopt
->num_tc
> TC_MAX_QUEUE
)
55 /* Verify priority mapping uses valid tcs */
56 for (i
= 0; i
< TC_BITMASK
+ 1; i
++) {
57 if (qopt
->prio_tc_map
[i
] >= qopt
->num_tc
)
61 /* net_device does not support requested operation */
62 if (qopt
->hw
&& !dev
->netdev_ops
->ndo_setup_tc
)
65 /* if hw owned qcount and qoffset are taken from LLD so
66 * no reason to verify them here
71 for (i
= 0; i
< qopt
->num_tc
; i
++) {
72 unsigned int last
= qopt
->offset
[i
] + qopt
->count
[i
];
74 /* Verify the queue count is in tx range being equal to the
75 * real_num_tx_queues indicates the last queue is in use.
77 if (qopt
->offset
[i
] >= dev
->real_num_tx_queues
||
79 last
> dev
->real_num_tx_queues
)
82 /* Verify that the offset and counts do not overlap */
83 for (j
= i
+ 1; j
< qopt
->num_tc
; j
++) {
84 if (last
> qopt
->offset
[j
])
92 static int mqprio_init(struct Qdisc
*sch
, struct nlattr
*opt
)
94 struct net_device
*dev
= qdisc_dev(sch
);
95 struct mqprio_sched
*priv
= qdisc_priv(sch
);
96 struct netdev_queue
*dev_queue
;
98 int i
, err
= -EOPNOTSUPP
;
99 struct tc_mqprio_qopt
*qopt
= NULL
;
101 BUILD_BUG_ON(TC_MAX_QUEUE
!= TC_QOPT_MAX_QUEUE
);
102 BUILD_BUG_ON(TC_BITMASK
!= TC_QOPT_BITMASK
);
104 if (sch
->parent
!= TC_H_ROOT
)
107 if (!netif_is_multiqueue(dev
))
110 if (!opt
|| nla_len(opt
) < sizeof(*qopt
))
113 qopt
= nla_data(opt
);
114 if (mqprio_parse_opt(dev
, qopt
))
117 /* pre-allocate qdisc, attachment can't fail */
118 priv
->qdiscs
= kcalloc(dev
->num_tx_queues
, sizeof(priv
->qdiscs
[0]),
120 if (priv
->qdiscs
== NULL
) {
125 for (i
= 0; i
< dev
->num_tx_queues
; i
++) {
126 dev_queue
= netdev_get_tx_queue(dev
, i
);
127 qdisc
= qdisc_create_dflt(dev_queue
, &pfifo_fast_ops
,
128 TC_H_MAKE(TC_H_MAJ(sch
->handle
),
134 priv
->qdiscs
[i
] = qdisc
;
137 /* If the mqprio options indicate that hardware should own
138 * the queue mapping then run ndo_setup_tc otherwise use the
139 * supplied and verified mapping
143 err
= dev
->netdev_ops
->ndo_setup_tc(dev
, qopt
->num_tc
);
147 netdev_set_num_tc(dev
, qopt
->num_tc
);
148 for (i
= 0; i
< qopt
->num_tc
; i
++)
149 netdev_set_tc_queue(dev
, i
,
150 qopt
->count
[i
], qopt
->offset
[i
]);
153 /* Always use supplied priority mappings */
154 for (i
= 0; i
< TC_BITMASK
+ 1; i
++)
155 netdev_set_prio_tc_map(dev
, i
, qopt
->prio_tc_map
[i
]);
157 sch
->flags
|= TCQ_F_MQROOT
;
165 static void mqprio_attach(struct Qdisc
*sch
)
167 struct net_device
*dev
= qdisc_dev(sch
);
168 struct mqprio_sched
*priv
= qdisc_priv(sch
);
172 /* Attach underlying qdisc */
173 for (ntx
= 0; ntx
< dev
->num_tx_queues
; ntx
++) {
174 qdisc
= priv
->qdiscs
[ntx
];
175 qdisc
= dev_graft_qdisc(qdisc
->dev_queue
, qdisc
);
177 qdisc_destroy(qdisc
);
183 static struct netdev_queue
*mqprio_queue_get(struct Qdisc
*sch
,
186 struct net_device
*dev
= qdisc_dev(sch
);
187 unsigned long ntx
= cl
- 1 - netdev_get_num_tc(dev
);
189 if (ntx
>= dev
->num_tx_queues
)
191 return netdev_get_tx_queue(dev
, ntx
);
194 static int mqprio_graft(struct Qdisc
*sch
, unsigned long cl
, struct Qdisc
*new,
197 struct net_device
*dev
= qdisc_dev(sch
);
198 struct netdev_queue
*dev_queue
= mqprio_queue_get(sch
, cl
);
203 if (dev
->flags
& IFF_UP
)
206 *old
= dev_graft_qdisc(dev_queue
, new);
208 if (dev
->flags
& IFF_UP
)
214 static int mqprio_dump(struct Qdisc
*sch
, struct sk_buff
*skb
)
216 struct net_device
*dev
= qdisc_dev(sch
);
217 struct mqprio_sched
*priv
= qdisc_priv(sch
);
218 unsigned char *b
= skb_tail_pointer(skb
);
219 struct tc_mqprio_qopt opt
= { 0 };
224 memset(&sch
->bstats
, 0, sizeof(sch
->bstats
));
225 memset(&sch
->qstats
, 0, sizeof(sch
->qstats
));
227 for (i
= 0; i
< dev
->num_tx_queues
; i
++) {
228 qdisc
= netdev_get_tx_queue(dev
, i
)->qdisc
;
229 spin_lock_bh(qdisc_lock(qdisc
));
230 sch
->q
.qlen
+= qdisc
->q
.qlen
;
231 sch
->bstats
.bytes
+= qdisc
->bstats
.bytes
;
232 sch
->bstats
.packets
+= qdisc
->bstats
.packets
;
233 sch
->qstats
.qlen
+= qdisc
->qstats
.qlen
;
234 sch
->qstats
.backlog
+= qdisc
->qstats
.backlog
;
235 sch
->qstats
.drops
+= qdisc
->qstats
.drops
;
236 sch
->qstats
.requeues
+= qdisc
->qstats
.requeues
;
237 sch
->qstats
.overlimits
+= qdisc
->qstats
.overlimits
;
238 spin_unlock_bh(qdisc_lock(qdisc
));
241 opt
.num_tc
= netdev_get_num_tc(dev
);
242 memcpy(opt
.prio_tc_map
, dev
->prio_tc_map
, sizeof(opt
.prio_tc_map
));
243 opt
.hw
= priv
->hw_owned
;
245 for (i
= 0; i
< netdev_get_num_tc(dev
); i
++) {
246 opt
.count
[i
] = dev
->tc_to_txq
[i
].count
;
247 opt
.offset
[i
] = dev
->tc_to_txq
[i
].offset
;
250 if (nla_put(skb
, TCA_OPTIONS
, sizeof(opt
), &opt
))
251 goto nla_put_failure
;
259 static struct Qdisc
*mqprio_leaf(struct Qdisc
*sch
, unsigned long cl
)
261 struct netdev_queue
*dev_queue
= mqprio_queue_get(sch
, cl
);
266 return dev_queue
->qdisc_sleeping
;
269 static unsigned long mqprio_get(struct Qdisc
*sch
, u32 classid
)
271 struct net_device
*dev
= qdisc_dev(sch
);
272 unsigned int ntx
= TC_H_MIN(classid
);
274 if (ntx
> dev
->num_tx_queues
+ netdev_get_num_tc(dev
))
279 static void mqprio_put(struct Qdisc
*sch
, unsigned long cl
)
283 static int mqprio_dump_class(struct Qdisc
*sch
, unsigned long cl
,
284 struct sk_buff
*skb
, struct tcmsg
*tcm
)
286 struct net_device
*dev
= qdisc_dev(sch
);
288 if (cl
<= netdev_get_num_tc(dev
)) {
289 tcm
->tcm_parent
= TC_H_ROOT
;
293 struct netdev_queue
*dev_queue
;
295 dev_queue
= mqprio_queue_get(sch
, cl
);
297 for (i
= 0; i
< netdev_get_num_tc(dev
); i
++) {
298 struct netdev_tc_txq tc
= dev
->tc_to_txq
[i
];
299 int q_idx
= cl
- netdev_get_num_tc(dev
);
301 if (q_idx
> tc
.offset
&&
302 q_idx
<= tc
.offset
+ tc
.count
) {
304 TC_H_MAKE(TC_H_MAJ(sch
->handle
),
309 tcm
->tcm_info
= dev_queue
->qdisc_sleeping
->handle
;
311 tcm
->tcm_handle
|= TC_H_MIN(cl
);
315 static int mqprio_dump_class_stats(struct Qdisc
*sch
, unsigned long cl
,
320 struct net_device
*dev
= qdisc_dev(sch
);
322 if (cl
<= netdev_get_num_tc(dev
)) {
325 struct gnet_stats_queue qstats
= {0};
326 struct gnet_stats_basic_packed bstats
= {0};
327 struct netdev_tc_txq tc
= dev
->tc_to_txq
[cl
- 1];
329 /* Drop lock here it will be reclaimed before touching
330 * statistics this is required because the d->lock we
331 * hold here is the look on dev_queue->qdisc_sleeping
332 * also acquired below.
334 spin_unlock_bh(d
->lock
);
336 for (i
= tc
.offset
; i
< tc
.offset
+ tc
.count
; i
++) {
337 qdisc
= netdev_get_tx_queue(dev
, i
)->qdisc
;
338 spin_lock_bh(qdisc_lock(qdisc
));
339 bstats
.bytes
+= qdisc
->bstats
.bytes
;
340 bstats
.packets
+= qdisc
->bstats
.packets
;
341 qstats
.qlen
+= qdisc
->qstats
.qlen
;
342 qstats
.backlog
+= qdisc
->qstats
.backlog
;
343 qstats
.drops
+= qdisc
->qstats
.drops
;
344 qstats
.requeues
+= qdisc
->qstats
.requeues
;
345 qstats
.overlimits
+= qdisc
->qstats
.overlimits
;
346 spin_unlock_bh(qdisc_lock(qdisc
));
348 /* Reclaim root sleeping lock before completing stats */
349 spin_lock_bh(d
->lock
);
350 if (gnet_stats_copy_basic(d
, &bstats
) < 0 ||
351 gnet_stats_copy_queue(d
, &qstats
) < 0)
354 struct netdev_queue
*dev_queue
= mqprio_queue_get(sch
, cl
);
356 sch
= dev_queue
->qdisc_sleeping
;
357 sch
->qstats
.qlen
= sch
->q
.qlen
;
358 if (gnet_stats_copy_basic(d
, &sch
->bstats
) < 0 ||
359 gnet_stats_copy_queue(d
, &sch
->qstats
) < 0)
365 static void mqprio_walk(struct Qdisc
*sch
, struct qdisc_walker
*arg
)
367 struct net_device
*dev
= qdisc_dev(sch
);
373 /* Walk hierarchy with a virtual class per tc */
374 arg
->count
= arg
->skip
;
375 for (ntx
= arg
->skip
;
376 ntx
< dev
->num_tx_queues
+ netdev_get_num_tc(dev
);
378 if (arg
->fn(sch
, ntx
+ 1, arg
) < 0) {
386 static const struct Qdisc_class_ops mqprio_class_ops
= {
387 .graft
= mqprio_graft
,
392 .dump
= mqprio_dump_class
,
393 .dump_stats
= mqprio_dump_class_stats
,
396 static struct Qdisc_ops mqprio_qdisc_ops __read_mostly
= {
397 .cl_ops
= &mqprio_class_ops
,
399 .priv_size
= sizeof(struct mqprio_sched
),
401 .destroy
= mqprio_destroy
,
402 .attach
= mqprio_attach
,
404 .owner
= THIS_MODULE
,
407 static int __init
mqprio_module_init(void)
409 return register_qdisc(&mqprio_qdisc_ops
);
412 static void __exit
mqprio_module_exit(void)
414 unregister_qdisc(&mqprio_qdisc_ops
);
417 module_init(mqprio_module_init
);
418 module_exit(mqprio_module_exit
);
420 MODULE_LICENSE("GPL");