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/string.h>
15 #include <linux/errno.h>
16 #include <linux/skbuff.h>
17 #include <net/netlink.h>
18 #include <net/pkt_sched.h>
21 struct Qdisc
**qdiscs
;
24 static void mq_destroy(struct Qdisc
*sch
)
26 struct net_device
*dev
= qdisc_dev(sch
);
27 struct mq_sched
*priv
= qdisc_priv(sch
);
32 for (ntx
= 0; ntx
< dev
->num_tx_queues
&& priv
->qdiscs
[ntx
]; ntx
++)
33 qdisc_destroy(priv
->qdiscs
[ntx
]);
37 static int mq_init(struct Qdisc
*sch
, struct nlattr
*opt
)
39 struct net_device
*dev
= qdisc_dev(sch
);
40 struct mq_sched
*priv
= qdisc_priv(sch
);
41 struct netdev_queue
*dev_queue
;
45 if (sch
->parent
!= TC_H_ROOT
)
48 if (!netif_is_multiqueue(dev
))
51 /* pre-allocate qdiscs, attachment can't fail */
52 priv
->qdiscs
= kcalloc(dev
->num_tx_queues
, sizeof(priv
->qdiscs
[0]),
54 if (priv
->qdiscs
== NULL
)
57 for (ntx
= 0; ntx
< dev
->num_tx_queues
; ntx
++) {
58 dev_queue
= netdev_get_tx_queue(dev
, ntx
);
59 qdisc
= qdisc_create_dflt(dev_queue
, &pfifo_fast_ops
,
60 TC_H_MAKE(TC_H_MAJ(sch
->handle
),
64 priv
->qdiscs
[ntx
] = qdisc
;
67 sch
->flags
|= TCQ_F_MQROOT
;
75 static void mq_attach(struct Qdisc
*sch
)
77 struct net_device
*dev
= qdisc_dev(sch
);
78 struct mq_sched
*priv
= qdisc_priv(sch
);
82 for (ntx
= 0; ntx
< dev
->num_tx_queues
; ntx
++) {
83 qdisc
= priv
->qdiscs
[ntx
];
84 qdisc
= dev_graft_qdisc(qdisc
->dev_queue
, qdisc
);
92 static int mq_dump(struct Qdisc
*sch
, struct sk_buff
*skb
)
94 struct net_device
*dev
= qdisc_dev(sch
);
99 memset(&sch
->bstats
, 0, sizeof(sch
->bstats
));
100 memset(&sch
->qstats
, 0, sizeof(sch
->qstats
));
102 for (ntx
= 0; ntx
< dev
->num_tx_queues
; ntx
++) {
103 qdisc
= netdev_get_tx_queue(dev
, ntx
)->qdisc_sleeping
;
104 spin_lock_bh(qdisc_lock(qdisc
));
105 sch
->q
.qlen
+= qdisc
->q
.qlen
;
106 sch
->bstats
.bytes
+= qdisc
->bstats
.bytes
;
107 sch
->bstats
.packets
+= qdisc
->bstats
.packets
;
108 sch
->qstats
.qlen
+= qdisc
->qstats
.qlen
;
109 sch
->qstats
.backlog
+= qdisc
->qstats
.backlog
;
110 sch
->qstats
.drops
+= qdisc
->qstats
.drops
;
111 sch
->qstats
.requeues
+= qdisc
->qstats
.requeues
;
112 sch
->qstats
.overlimits
+= qdisc
->qstats
.overlimits
;
113 spin_unlock_bh(qdisc_lock(qdisc
));
118 static struct netdev_queue
*mq_queue_get(struct Qdisc
*sch
, unsigned long cl
)
120 struct net_device
*dev
= qdisc_dev(sch
);
121 unsigned long ntx
= cl
- 1;
123 if (ntx
>= dev
->num_tx_queues
)
125 return netdev_get_tx_queue(dev
, ntx
);
128 static struct netdev_queue
*mq_select_queue(struct Qdisc
*sch
,
131 unsigned int ntx
= TC_H_MIN(tcm
->tcm_parent
);
132 struct netdev_queue
*dev_queue
= mq_queue_get(sch
, ntx
);
135 struct net_device
*dev
= qdisc_dev(sch
);
137 return netdev_get_tx_queue(dev
, 0);
142 static int mq_graft(struct Qdisc
*sch
, unsigned long cl
, struct Qdisc
*new,
145 struct netdev_queue
*dev_queue
= mq_queue_get(sch
, cl
);
146 struct net_device
*dev
= qdisc_dev(sch
);
148 if (dev
->flags
& IFF_UP
)
151 *old
= dev_graft_qdisc(dev_queue
, new);
153 if (dev
->flags
& IFF_UP
)
158 static struct Qdisc
*mq_leaf(struct Qdisc
*sch
, unsigned long cl
)
160 struct netdev_queue
*dev_queue
= mq_queue_get(sch
, cl
);
162 return dev_queue
->qdisc_sleeping
;
165 static unsigned long mq_get(struct Qdisc
*sch
, u32 classid
)
167 unsigned int ntx
= TC_H_MIN(classid
);
169 if (!mq_queue_get(sch
, ntx
))
174 static void mq_put(struct Qdisc
*sch
, unsigned long cl
)
178 static int mq_dump_class(struct Qdisc
*sch
, unsigned long cl
,
179 struct sk_buff
*skb
, struct tcmsg
*tcm
)
181 struct netdev_queue
*dev_queue
= mq_queue_get(sch
, cl
);
183 tcm
->tcm_parent
= TC_H_ROOT
;
184 tcm
->tcm_handle
|= TC_H_MIN(cl
);
185 tcm
->tcm_info
= dev_queue
->qdisc_sleeping
->handle
;
189 static int mq_dump_class_stats(struct Qdisc
*sch
, unsigned long cl
,
192 struct netdev_queue
*dev_queue
= mq_queue_get(sch
, cl
);
194 sch
= dev_queue
->qdisc_sleeping
;
195 sch
->qstats
.qlen
= sch
->q
.qlen
;
196 if (gnet_stats_copy_basic(d
, &sch
->bstats
) < 0 ||
197 gnet_stats_copy_queue(d
, &sch
->qstats
) < 0)
202 static void mq_walk(struct Qdisc
*sch
, struct qdisc_walker
*arg
)
204 struct net_device
*dev
= qdisc_dev(sch
);
210 arg
->count
= arg
->skip
;
211 for (ntx
= arg
->skip
; ntx
< dev
->num_tx_queues
; ntx
++) {
212 if (arg
->fn(sch
, ntx
+ 1, arg
) < 0) {
220 static const struct Qdisc_class_ops mq_class_ops
= {
221 .select_queue
= mq_select_queue
,
227 .dump
= mq_dump_class
,
228 .dump_stats
= mq_dump_class_stats
,
231 struct Qdisc_ops mq_qdisc_ops __read_mostly
= {
232 .cl_ops
= &mq_class_ops
,
234 .priv_size
= sizeof(struct mq_sched
),
236 .destroy
= mq_destroy
,
239 .owner
= THIS_MODULE
,