2 * net/sched/sch_fifo.c The simplest FIFO queue.
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>
12 #include <linux/module.h>
13 #include <linux/types.h>
14 #include <linux/kernel.h>
15 #include <linux/errno.h>
16 #include <linux/netdevice.h>
17 #include <linux/skbuff.h>
18 #include <net/pkt_sched.h>
20 /* 1 band FIFO pseudo-"scheduler" */
22 struct fifo_sched_data
27 static int bfifo_enqueue(struct sk_buff *skb, struct Qdisc* sch)
29 struct fifo_sched_data *q = qdisc_priv(sch);
31 if (likely(sch->qstats.backlog + skb->len <= q->limit))
32 return qdisc_enqueue_tail(skb, sch);
34 return qdisc_reshape_fail(skb, sch);
37 static int pfifo_enqueue(struct sk_buff *skb, struct Qdisc* sch)
39 struct fifo_sched_data *q = qdisc_priv(sch);
41 if (likely(skb_queue_len(&sch->q) < q->limit))
42 return qdisc_enqueue_tail(skb, sch);
44 return qdisc_reshape_fail(skb, sch);
47 static int fifo_init(struct Qdisc *sch, struct rtattr *opt)
49 struct fifo_sched_data *q = qdisc_priv(sch);
52 u32 limit = sch->dev->tx_queue_len ? : 1;
54 if (sch->ops == &bfifo_qdisc_ops)
55 limit *= sch->dev->mtu;
59 struct tc_fifo_qopt *ctl = RTA_DATA(opt);
61 if (RTA_PAYLOAD(opt) < sizeof(*ctl))
64 q->limit = ctl->limit;
70 static int fifo_dump(struct Qdisc *sch, struct sk_buff *skb)
72 struct fifo_sched_data *q = qdisc_priv(sch);
73 struct tc_fifo_qopt opt = { .limit = q->limit };
75 RTA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt);
82 struct Qdisc_ops pfifo_qdisc_ops = {
84 .priv_size = sizeof(struct fifo_sched_data),
85 .enqueue = pfifo_enqueue,
86 .dequeue = qdisc_dequeue_head,
87 .requeue = qdisc_requeue,
88 .drop = qdisc_queue_drop,
90 .reset = qdisc_reset_queue,
96 struct Qdisc_ops bfifo_qdisc_ops = {
98 .priv_size = sizeof(struct fifo_sched_data),
99 .enqueue = bfifo_enqueue,
100 .dequeue = qdisc_dequeue_head,
101 .requeue = qdisc_requeue,
102 .drop = qdisc_queue_drop,
104 .reset = qdisc_reset_queue,
107 .owner = THIS_MODULE,
110 EXPORT_SYMBOL(bfifo_qdisc_ops);
111 EXPORT_SYMBOL(pfifo_qdisc_ops);