2 * Copyright (c) 2008, Intel Corporation.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 * Author: Alexander Duyck <alexander.h.duyck@intel.com>
20 #include <linux/module.h>
21 #include <linux/types.h>
22 #include <linux/kernel.h>
23 #include <linux/string.h>
24 #include <linux/errno.h>
25 #include <linux/skbuff.h>
26 #include <net/netlink.h>
27 #include <net/pkt_sched.h>
30 struct multiq_sched_data {
34 struct tcf_proto *filter_list;
35 struct Qdisc **queues;
40 multiq_classify(struct sk_buff *skb, struct Qdisc *sch, int *qerr)
42 struct multiq_sched_data *q = qdisc_priv(sch);
44 struct tcf_result res;
47 *qerr = NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
48 err = tc_classify(skb, q->filter_list, &res);
49 #ifdef CONFIG_NET_CLS_ACT
53 *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN;
58 band = skb_get_queue_mapping(skb);
63 return q->queues[band];
67 multiq_enqueue(struct sk_buff *skb, struct Qdisc *sch)
72 qdisc = multiq_classify(skb, sch, &ret);
73 #ifdef CONFIG_NET_CLS_ACT
76 if (ret & __NET_XMIT_BYPASS)
83 ret = qdisc_enqueue(skb, qdisc);
84 if (ret == NET_XMIT_SUCCESS) {
85 sch->bstats.bytes += qdisc_pkt_len(skb);
86 sch->bstats.packets++;
88 return NET_XMIT_SUCCESS;
90 if (net_xmit_drop_count(ret))
97 multiq_requeue(struct sk_buff *skb, struct Qdisc *sch)
100 struct multiq_sched_data *q = qdisc_priv(sch);
103 qdisc = multiq_classify(skb, sch, &ret);
104 #ifdef CONFIG_NET_CLS_ACT
106 if (ret & __NET_XMIT_BYPASS)
113 ret = qdisc->ops->requeue(skb, qdisc);
114 if (ret == NET_XMIT_SUCCESS) {
116 sch->qstats.requeues++;
120 q->curband = q->bands - 1;
121 return NET_XMIT_SUCCESS;
123 if (net_xmit_drop_count(ret))
129 static struct sk_buff *multiq_dequeue(struct Qdisc *sch)
131 struct multiq_sched_data *q = qdisc_priv(sch);
136 for (band = 0; band < q->bands; band++) {
137 /* cycle through bands to ensure fairness */
139 if (q->curband >= q->bands)
142 /* Check that target subqueue is available before
143 * pulling an skb to avoid excessive requeues
145 if (!__netif_subqueue_stopped(qdisc_dev(sch), q->curband)) {
146 qdisc = q->queues[q->curband];
147 skb = qdisc->dequeue(qdisc);
158 static struct sk_buff *multiq_peek(struct Qdisc *sch)
160 struct multiq_sched_data *q = qdisc_priv(sch);
161 unsigned int curband = q->curband;
166 for (band = 0; band < q->bands; band++) {
167 /* cycle through bands to ensure fairness */
169 if (curband >= q->bands)
172 /* Check that target subqueue is available before
173 * pulling an skb to avoid excessive requeues
175 if (!__netif_subqueue_stopped(qdisc_dev(sch), curband)) {
176 qdisc = q->queues[curband];
177 skb = qdisc->ops->peek(qdisc);
186 static unsigned int multiq_drop(struct Qdisc *sch)
188 struct multiq_sched_data *q = qdisc_priv(sch);
193 for (band = q->bands-1; band >= 0; band--) {
194 qdisc = q->queues[band];
195 if (qdisc->ops->drop) {
196 len = qdisc->ops->drop(qdisc);
208 multiq_reset(struct Qdisc *sch)
211 struct multiq_sched_data *q = qdisc_priv(sch);
213 for (band = 0; band < q->bands; band++)
214 qdisc_reset(q->queues[band]);
220 multiq_destroy(struct Qdisc *sch)
223 struct multiq_sched_data *q = qdisc_priv(sch);
225 tcf_destroy_chain(&q->filter_list);
226 for (band = 0; band < q->bands; band++)
227 qdisc_destroy(q->queues[band]);
232 static int multiq_tune(struct Qdisc *sch, struct nlattr *opt)
234 struct multiq_sched_data *q = qdisc_priv(sch);
235 struct tc_multiq_qopt *qopt;
238 if (!netif_is_multiqueue(qdisc_dev(sch)))
240 if (nla_len(opt) < sizeof(*qopt))
243 qopt = nla_data(opt);
245 qopt->bands = qdisc_dev(sch)->real_num_tx_queues;
248 q->bands = qopt->bands;
249 for (i = q->bands; i < q->max_bands; i++) {
250 if (q->queues[i] != &noop_qdisc) {
251 struct Qdisc *child = xchg(&q->queues[i], &noop_qdisc);
252 qdisc_tree_decrease_qlen(child, child->q.qlen);
253 qdisc_destroy(child);
257 sch_tree_unlock(sch);
259 for (i = 0; i < q->bands; i++) {
260 if (q->queues[i] == &noop_qdisc) {
262 child = qdisc_create_dflt(qdisc_dev(sch),
265 TC_H_MAKE(sch->handle,
269 child = xchg(&q->queues[i], child);
271 if (child != &noop_qdisc) {
272 qdisc_tree_decrease_qlen(child,
274 qdisc_destroy(child);
276 sch_tree_unlock(sch);
283 static int multiq_init(struct Qdisc *sch, struct nlattr *opt)
285 struct multiq_sched_data *q = qdisc_priv(sch);
293 q->max_bands = qdisc_dev(sch)->num_tx_queues;
295 q->queues = kcalloc(q->max_bands, sizeof(struct Qdisc *), GFP_KERNEL);
298 for (i = 0; i < q->max_bands; i++)
299 q->queues[i] = &noop_qdisc;
301 err = multiq_tune(sch,opt);
309 static int multiq_dump(struct Qdisc *sch, struct sk_buff *skb)
311 struct multiq_sched_data *q = qdisc_priv(sch);
312 unsigned char *b = skb_tail_pointer(skb);
313 struct tc_multiq_qopt opt;
315 opt.bands = q->bands;
316 opt.max_bands = q->max_bands;
318 NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt);
327 static int multiq_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
330 struct multiq_sched_data *q = qdisc_priv(sch);
331 unsigned long band = arg - 1;
333 if (band >= q->bands)
340 *old = q->queues[band];
341 q->queues[band] = new;
342 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
344 sch_tree_unlock(sch);
349 static struct Qdisc *
350 multiq_leaf(struct Qdisc *sch, unsigned long arg)
352 struct multiq_sched_data *q = qdisc_priv(sch);
353 unsigned long band = arg - 1;
355 if (band >= q->bands)
358 return q->queues[band];
361 static unsigned long multiq_get(struct Qdisc *sch, u32 classid)
363 struct multiq_sched_data *q = qdisc_priv(sch);
364 unsigned long band = TC_H_MIN(classid);
366 if (band - 1 >= q->bands)
371 static unsigned long multiq_bind(struct Qdisc *sch, unsigned long parent,
374 return multiq_get(sch, classid);
378 static void multiq_put(struct Qdisc *q, unsigned long cl)
383 static int multiq_change(struct Qdisc *sch, u32 handle, u32 parent,
384 struct nlattr **tca, unsigned long *arg)
386 unsigned long cl = *arg;
387 struct multiq_sched_data *q = qdisc_priv(sch);
389 if (cl - 1 > q->bands)
394 static int multiq_delete(struct Qdisc *sch, unsigned long cl)
396 struct multiq_sched_data *q = qdisc_priv(sch);
397 if (cl - 1 > q->bands)
403 static int multiq_dump_class(struct Qdisc *sch, unsigned long cl,
404 struct sk_buff *skb, struct tcmsg *tcm)
406 struct multiq_sched_data *q = qdisc_priv(sch);
408 if (cl - 1 > q->bands)
410 tcm->tcm_handle |= TC_H_MIN(cl);
412 tcm->tcm_info = q->queues[cl-1]->handle;
416 static int multiq_dump_class_stats(struct Qdisc *sch, unsigned long cl,
419 struct multiq_sched_data *q = qdisc_priv(sch);
422 cl_q = q->queues[cl - 1];
423 if (gnet_stats_copy_basic(d, &cl_q->bstats) < 0 ||
424 gnet_stats_copy_queue(d, &cl_q->qstats) < 0)
430 static void multiq_walk(struct Qdisc *sch, struct qdisc_walker *arg)
432 struct multiq_sched_data *q = qdisc_priv(sch);
438 for (band = 0; band < q->bands; band++) {
439 if (arg->count < arg->skip) {
443 if (arg->fn(sch, band+1, arg) < 0) {
451 static struct tcf_proto **multiq_find_tcf(struct Qdisc *sch, unsigned long cl)
453 struct multiq_sched_data *q = qdisc_priv(sch);
457 return &q->filter_list;
460 static const struct Qdisc_class_ops multiq_class_ops = {
461 .graft = multiq_graft,
465 .change = multiq_change,
466 .delete = multiq_delete,
468 .tcf_chain = multiq_find_tcf,
469 .bind_tcf = multiq_bind,
470 .unbind_tcf = multiq_put,
471 .dump = multiq_dump_class,
472 .dump_stats = multiq_dump_class_stats,
475 static struct Qdisc_ops multiq_qdisc_ops __read_mostly = {
477 .cl_ops = &multiq_class_ops,
479 .priv_size = sizeof(struct multiq_sched_data),
480 .enqueue = multiq_enqueue,
481 .dequeue = multiq_dequeue,
483 .requeue = multiq_requeue,
486 .reset = multiq_reset,
487 .destroy = multiq_destroy,
488 .change = multiq_tune,
490 .owner = THIS_MODULE,
493 static int __init multiq_module_init(void)
495 return register_qdisc(&multiq_qdisc_ops);
498 static void __exit multiq_module_exit(void)
500 unregister_qdisc(&multiq_qdisc_ops);
503 module_init(multiq_module_init)
504 module_exit(multiq_module_exit)
506 MODULE_LICENSE("GPL");