2 * net/sched/sch_mq.c Classful multiqueue dummy scheduler
4 * Copyright (c) 2009 Patrick McHardy <kaber@trash.net>
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/export.h>
15 #include <linux/string.h>
16 #include <linux/errno.h>
17 #include <linux/skbuff.h>
18 #include <net/netlink.h>
19 #include <net/pkt_sched.h>
22 struct Qdisc
**qdiscs
;
25 static void mq_destroy(struct Qdisc
*sch
)
27 struct net_device
*dev
= qdisc_dev(sch
);
28 struct mq_sched
*priv
= qdisc_priv(sch
);
33 for (ntx
= 0; ntx
< dev
->num_tx_queues
&& priv
->qdiscs
[ntx
]; ntx
++)
34 qdisc_destroy(priv
->qdiscs
[ntx
]);
38 static int mq_init(struct Qdisc
*sch
, struct nlattr
*opt
)
40 struct net_device
*dev
= qdisc_dev(sch
);
41 struct mq_sched
*priv
= qdisc_priv(sch
);
42 struct netdev_queue
*dev_queue
;
46 if (sch
->parent
!= TC_H_ROOT
)
49 if (!netif_is_multiqueue(dev
))
52 /* pre-allocate qdiscs, attachment can't fail */
53 priv
->qdiscs
= kcalloc(dev
->num_tx_queues
, sizeof(priv
->qdiscs
[0]),
55 if (priv
->qdiscs
== NULL
)
58 for (ntx
= 0; ntx
< dev
->num_tx_queues
; ntx
++) {
59 dev_queue
= netdev_get_tx_queue(dev
, ntx
);
60 qdisc
= qdisc_create_dflt(dev_queue
, default_qdisc_ops
,
61 TC_H_MAKE(TC_H_MAJ(sch
->handle
),
65 priv
->qdiscs
[ntx
] = qdisc
;
66 qdisc
->flags
|= TCQ_F_ONETXQUEUE
;
69 sch
->flags
|= TCQ_F_MQROOT
;
77 static void mq_attach(struct Qdisc
*sch
)
79 struct net_device
*dev
= qdisc_dev(sch
);
80 struct mq_sched
*priv
= qdisc_priv(sch
);
81 struct Qdisc
*qdisc
, *old
;
84 for (ntx
= 0; ntx
< dev
->num_tx_queues
; ntx
++) {
85 qdisc
= priv
->qdiscs
[ntx
];
86 old
= dev_graft_qdisc(qdisc
->dev_queue
, qdisc
);
89 #ifdef CONFIG_NET_SCHED
90 if (ntx
< dev
->real_num_tx_queues
)
91 qdisc_list_add(qdisc
);
99 static int mq_dump(struct Qdisc
*sch
, struct sk_buff
*skb
)
101 struct net_device
*dev
= qdisc_dev(sch
);
106 memset(&sch
->bstats
, 0, sizeof(sch
->bstats
));
107 memset(&sch
->qstats
, 0, sizeof(sch
->qstats
));
109 for (ntx
= 0; ntx
< dev
->num_tx_queues
; ntx
++) {
110 qdisc
= netdev_get_tx_queue(dev
, ntx
)->qdisc_sleeping
;
111 spin_lock_bh(qdisc_lock(qdisc
));
112 sch
->q
.qlen
+= qdisc
->q
.qlen
;
113 sch
->bstats
.bytes
+= qdisc
->bstats
.bytes
;
114 sch
->bstats
.packets
+= qdisc
->bstats
.packets
;
115 sch
->qstats
.backlog
+= qdisc
->qstats
.backlog
;
116 sch
->qstats
.drops
+= qdisc
->qstats
.drops
;
117 sch
->qstats
.requeues
+= qdisc
->qstats
.requeues
;
118 sch
->qstats
.overlimits
+= qdisc
->qstats
.overlimits
;
119 spin_unlock_bh(qdisc_lock(qdisc
));
124 static struct netdev_queue
*mq_queue_get(struct Qdisc
*sch
, unsigned long cl
)
126 struct net_device
*dev
= qdisc_dev(sch
);
127 unsigned long ntx
= cl
- 1;
129 if (ntx
>= dev
->num_tx_queues
)
131 return netdev_get_tx_queue(dev
, ntx
);
134 static struct netdev_queue
*mq_select_queue(struct Qdisc
*sch
,
137 unsigned int ntx
= TC_H_MIN(tcm
->tcm_parent
);
138 struct netdev_queue
*dev_queue
= mq_queue_get(sch
, ntx
);
141 struct net_device
*dev
= qdisc_dev(sch
);
143 return netdev_get_tx_queue(dev
, 0);
148 static int mq_graft(struct Qdisc
*sch
, unsigned long cl
, struct Qdisc
*new,
151 struct netdev_queue
*dev_queue
= mq_queue_get(sch
, cl
);
152 struct net_device
*dev
= qdisc_dev(sch
);
154 if (dev
->flags
& IFF_UP
)
157 *old
= dev_graft_qdisc(dev_queue
, new);
159 new->flags
|= TCQ_F_ONETXQUEUE
;
160 if (dev
->flags
& IFF_UP
)
165 static struct Qdisc
*mq_leaf(struct Qdisc
*sch
, unsigned long cl
)
167 struct netdev_queue
*dev_queue
= mq_queue_get(sch
, cl
);
169 return dev_queue
->qdisc_sleeping
;
172 static unsigned long mq_get(struct Qdisc
*sch
, u32 classid
)
174 unsigned int ntx
= TC_H_MIN(classid
);
176 if (!mq_queue_get(sch
, ntx
))
181 static void mq_put(struct Qdisc
*sch
, unsigned long cl
)
185 static int mq_dump_class(struct Qdisc
*sch
, unsigned long cl
,
186 struct sk_buff
*skb
, struct tcmsg
*tcm
)
188 struct netdev_queue
*dev_queue
= mq_queue_get(sch
, cl
);
190 tcm
->tcm_parent
= TC_H_ROOT
;
191 tcm
->tcm_handle
|= TC_H_MIN(cl
);
192 tcm
->tcm_info
= dev_queue
->qdisc_sleeping
->handle
;
196 static int mq_dump_class_stats(struct Qdisc
*sch
, unsigned long cl
,
199 struct netdev_queue
*dev_queue
= mq_queue_get(sch
, cl
);
201 sch
= dev_queue
->qdisc_sleeping
;
202 if (gnet_stats_copy_basic(d
, NULL
, &sch
->bstats
) < 0 ||
203 gnet_stats_copy_queue(d
, NULL
, &sch
->qstats
, sch
->q
.qlen
) < 0)
208 static void mq_walk(struct Qdisc
*sch
, struct qdisc_walker
*arg
)
210 struct net_device
*dev
= qdisc_dev(sch
);
216 arg
->count
= arg
->skip
;
217 for (ntx
= arg
->skip
; ntx
< dev
->num_tx_queues
; ntx
++) {
218 if (arg
->fn(sch
, ntx
+ 1, arg
) < 0) {
226 static const struct Qdisc_class_ops mq_class_ops
= {
227 .select_queue
= mq_select_queue
,
233 .dump
= mq_dump_class
,
234 .dump_stats
= mq_dump_class_stats
,
237 struct Qdisc_ops mq_qdisc_ops __read_mostly
= {
238 .cl_ops
= &mq_class_ops
,
240 .priv_size
= sizeof(struct mq_sched
),
242 .destroy
= mq_destroy
,
245 .owner
= THIS_MODULE
,