Linux 3.2.102
[pandora-kernel.git] / net / sched / sch_mq.c
1 /*
2  * net/sched/sch_mq.c           Classful multiqueue dummy scheduler
3  *
4  * Copyright (c) 2009 Patrick McHardy <kaber@trash.net>
5  *
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.
9  */
10
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>
20
21 struct mq_sched {
22         struct Qdisc            **qdiscs;
23 };
24
25 static void mq_destroy(struct Qdisc *sch)
26 {
27         struct net_device *dev = qdisc_dev(sch);
28         struct mq_sched *priv = qdisc_priv(sch);
29         unsigned int ntx;
30
31         if (!priv->qdiscs)
32                 return;
33         for (ntx = 0; ntx < dev->num_tx_queues && priv->qdiscs[ntx]; ntx++)
34                 qdisc_destroy(priv->qdiscs[ntx]);
35         kfree(priv->qdiscs);
36 }
37
38 static int mq_init(struct Qdisc *sch, struct nlattr *opt)
39 {
40         struct net_device *dev = qdisc_dev(sch);
41         struct mq_sched *priv = qdisc_priv(sch);
42         struct netdev_queue *dev_queue;
43         struct Qdisc *qdisc;
44         unsigned int ntx;
45
46         if (sch->parent != TC_H_ROOT)
47                 return -EOPNOTSUPP;
48
49         if (!netif_is_multiqueue(dev))
50                 return -EOPNOTSUPP;
51
52         /* pre-allocate qdiscs, attachment can't fail */
53         priv->qdiscs = kcalloc(dev->num_tx_queues, sizeof(priv->qdiscs[0]),
54                                GFP_KERNEL);
55         if (!priv->qdiscs)
56                 return -ENOMEM;
57
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, &pfifo_fast_ops,
61                                           TC_H_MAKE(TC_H_MAJ(sch->handle),
62                                                     TC_H_MIN(ntx + 1)));
63                 if (!qdisc)
64                         return -ENOMEM;
65                 priv->qdiscs[ntx] = qdisc;
66         }
67
68         sch->flags |= TCQ_F_MQROOT;
69         return 0;
70 }
71
72 static void mq_attach(struct Qdisc *sch)
73 {
74         struct net_device *dev = qdisc_dev(sch);
75         struct mq_sched *priv = qdisc_priv(sch);
76         struct Qdisc *qdisc;
77         unsigned int ntx;
78
79         for (ntx = 0; ntx < dev->num_tx_queues; ntx++) {
80                 qdisc = priv->qdiscs[ntx];
81                 qdisc = dev_graft_qdisc(qdisc->dev_queue, qdisc);
82                 if (qdisc)
83                         qdisc_destroy(qdisc);
84         }
85         kfree(priv->qdiscs);
86         priv->qdiscs = NULL;
87 }
88
89 static int mq_dump(struct Qdisc *sch, struct sk_buff *skb)
90 {
91         struct net_device *dev = qdisc_dev(sch);
92         struct Qdisc *qdisc;
93         unsigned int ntx;
94
95         sch->q.qlen = 0;
96         memset(&sch->bstats, 0, sizeof(sch->bstats));
97         memset(&sch->qstats, 0, sizeof(sch->qstats));
98
99         for (ntx = 0; ntx < dev->num_tx_queues; ntx++) {
100                 qdisc = netdev_get_tx_queue(dev, ntx)->qdisc_sleeping;
101                 spin_lock_bh(qdisc_lock(qdisc));
102                 sch->q.qlen             += qdisc->q.qlen;
103                 sch->bstats.bytes       += qdisc->bstats.bytes;
104                 sch->bstats.packets     += qdisc->bstats.packets;
105                 sch->qstats.qlen        += qdisc->qstats.qlen;
106                 sch->qstats.backlog     += qdisc->qstats.backlog;
107                 sch->qstats.drops       += qdisc->qstats.drops;
108                 sch->qstats.requeues    += qdisc->qstats.requeues;
109                 sch->qstats.overlimits  += qdisc->qstats.overlimits;
110                 spin_unlock_bh(qdisc_lock(qdisc));
111         }
112         return 0;
113 }
114
115 static struct netdev_queue *mq_queue_get(struct Qdisc *sch, unsigned long cl)
116 {
117         struct net_device *dev = qdisc_dev(sch);
118         unsigned long ntx = cl - 1;
119
120         if (ntx >= dev->num_tx_queues)
121                 return NULL;
122         return netdev_get_tx_queue(dev, ntx);
123 }
124
125 static struct netdev_queue *mq_select_queue(struct Qdisc *sch,
126                                             struct tcmsg *tcm)
127 {
128         unsigned int ntx = TC_H_MIN(tcm->tcm_parent);
129         struct netdev_queue *dev_queue = mq_queue_get(sch, ntx);
130
131         if (!dev_queue) {
132                 struct net_device *dev = qdisc_dev(sch);
133
134                 return netdev_get_tx_queue(dev, 0);
135         }
136         return dev_queue;
137 }
138
139 static int mq_graft(struct Qdisc *sch, unsigned long cl, struct Qdisc *new,
140                     struct Qdisc **old)
141 {
142         struct netdev_queue *dev_queue = mq_queue_get(sch, cl);
143         struct net_device *dev = qdisc_dev(sch);
144
145         if (dev->flags & IFF_UP)
146                 dev_deactivate(dev);
147
148         *old = dev_graft_qdisc(dev_queue, new);
149
150         if (dev->flags & IFF_UP)
151                 dev_activate(dev);
152         return 0;
153 }
154
155 static struct Qdisc *mq_leaf(struct Qdisc *sch, unsigned long cl)
156 {
157         struct netdev_queue *dev_queue = mq_queue_get(sch, cl);
158
159         return dev_queue->qdisc_sleeping;
160 }
161
162 static unsigned long mq_get(struct Qdisc *sch, u32 classid)
163 {
164         unsigned int ntx = TC_H_MIN(classid);
165
166         if (!mq_queue_get(sch, ntx))
167                 return 0;
168         return ntx;
169 }
170
171 static void mq_put(struct Qdisc *sch, unsigned long cl)
172 {
173 }
174
175 static int mq_dump_class(struct Qdisc *sch, unsigned long cl,
176                          struct sk_buff *skb, struct tcmsg *tcm)
177 {
178         struct netdev_queue *dev_queue = mq_queue_get(sch, cl);
179
180         tcm->tcm_parent = TC_H_ROOT;
181         tcm->tcm_handle |= TC_H_MIN(cl);
182         tcm->tcm_info = dev_queue->qdisc_sleeping->handle;
183         return 0;
184 }
185
186 static int mq_dump_class_stats(struct Qdisc *sch, unsigned long cl,
187                                struct gnet_dump *d)
188 {
189         struct netdev_queue *dev_queue = mq_queue_get(sch, cl);
190
191         sch = dev_queue->qdisc_sleeping;
192         sch->qstats.qlen = sch->q.qlen;
193         if (gnet_stats_copy_basic(d, &sch->bstats) < 0 ||
194             gnet_stats_copy_queue(d, &sch->qstats) < 0)
195                 return -1;
196         return 0;
197 }
198
199 static void mq_walk(struct Qdisc *sch, struct qdisc_walker *arg)
200 {
201         struct net_device *dev = qdisc_dev(sch);
202         unsigned int ntx;
203
204         if (arg->stop)
205                 return;
206
207         arg->count = arg->skip;
208         for (ntx = arg->skip; ntx < dev->num_tx_queues; ntx++) {
209                 if (arg->fn(sch, ntx + 1, arg) < 0) {
210                         arg->stop = 1;
211                         break;
212                 }
213                 arg->count++;
214         }
215 }
216
217 static const struct Qdisc_class_ops mq_class_ops = {
218         .select_queue   = mq_select_queue,
219         .graft          = mq_graft,
220         .leaf           = mq_leaf,
221         .get            = mq_get,
222         .put            = mq_put,
223         .walk           = mq_walk,
224         .dump           = mq_dump_class,
225         .dump_stats     = mq_dump_class_stats,
226 };
227
228 struct Qdisc_ops mq_qdisc_ops __read_mostly = {
229         .cl_ops         = &mq_class_ops,
230         .id             = "mq",
231         .priv_size      = sizeof(struct mq_sched),
232         .init           = mq_init,
233         .destroy        = mq_destroy,
234         .attach         = mq_attach,
235         .dump           = mq_dump,
236         .owner          = THIS_MODULE,
237 };