- Linus: drop support for old-style Makefiles entirely. Big.
[davej-history.git] / net / sched / sch_prio.c
blob015cab96b485b02fb64b1b8b3d9d1b0b8a94cc8e
1 /*
2 * net/sched/sch_prio.c Simple 3-band priority "scheduler".
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 * Fixes: 19990609: J Hadi Salim <hadi@nortelnetworks.com>:
11 * Init -- EINVAL when opt undefined
14 #include <linux/config.h>
15 #include <linux/module.h>
16 #include <asm/uaccess.h>
17 #include <asm/system.h>
18 #include <asm/bitops.h>
19 #include <linux/types.h>
20 #include <linux/kernel.h>
21 #include <linux/sched.h>
22 #include <linux/string.h>
23 #include <linux/mm.h>
24 #include <linux/socket.h>
25 #include <linux/sockios.h>
26 #include <linux/in.h>
27 #include <linux/errno.h>
28 #include <linux/interrupt.h>
29 #include <linux/if_ether.h>
30 #include <linux/inet.h>
31 #include <linux/netdevice.h>
32 #include <linux/etherdevice.h>
33 #include <linux/notifier.h>
34 #include <net/ip.h>
35 #include <net/route.h>
36 #include <linux/skbuff.h>
37 #include <net/sock.h>
38 #include <net/pkt_sched.h>
41 struct prio_sched_data
43 int bands;
44 struct tcf_proto *filter_list;
45 u8 prio2band[TC_PRIO_MAX+1];
46 struct Qdisc *queues[TCQ_PRIO_BANDS];
50 static __inline__ unsigned prio_classify(struct sk_buff *skb, struct Qdisc *sch)
52 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
53 struct tcf_result res;
54 u32 band;
56 band = skb->priority;
57 if (TC_H_MAJ(skb->priority) != sch->handle) {
58 if (!q->filter_list || tc_classify(skb, q->filter_list, &res)) {
59 if (TC_H_MAJ(band))
60 band = 0;
61 return q->prio2band[band&TC_PRIO_MAX];
63 band = res.classid;
65 band = TC_H_MIN(band) - 1;
66 return band < q->bands ? band : q->prio2band[0];
69 static int
70 prio_enqueue(struct sk_buff *skb, struct Qdisc* sch)
72 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
73 struct Qdisc *qdisc;
74 int ret;
76 qdisc = q->queues[prio_classify(skb, sch)];
78 if ((ret = qdisc->enqueue(skb, qdisc)) == 0) {
79 sch->stats.bytes += skb->len;
80 sch->stats.packets++;
81 sch->q.qlen++;
82 return 0;
84 sch->stats.drops++;
85 return ret;
89 static int
90 prio_requeue(struct sk_buff *skb, struct Qdisc* sch)
92 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
93 struct Qdisc *qdisc;
94 int ret;
96 qdisc = q->queues[prio_classify(skb, sch)];
98 if ((ret = qdisc->ops->requeue(skb, qdisc)) == 0) {
99 sch->q.qlen++;
100 return 0;
102 sch->stats.drops++;
103 return ret;
107 static struct sk_buff *
108 prio_dequeue(struct Qdisc* sch)
110 struct sk_buff *skb;
111 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
112 int prio;
113 struct Qdisc *qdisc;
115 for (prio = 0; prio < q->bands; prio++) {
116 qdisc = q->queues[prio];
117 skb = qdisc->dequeue(qdisc);
118 if (skb) {
119 sch->q.qlen--;
120 return skb;
123 return NULL;
127 static int
128 prio_drop(struct Qdisc* sch)
130 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
131 int prio;
132 struct Qdisc *qdisc;
134 for (prio = q->bands-1; prio >= 0; prio--) {
135 qdisc = q->queues[prio];
136 if (qdisc->ops->drop(qdisc)) {
137 sch->q.qlen--;
138 return 1;
141 return 0;
145 static void
146 prio_reset(struct Qdisc* sch)
148 int prio;
149 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
151 for (prio=0; prio<q->bands; prio++)
152 qdisc_reset(q->queues[prio]);
153 sch->q.qlen = 0;
156 static void
157 prio_destroy(struct Qdisc* sch)
159 int prio;
160 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
162 for (prio=0; prio<q->bands; prio++) {
163 qdisc_destroy(q->queues[prio]);
164 q->queues[prio] = &noop_qdisc;
166 MOD_DEC_USE_COUNT;
169 static int prio_tune(struct Qdisc *sch, struct rtattr *opt)
171 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
172 struct tc_prio_qopt *qopt = RTA_DATA(opt);
173 int i;
175 if (opt->rta_len < RTA_LENGTH(sizeof(*qopt)))
176 return -EINVAL;
177 if (qopt->bands > TCQ_PRIO_BANDS || qopt->bands < 2)
178 return -EINVAL;
180 for (i=0; i<=TC_PRIO_MAX; i++) {
181 if (qopt->priomap[i] >= qopt->bands)
182 return -EINVAL;
185 sch_tree_lock(sch);
186 q->bands = qopt->bands;
187 memcpy(q->prio2band, qopt->priomap, TC_PRIO_MAX+1);
189 for (i=q->bands; i<TCQ_PRIO_BANDS; i++) {
190 struct Qdisc *child = xchg(&q->queues[i], &noop_qdisc);
191 if (child != &noop_qdisc)
192 qdisc_destroy(child);
194 sch_tree_unlock(sch);
196 for (i=0; i<=TC_PRIO_MAX; i++) {
197 int band = q->prio2band[i];
198 if (q->queues[band] == &noop_qdisc) {
199 struct Qdisc *child;
200 child = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops);
201 if (child) {
202 sch_tree_lock(sch);
203 child = xchg(&q->queues[band], child);
205 if (child != &noop_qdisc)
206 qdisc_destroy(child);
207 sch_tree_unlock(sch);
211 return 0;
214 static int prio_init(struct Qdisc *sch, struct rtattr *opt)
216 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
217 int i;
219 for (i=0; i<TCQ_PRIO_BANDS; i++)
220 q->queues[i] = &noop_qdisc;
222 if (opt == NULL) {
223 return -EINVAL;
224 } else {
225 int err;
227 if ((err= prio_tune(sch, opt)) != 0)
228 return err;
230 MOD_INC_USE_COUNT;
231 return 0;
234 #ifdef CONFIG_RTNETLINK
235 static int prio_dump(struct Qdisc *sch, struct sk_buff *skb)
237 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
238 unsigned char *b = skb->tail;
239 struct tc_prio_qopt opt;
241 opt.bands = q->bands;
242 memcpy(&opt.priomap, q->prio2band, TC_PRIO_MAX+1);
243 RTA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt);
244 return skb->len;
246 rtattr_failure:
247 skb_trim(skb, b - skb->data);
248 return -1;
250 #endif
252 static int prio_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
253 struct Qdisc **old)
255 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
256 unsigned long band = arg - 1;
258 if (band >= q->bands)
259 return -EINVAL;
261 if (new == NULL)
262 new = &noop_qdisc;
264 sch_tree_lock(sch);
265 *old = q->queues[band];
266 q->queues[band] = new;
267 qdisc_reset(*old);
268 sch_tree_unlock(sch);
270 return 0;
273 static struct Qdisc *
274 prio_leaf(struct Qdisc *sch, unsigned long arg)
276 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
277 unsigned long band = arg - 1;
279 if (band >= q->bands)
280 return NULL;
282 return q->queues[band];
285 static unsigned long prio_get(struct Qdisc *sch, u32 classid)
287 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
288 unsigned long band = TC_H_MIN(classid);
290 if (band - 1 >= q->bands)
291 return 0;
292 return band;
295 static unsigned long prio_bind(struct Qdisc *sch, unsigned long parent, u32 classid)
297 return prio_get(sch, classid);
301 static void prio_put(struct Qdisc *q, unsigned long cl)
303 return;
306 static int prio_change(struct Qdisc *sch, u32 handle, u32 parent, struct rtattr **tca, unsigned long *arg)
308 unsigned long cl = *arg;
309 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
311 if (cl - 1 > q->bands)
312 return -ENOENT;
313 return 0;
316 static int prio_delete(struct Qdisc *sch, unsigned long cl)
318 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
319 if (cl - 1 > q->bands)
320 return -ENOENT;
321 return 0;
325 #ifdef CONFIG_RTNETLINK
326 static int prio_dump_class(struct Qdisc *sch, unsigned long cl, struct sk_buff *skb,
327 struct tcmsg *tcm)
329 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
331 if (cl - 1 > q->bands)
332 return -ENOENT;
333 if (q->queues[cl-1])
334 tcm->tcm_info = q->queues[cl-1]->handle;
335 return 0;
337 #endif
339 static void prio_walk(struct Qdisc *sch, struct qdisc_walker *arg)
341 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
342 int prio;
344 if (arg->stop)
345 return;
347 for (prio = 0; prio < q->bands; prio++) {
348 if (arg->count < arg->skip) {
349 arg->count++;
350 continue;
352 if (arg->fn(sch, prio+1, arg) < 0) {
353 arg->stop = 1;
354 break;
356 arg->count++;
360 static struct tcf_proto ** prio_find_tcf(struct Qdisc *sch, unsigned long cl)
362 struct prio_sched_data *q = (struct prio_sched_data *)sch->data;
364 if (cl)
365 return NULL;
366 return &q->filter_list;
369 static struct Qdisc_class_ops prio_class_ops =
371 prio_graft,
372 prio_leaf,
374 prio_get,
375 prio_put,
376 prio_change,
377 prio_delete,
378 prio_walk,
380 prio_find_tcf,
381 prio_bind,
382 prio_put,
384 #ifdef CONFIG_RTNETLINK
385 prio_dump_class,
386 #endif
389 struct Qdisc_ops prio_qdisc_ops =
391 NULL,
392 &prio_class_ops,
393 "prio",
394 sizeof(struct prio_sched_data),
396 prio_enqueue,
397 prio_dequeue,
398 prio_requeue,
399 prio_drop,
401 prio_init,
402 prio_reset,
403 prio_destroy,
404 prio_tune,
406 #ifdef CONFIG_RTNETLINK
407 prio_dump,
408 #endif
411 #ifdef MODULE
413 int init_module(void)
415 return register_qdisc(&prio_qdisc_ops);
418 void cleanup_module(void)
420 unregister_qdisc(&prio_qdisc_ops);
423 #endif