blob: f7290d2542c2f873b7884abf94d74f858b77b1b3 [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
Eric Dumazetcc7ec452011-01-19 19:26:56 +000022struct fifo_sched_data {
Thomas Graf6fc8e842005-06-18 22:58:00 -070023 u32 limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024};
25
Eric Dumazetcc7ec452011-01-19 19:26:56 +000026static int bfifo_enqueue(struct sk_buff *skb, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
28 struct fifo_sched_data *q = qdisc_priv(sch);
29
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -070030 if (likely(sch->qstats.backlog + qdisc_pkt_len(skb) <= q->limit))
Thomas Grafaaae3012005-06-18 22:57:42 -070031 return qdisc_enqueue_tail(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Thomas Grafaaae3012005-06-18 22:57:42 -070033 return qdisc_reshape_fail(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034}
35
Eric Dumazetcc7ec452011-01-19 19:26:56 +000036static int pfifo_enqueue(struct sk_buff *skb, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
38 struct fifo_sched_data *q = qdisc_priv(sch);
39
Thomas Grafaaae3012005-06-18 22:57:42 -070040 if (likely(skb_queue_len(&sch->q) < q->limit))
41 return qdisc_enqueue_tail(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Thomas Grafaaae3012005-06-18 22:57:42 -070043 return qdisc_reshape_fail(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044}
45
Eric Dumazetcc7ec452011-01-19 19:26:56 +000046static int pfifo_tail_enqueue(struct sk_buff *skb, struct Qdisc *sch)
Hagen Paul Pfeifer57dbb2d2010-01-24 12:30:59 +000047{
48 struct sk_buff *skb_head;
49 struct fifo_sched_data *q = qdisc_priv(sch);
50
51 if (likely(skb_queue_len(&sch->q) < q->limit))
52 return qdisc_enqueue_tail(skb, sch);
53
54 /* queue full, remove one skb to fulfill the limit */
55 skb_head = qdisc_dequeue_head(sch);
Hagen Paul Pfeifer57dbb2d2010-01-24 12:30:59 +000056 sch->qstats.drops++;
57 kfree_skb(skb_head);
58
59 qdisc_enqueue_tail(skb, sch);
60
61 return NET_XMIT_CN;
62}
63
Patrick McHardy1e904742008-01-22 22:11:17 -080064static int fifo_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 struct fifo_sched_data *q = qdisc_priv(sch);
Eric Dumazet23624932011-01-21 16:26:09 -080067 bool bypass;
68 bool is_bfifo = sch->ops == &bfifo_qdisc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 if (opt == NULL) {
David S. Miller5ce2d482008-07-08 17:06:30 -070071 u32 limit = qdisc_dev(sch)->tx_queue_len ? : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Eric Dumazet23624932011-01-21 16:26:09 -080073 if (is_bfifo)
Patrick McHardy64739902009-05-06 16:45:07 -070074 limit *= psched_mtu(qdisc_dev(sch));
Thomas Graf6fc8e842005-06-18 22:58:00 -070075
76 q->limit = limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 } else {
Patrick McHardy1e904742008-01-22 22:11:17 -080078 struct tc_fifo_qopt *ctl = nla_data(opt);
Thomas Graf6fc8e842005-06-18 22:58:00 -070079
Patrick McHardy1e904742008-01-22 22:11:17 -080080 if (nla_len(opt) < sizeof(*ctl))
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return -EINVAL;
Thomas Graf6fc8e842005-06-18 22:58:00 -070082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 q->limit = ctl->limit;
84 }
Thomas Graf6fc8e842005-06-18 22:58:00 -070085
Eric Dumazet23624932011-01-21 16:26:09 -080086 if (is_bfifo)
87 bypass = q->limit >= psched_mtu(qdisc_dev(sch));
88 else
89 bypass = q->limit >= 1;
90
91 if (bypass)
92 sch->flags |= TCQ_F_CAN_BYPASS;
93 else
94 sch->flags &= ~TCQ_F_CAN_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return 0;
96}
97
98static int fifo_dump(struct Qdisc *sch, struct sk_buff *skb)
99{
100 struct fifo_sched_data *q = qdisc_priv(sch);
Thomas Graf6fc8e842005-06-18 22:58:00 -0700101 struct tc_fifo_qopt opt = { .limit = q->limit };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Patrick McHardy1e904742008-01-22 22:11:17 -0800103 NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return skb->len;
105
Patrick McHardy1e904742008-01-22 22:11:17 -0800106nla_put_failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return -1;
108}
109
Eric Dumazet20fea082007-11-14 01:44:41 -0800110struct Qdisc_ops pfifo_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 .id = "pfifo",
112 .priv_size = sizeof(struct fifo_sched_data),
113 .enqueue = pfifo_enqueue,
Thomas Grafaaae3012005-06-18 22:57:42 -0700114 .dequeue = qdisc_dequeue_head,
Patrick McHardy48a8f512008-10-31 00:44:18 -0700115 .peek = qdisc_peek_head,
Thomas Grafaaae3012005-06-18 22:57:42 -0700116 .drop = qdisc_queue_drop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .init = fifo_init,
Thomas Grafaaae3012005-06-18 22:57:42 -0700118 .reset = qdisc_reset_queue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 .change = fifo_init,
120 .dump = fifo_dump,
121 .owner = THIS_MODULE,
122};
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800123EXPORT_SYMBOL(pfifo_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Eric Dumazet20fea082007-11-14 01:44:41 -0800125struct Qdisc_ops bfifo_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 .id = "bfifo",
127 .priv_size = sizeof(struct fifo_sched_data),
128 .enqueue = bfifo_enqueue,
Thomas Grafaaae3012005-06-18 22:57:42 -0700129 .dequeue = qdisc_dequeue_head,
Patrick McHardy48a8f512008-10-31 00:44:18 -0700130 .peek = qdisc_peek_head,
Thomas Grafaaae3012005-06-18 22:57:42 -0700131 .drop = qdisc_queue_drop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .init = fifo_init,
Thomas Grafaaae3012005-06-18 22:57:42 -0700133 .reset = qdisc_reset_queue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 .change = fifo_init,
135 .dump = fifo_dump,
136 .owner = THIS_MODULE,
137};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138EXPORT_SYMBOL(bfifo_qdisc_ops);
Patrick McHardyfb0305c2008-07-05 23:40:21 -0700139
Hagen Paul Pfeifer57dbb2d2010-01-24 12:30:59 +0000140struct Qdisc_ops pfifo_head_drop_qdisc_ops __read_mostly = {
141 .id = "pfifo_head_drop",
142 .priv_size = sizeof(struct fifo_sched_data),
143 .enqueue = pfifo_tail_enqueue,
144 .dequeue = qdisc_dequeue_head,
145 .peek = qdisc_peek_head,
146 .drop = qdisc_queue_drop_head,
147 .init = fifo_init,
148 .reset = qdisc_reset_queue,
149 .change = fifo_init,
150 .dump = fifo_dump,
151 .owner = THIS_MODULE,
152};
153
Patrick McHardyfb0305c2008-07-05 23:40:21 -0700154/* Pass size change message down to embedded FIFO */
155int fifo_set_limit(struct Qdisc *q, unsigned int limit)
156{
157 struct nlattr *nla;
158 int ret = -ENOMEM;
159
160 /* Hack to avoid sending change message to non-FIFO */
161 if (strncmp(q->ops->id + 1, "fifo", 4) != 0)
162 return 0;
163
164 nla = kmalloc(nla_attr_size(sizeof(struct tc_fifo_qopt)), GFP_KERNEL);
165 if (nla) {
166 nla->nla_type = RTM_NEWQDISC;
167 nla->nla_len = nla_attr_size(sizeof(struct tc_fifo_qopt));
168 ((struct tc_fifo_qopt *)nla_data(nla))->limit = limit;
169
170 ret = q->ops->change(q, nla);
171 kfree(nla);
172 }
173 return ret;
174}
175EXPORT_SYMBOL(fifo_set_limit);
176
177struct Qdisc *fifo_create_dflt(struct Qdisc *sch, struct Qdisc_ops *ops,
178 unsigned int limit)
179{
180 struct Qdisc *q;
181 int err = -ENOMEM;
182
Changli Gao3511c912010-10-16 13:04:08 +0000183 q = qdisc_create_dflt(sch->dev_queue, ops, TC_H_MAKE(sch->handle, 1));
Patrick McHardyfb0305c2008-07-05 23:40:21 -0700184 if (q) {
185 err = fifo_set_limit(q, limit);
186 if (err < 0) {
187 qdisc_destroy(q);
188 q = NULL;
189 }
190 }
191
192 return q ? : ERR_PTR(err);
193}
194EXPORT_SYMBOL(fifo_create_dflt);