blob: be33f9ddf9ddef7d874b351cabaa9f72788c5d21 [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{
Hagen Paul Pfeifer57dbb2d2010-01-24 12:30:59 +000048 struct fifo_sched_data *q = qdisc_priv(sch);
49
50 if (likely(skb_queue_len(&sch->q) < q->limit))
51 return qdisc_enqueue_tail(skb, sch);
52
53 /* queue full, remove one skb to fulfill the limit */
Eric Dumazet9190b3b2011-01-20 23:31:33 -080054 __qdisc_queue_drop_head(sch, &sch->q);
Hagen Paul Pfeifer57dbb2d2010-01-24 12:30:59 +000055 sch->qstats.drops++;
Hagen Paul Pfeifer57dbb2d2010-01-24 12:30:59 +000056 qdisc_enqueue_tail(skb, sch);
57
58 return NET_XMIT_CN;
59}
60
Patrick McHardy1e904742008-01-22 22:11:17 -080061static int fifo_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
63 struct fifo_sched_data *q = qdisc_priv(sch);
Eric Dumazet23624932011-01-21 16:26:09 -080064 bool bypass;
65 bool is_bfifo = sch->ops == &bfifo_qdisc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 if (opt == NULL) {
David S. Miller5ce2d482008-07-08 17:06:30 -070068 u32 limit = qdisc_dev(sch)->tx_queue_len ? : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Eric Dumazet23624932011-01-21 16:26:09 -080070 if (is_bfifo)
Patrick McHardy64739902009-05-06 16:45:07 -070071 limit *= psched_mtu(qdisc_dev(sch));
Thomas Graf6fc8e842005-06-18 22:58:00 -070072
73 q->limit = limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 } else {
Patrick McHardy1e904742008-01-22 22:11:17 -080075 struct tc_fifo_qopt *ctl = nla_data(opt);
Thomas Graf6fc8e842005-06-18 22:58:00 -070076
Patrick McHardy1e904742008-01-22 22:11:17 -080077 if (nla_len(opt) < sizeof(*ctl))
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return -EINVAL;
Thomas Graf6fc8e842005-06-18 22:58:00 -070079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 q->limit = ctl->limit;
81 }
Thomas Graf6fc8e842005-06-18 22:58:00 -070082
Eric Dumazet23624932011-01-21 16:26:09 -080083 if (is_bfifo)
84 bypass = q->limit >= psched_mtu(qdisc_dev(sch));
85 else
86 bypass = q->limit >= 1;
87
88 if (bypass)
89 sch->flags |= TCQ_F_CAN_BYPASS;
90 else
91 sch->flags &= ~TCQ_F_CAN_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return 0;
93}
94
95static int fifo_dump(struct Qdisc *sch, struct sk_buff *skb)
96{
97 struct fifo_sched_data *q = qdisc_priv(sch);
Thomas Graf6fc8e842005-06-18 22:58:00 -070098 struct tc_fifo_qopt opt = { .limit = q->limit };
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Patrick McHardy1e904742008-01-22 22:11:17 -0800100 NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return skb->len;
102
Patrick McHardy1e904742008-01-22 22:11:17 -0800103nla_put_failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return -1;
105}
106
Eric Dumazet20fea082007-11-14 01:44:41 -0800107struct Qdisc_ops pfifo_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 .id = "pfifo",
109 .priv_size = sizeof(struct fifo_sched_data),
110 .enqueue = pfifo_enqueue,
Thomas Grafaaae3012005-06-18 22:57:42 -0700111 .dequeue = qdisc_dequeue_head,
Patrick McHardy48a8f512008-10-31 00:44:18 -0700112 .peek = qdisc_peek_head,
Thomas Grafaaae3012005-06-18 22:57:42 -0700113 .drop = qdisc_queue_drop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 .init = fifo_init,
Thomas Grafaaae3012005-06-18 22:57:42 -0700115 .reset = qdisc_reset_queue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .change = fifo_init,
117 .dump = fifo_dump,
118 .owner = THIS_MODULE,
119};
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800120EXPORT_SYMBOL(pfifo_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Eric Dumazet20fea082007-11-14 01:44:41 -0800122struct Qdisc_ops bfifo_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 .id = "bfifo",
124 .priv_size = sizeof(struct fifo_sched_data),
125 .enqueue = bfifo_enqueue,
Thomas Grafaaae3012005-06-18 22:57:42 -0700126 .dequeue = qdisc_dequeue_head,
Patrick McHardy48a8f512008-10-31 00:44:18 -0700127 .peek = qdisc_peek_head,
Thomas Grafaaae3012005-06-18 22:57:42 -0700128 .drop = qdisc_queue_drop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 .init = fifo_init,
Thomas Grafaaae3012005-06-18 22:57:42 -0700130 .reset = qdisc_reset_queue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 .change = fifo_init,
132 .dump = fifo_dump,
133 .owner = THIS_MODULE,
134};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135EXPORT_SYMBOL(bfifo_qdisc_ops);
Patrick McHardyfb0305c2008-07-05 23:40:21 -0700136
Hagen Paul Pfeifer57dbb2d2010-01-24 12:30:59 +0000137struct Qdisc_ops pfifo_head_drop_qdisc_ops __read_mostly = {
138 .id = "pfifo_head_drop",
139 .priv_size = sizeof(struct fifo_sched_data),
140 .enqueue = pfifo_tail_enqueue,
141 .dequeue = qdisc_dequeue_head,
142 .peek = qdisc_peek_head,
143 .drop = qdisc_queue_drop_head,
144 .init = fifo_init,
145 .reset = qdisc_reset_queue,
146 .change = fifo_init,
147 .dump = fifo_dump,
148 .owner = THIS_MODULE,
149};
150
Patrick McHardyfb0305c2008-07-05 23:40:21 -0700151/* Pass size change message down to embedded FIFO */
152int fifo_set_limit(struct Qdisc *q, unsigned int limit)
153{
154 struct nlattr *nla;
155 int ret = -ENOMEM;
156
157 /* Hack to avoid sending change message to non-FIFO */
158 if (strncmp(q->ops->id + 1, "fifo", 4) != 0)
159 return 0;
160
161 nla = kmalloc(nla_attr_size(sizeof(struct tc_fifo_qopt)), GFP_KERNEL);
162 if (nla) {
163 nla->nla_type = RTM_NEWQDISC;
164 nla->nla_len = nla_attr_size(sizeof(struct tc_fifo_qopt));
165 ((struct tc_fifo_qopt *)nla_data(nla))->limit = limit;
166
167 ret = q->ops->change(q, nla);
168 kfree(nla);
169 }
170 return ret;
171}
172EXPORT_SYMBOL(fifo_set_limit);
173
174struct Qdisc *fifo_create_dflt(struct Qdisc *sch, struct Qdisc_ops *ops,
175 unsigned int limit)
176{
177 struct Qdisc *q;
178 int err = -ENOMEM;
179
Changli Gao3511c912010-10-16 13:04:08 +0000180 q = qdisc_create_dflt(sch->dev_queue, ops, TC_H_MAKE(sch->handle, 1));
Patrick McHardyfb0305c2008-07-05 23:40:21 -0700181 if (q) {
182 err = fifo_set_limit(q, limit);
183 if (err < 0) {
184 qdisc_destroy(q);
185 q = NULL;
186 }
187 }
188
189 return q ? : ERR_PTR(err);
190}
191EXPORT_SYMBOL(fifo_create_dflt);