blob: 5948bafa8ce29de97bf4a824139ee2f033579810 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/sched/sch_fifo.c The simplest FIFO queue.
3 *
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.
8 *
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/types.h>
15#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <net/pkt_sched.h>
19
20/* 1 band FIFO pseudo-"scheduler" */
21
22struct fifo_sched_data
23{
Thomas Graf6fc8e842005-06-18 22:58:00 -070024 u32 limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025};
26
Thomas Graf6fc8e842005-06-18 22:58:00 -070027static int bfifo_enqueue(struct sk_buff *skb, struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
29 struct fifo_sched_data *q = qdisc_priv(sch);
30
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -070031 if (likely(sch->qstats.backlog + qdisc_pkt_len(skb) <= q->limit))
Thomas Grafaaae3012005-06-18 22:57:42 -070032 return qdisc_enqueue_tail(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Thomas Grafaaae3012005-06-18 22:57:42 -070034 return qdisc_reshape_fail(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36
Thomas Graf6fc8e842005-06-18 22:58:00 -070037static int pfifo_enqueue(struct sk_buff *skb, struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
39 struct fifo_sched_data *q = qdisc_priv(sch);
40
Thomas Grafaaae3012005-06-18 22:57:42 -070041 if (likely(skb_queue_len(&sch->q) < q->limit))
42 return qdisc_enqueue_tail(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Thomas Grafaaae3012005-06-18 22:57:42 -070044 return qdisc_reshape_fail(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
Hagen Paul Pfeifer57dbb2d2010-01-24 12:30:59 +000047static int pfifo_tail_enqueue(struct sk_buff *skb, struct Qdisc* sch)
48{
49 struct sk_buff *skb_head;
50 struct fifo_sched_data *q = qdisc_priv(sch);
51
52 if (likely(skb_queue_len(&sch->q) < q->limit))
53 return qdisc_enqueue_tail(skb, sch);
54
55 /* queue full, remove one skb to fulfill the limit */
56 skb_head = qdisc_dequeue_head(sch);
57 sch->bstats.bytes -= qdisc_pkt_len(skb_head);
58 sch->bstats.packets--;
59 sch->qstats.drops++;
60 kfree_skb(skb_head);
61
62 qdisc_enqueue_tail(skb, sch);
63
64 return NET_XMIT_CN;
65}
66
Patrick McHardy1e904742008-01-22 22:11:17 -080067static int fifo_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
69 struct fifo_sched_data *q = qdisc_priv(sch);
70
71 if (opt == NULL) {
David S. Miller5ce2d482008-07-08 17:06:30 -070072 u32 limit = qdisc_dev(sch)->tx_queue_len ? : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 if (sch->ops == &bfifo_qdisc_ops)
Patrick McHardy64739902009-05-06 16:45:07 -070075 limit *= psched_mtu(qdisc_dev(sch));
Thomas Graf6fc8e842005-06-18 22:58:00 -070076
77 q->limit = limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 } else {
Patrick McHardy1e904742008-01-22 22:11:17 -080079 struct tc_fifo_qopt *ctl = nla_data(opt);
Thomas Graf6fc8e842005-06-18 22:58:00 -070080
Patrick McHardy1e904742008-01-22 22:11:17 -080081 if (nla_len(opt) < sizeof(*ctl))
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return -EINVAL;
Thomas Graf6fc8e842005-06-18 22:58:00 -070083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 q->limit = ctl->limit;
85 }
Thomas Graf6fc8e842005-06-18 22:58:00 -070086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return 0;
88}
89
90static int fifo_dump(struct Qdisc *sch, struct sk_buff *skb)
91{
92 struct fifo_sched_data *q = qdisc_priv(sch);
Thomas Graf6fc8e842005-06-18 22:58:00 -070093 struct tc_fifo_qopt opt = { .limit = q->limit };
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Patrick McHardy1e904742008-01-22 22:11:17 -080095 NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return skb->len;
97
Patrick McHardy1e904742008-01-22 22:11:17 -080098nla_put_failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return -1;
100}
101
Eric Dumazet20fea082007-11-14 01:44:41 -0800102struct Qdisc_ops pfifo_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .id = "pfifo",
104 .priv_size = sizeof(struct fifo_sched_data),
105 .enqueue = pfifo_enqueue,
Thomas Grafaaae3012005-06-18 22:57:42 -0700106 .dequeue = qdisc_dequeue_head,
Patrick McHardy48a8f512008-10-31 00:44:18 -0700107 .peek = qdisc_peek_head,
Thomas Grafaaae3012005-06-18 22:57:42 -0700108 .drop = qdisc_queue_drop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 .init = fifo_init,
Thomas Grafaaae3012005-06-18 22:57:42 -0700110 .reset = qdisc_reset_queue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 .change = fifo_init,
112 .dump = fifo_dump,
113 .owner = THIS_MODULE,
114};
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800115EXPORT_SYMBOL(pfifo_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Eric Dumazet20fea082007-11-14 01:44:41 -0800117struct Qdisc_ops bfifo_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .id = "bfifo",
119 .priv_size = sizeof(struct fifo_sched_data),
120 .enqueue = bfifo_enqueue,
Thomas Grafaaae3012005-06-18 22:57:42 -0700121 .dequeue = qdisc_dequeue_head,
Patrick McHardy48a8f512008-10-31 00:44:18 -0700122 .peek = qdisc_peek_head,
Thomas Grafaaae3012005-06-18 22:57:42 -0700123 .drop = qdisc_queue_drop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 .init = fifo_init,
Thomas Grafaaae3012005-06-18 22:57:42 -0700125 .reset = qdisc_reset_queue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 .change = fifo_init,
127 .dump = fifo_dump,
128 .owner = THIS_MODULE,
129};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130EXPORT_SYMBOL(bfifo_qdisc_ops);
Patrick McHardyfb0305c2008-07-05 23:40:21 -0700131
Hagen Paul Pfeifer57dbb2d2010-01-24 12:30:59 +0000132struct Qdisc_ops pfifo_head_drop_qdisc_ops __read_mostly = {
133 .id = "pfifo_head_drop",
134 .priv_size = sizeof(struct fifo_sched_data),
135 .enqueue = pfifo_tail_enqueue,
136 .dequeue = qdisc_dequeue_head,
137 .peek = qdisc_peek_head,
138 .drop = qdisc_queue_drop_head,
139 .init = fifo_init,
140 .reset = qdisc_reset_queue,
141 .change = fifo_init,
142 .dump = fifo_dump,
143 .owner = THIS_MODULE,
144};
145
Patrick McHardyfb0305c2008-07-05 23:40:21 -0700146/* Pass size change message down to embedded FIFO */
147int fifo_set_limit(struct Qdisc *q, unsigned int limit)
148{
149 struct nlattr *nla;
150 int ret = -ENOMEM;
151
152 /* Hack to avoid sending change message to non-FIFO */
153 if (strncmp(q->ops->id + 1, "fifo", 4) != 0)
154 return 0;
155
156 nla = kmalloc(nla_attr_size(sizeof(struct tc_fifo_qopt)), GFP_KERNEL);
157 if (nla) {
158 nla->nla_type = RTM_NEWQDISC;
159 nla->nla_len = nla_attr_size(sizeof(struct tc_fifo_qopt));
160 ((struct tc_fifo_qopt *)nla_data(nla))->limit = limit;
161
162 ret = q->ops->change(q, nla);
163 kfree(nla);
164 }
165 return ret;
166}
167EXPORT_SYMBOL(fifo_set_limit);
168
169struct Qdisc *fifo_create_dflt(struct Qdisc *sch, struct Qdisc_ops *ops,
170 unsigned int limit)
171{
172 struct Qdisc *q;
173 int err = -ENOMEM;
174
David S. Miller5ce2d482008-07-08 17:06:30 -0700175 q = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -0700176 ops, TC_H_MAKE(sch->handle, 1));
Patrick McHardyfb0305c2008-07-05 23:40:21 -0700177 if (q) {
178 err = fifo_set_limit(q, limit);
179 if (err < 0) {
180 qdisc_destroy(q);
181 q = NULL;
182 }
183 }
184
185 return q ? : ERR_PTR(err);
186}
187EXPORT_SYMBOL(fifo_create_dflt);