Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame^] | 13 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/types.h> |
| 15 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/skbuff.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <net/pkt_sched.h> |
| 19 | |
| 20 | /* 1 band FIFO pseudo-"scheduler" */ |
| 21 | |
| 22 | struct fifo_sched_data |
| 23 | { |
Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 24 | u32 limit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | }; |
| 26 | |
Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 27 | static int bfifo_enqueue(struct sk_buff *skb, struct Qdisc* sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | { |
| 29 | struct fifo_sched_data *q = qdisc_priv(sch); |
| 30 | |
Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 31 | if (likely(sch->qstats.backlog + qdisc_pkt_len(skb) <= q->limit)) |
Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 32 | return qdisc_enqueue_tail(skb, sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 34 | return qdisc_reshape_fail(skb, sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | } |
| 36 | |
Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 37 | static int pfifo_enqueue(struct sk_buff *skb, struct Qdisc* sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | { |
| 39 | struct fifo_sched_data *q = qdisc_priv(sch); |
| 40 | |
Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 41 | if (likely(skb_queue_len(&sch->q) < q->limit)) |
| 42 | return qdisc_enqueue_tail(skb, sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 44 | return qdisc_reshape_fail(skb, sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | } |
| 46 | |
Hagen Paul Pfeifer | 57dbb2d | 2010-01-24 12:30:59 +0000 | [diff] [blame] | 47 | static 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 McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 67 | static int fifo_init(struct Qdisc *sch, struct nlattr *opt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
| 69 | struct fifo_sched_data *q = qdisc_priv(sch); |
| 70 | |
| 71 | if (opt == NULL) { |
David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 72 | u32 limit = qdisc_dev(sch)->tx_queue_len ? : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
| 74 | if (sch->ops == &bfifo_qdisc_ops) |
Patrick McHardy | 6473990 | 2009-05-06 16:45:07 -0700 | [diff] [blame] | 75 | limit *= psched_mtu(qdisc_dev(sch)); |
Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 76 | |
| 77 | q->limit = limit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | } else { |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 79 | struct tc_fifo_qopt *ctl = nla_data(opt); |
Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 80 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 81 | if (nla_len(opt) < sizeof(*ctl)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | return -EINVAL; |
Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | q->limit = ctl->limit; |
| 85 | } |
Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 86 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | return 0; |
| 88 | } |
| 89 | |
| 90 | static int fifo_dump(struct Qdisc *sch, struct sk_buff *skb) |
| 91 | { |
| 92 | struct fifo_sched_data *q = qdisc_priv(sch); |
Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 93 | struct tc_fifo_qopt opt = { .limit = q->limit }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 95 | NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | return skb->len; |
| 97 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 98 | nla_put_failure: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | return -1; |
| 100 | } |
| 101 | |
Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 102 | struct Qdisc_ops pfifo_qdisc_ops __read_mostly = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | .id = "pfifo", |
| 104 | .priv_size = sizeof(struct fifo_sched_data), |
| 105 | .enqueue = pfifo_enqueue, |
Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 106 | .dequeue = qdisc_dequeue_head, |
Patrick McHardy | 48a8f51 | 2008-10-31 00:44:18 -0700 | [diff] [blame] | 107 | .peek = qdisc_peek_head, |
Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 108 | .drop = qdisc_queue_drop, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | .init = fifo_init, |
Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 110 | .reset = qdisc_reset_queue, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | .change = fifo_init, |
| 112 | .dump = fifo_dump, |
| 113 | .owner = THIS_MODULE, |
| 114 | }; |
Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 115 | EXPORT_SYMBOL(pfifo_qdisc_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 117 | struct Qdisc_ops bfifo_qdisc_ops __read_mostly = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | .id = "bfifo", |
| 119 | .priv_size = sizeof(struct fifo_sched_data), |
| 120 | .enqueue = bfifo_enqueue, |
Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 121 | .dequeue = qdisc_dequeue_head, |
Patrick McHardy | 48a8f51 | 2008-10-31 00:44:18 -0700 | [diff] [blame] | 122 | .peek = qdisc_peek_head, |
Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 123 | .drop = qdisc_queue_drop, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | .init = fifo_init, |
Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 125 | .reset = qdisc_reset_queue, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | .change = fifo_init, |
| 127 | .dump = fifo_dump, |
| 128 | .owner = THIS_MODULE, |
| 129 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | EXPORT_SYMBOL(bfifo_qdisc_ops); |
Patrick McHardy | fb0305c | 2008-07-05 23:40:21 -0700 | [diff] [blame] | 131 | |
Hagen Paul Pfeifer | 57dbb2d | 2010-01-24 12:30:59 +0000 | [diff] [blame] | 132 | struct 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 McHardy | fb0305c | 2008-07-05 23:40:21 -0700 | [diff] [blame] | 146 | /* Pass size change message down to embedded FIFO */ |
| 147 | int 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 | } |
| 167 | EXPORT_SYMBOL(fifo_set_limit); |
| 168 | |
| 169 | struct 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. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 175 | q = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue, |
David S. Miller | bb949fb | 2008-07-08 16:55:56 -0700 | [diff] [blame] | 176 | ops, TC_H_MAKE(sch->handle, 1)); |
Patrick McHardy | fb0305c | 2008-07-05 23:40:21 -0700 | [diff] [blame] | 177 | 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 | } |
| 187 | EXPORT_SYMBOL(fifo_create_dflt); |