| 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> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/types.h> | 
 | 14 | #include <linux/kernel.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/errno.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/skbuff.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <net/pkt_sched.h> | 
 | 18 |  | 
 | 19 | /* 1 band FIFO pseudo-"scheduler" */ | 
 | 20 |  | 
 | 21 | struct fifo_sched_data | 
 | 22 | { | 
| Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 23 | 	u32 limit; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | }; | 
 | 25 |  | 
| Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 26 | static int bfifo_enqueue(struct sk_buff *skb, struct Qdisc* sch) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | { | 
 | 28 | 	struct fifo_sched_data *q = qdisc_priv(sch); | 
 | 29 |  | 
| Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 30 | 	if (likely(sch->qstats.backlog + qdisc_pkt_len(skb) <= q->limit)) | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 31 | 		return qdisc_enqueue_tail(skb, sch); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 |  | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 33 | 	return qdisc_reshape_fail(skb, sch); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | } | 
 | 35 |  | 
| Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 36 | static int pfifo_enqueue(struct sk_buff *skb, struct Qdisc* sch) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | { | 
 | 38 | 	struct fifo_sched_data *q = qdisc_priv(sch); | 
 | 39 |  | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 40 | 	if (likely(skb_queue_len(&sch->q) < q->limit)) | 
 | 41 | 		return qdisc_enqueue_tail(skb, sch); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 |  | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 43 | 	return qdisc_reshape_fail(skb, sch); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | } | 
 | 45 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 46 | static int fifo_init(struct Qdisc *sch, struct nlattr *opt) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | { | 
 | 48 | 	struct fifo_sched_data *q = qdisc_priv(sch); | 
 | 49 |  | 
 | 50 | 	if (opt == NULL) { | 
| David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 51 | 		u32 limit = qdisc_dev(sch)->tx_queue_len ? : 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 |  | 
 | 53 | 		if (sch->ops == &bfifo_qdisc_ops) | 
| David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 54 | 			limit *= qdisc_dev(sch)->mtu; | 
| Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 55 |  | 
 | 56 | 		q->limit = limit; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | 	} else { | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 58 | 		struct tc_fifo_qopt *ctl = nla_data(opt); | 
| Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 59 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 60 | 		if (nla_len(opt) < sizeof(*ctl)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | 			return -EINVAL; | 
| Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 62 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | 		q->limit = ctl->limit; | 
 | 64 | 	} | 
| Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 65 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | 	return 0; | 
 | 67 | } | 
 | 68 |  | 
 | 69 | static int fifo_dump(struct Qdisc *sch, struct sk_buff *skb) | 
 | 70 | { | 
 | 71 | 	struct fifo_sched_data *q = qdisc_priv(sch); | 
| Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 72 | 	struct tc_fifo_qopt opt = { .limit = q->limit }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 74 | 	NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | 	return skb->len; | 
 | 76 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 77 | nla_put_failure: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | 	return -1; | 
 | 79 | } | 
 | 80 |  | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 81 | struct Qdisc_ops pfifo_qdisc_ops __read_mostly = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | 	.id		=	"pfifo", | 
 | 83 | 	.priv_size	=	sizeof(struct fifo_sched_data), | 
 | 84 | 	.enqueue	=	pfifo_enqueue, | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 85 | 	.dequeue	=	qdisc_dequeue_head, | 
| Patrick McHardy | 48a8f51 | 2008-10-31 00:44:18 -0700 | [diff] [blame] | 86 | 	.peek		=	qdisc_peek_head, | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 87 | 	.drop		=	qdisc_queue_drop, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | 	.init		=	fifo_init, | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 89 | 	.reset		=	qdisc_reset_queue, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | 	.change		=	fifo_init, | 
 | 91 | 	.dump		=	fifo_dump, | 
 | 92 | 	.owner		=	THIS_MODULE, | 
 | 93 | }; | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 94 | EXPORT_SYMBOL(pfifo_qdisc_ops); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 |  | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 96 | struct Qdisc_ops bfifo_qdisc_ops __read_mostly = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | 	.id		=	"bfifo", | 
 | 98 | 	.priv_size	=	sizeof(struct fifo_sched_data), | 
 | 99 | 	.enqueue	=	bfifo_enqueue, | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 100 | 	.dequeue	=	qdisc_dequeue_head, | 
| Patrick McHardy | 48a8f51 | 2008-10-31 00:44:18 -0700 | [diff] [blame] | 101 | 	.peek		=	qdisc_peek_head, | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 102 | 	.drop		=	qdisc_queue_drop, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | 	.init		=	fifo_init, | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 104 | 	.reset		=	qdisc_reset_queue, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | 	.change		=	fifo_init, | 
 | 106 | 	.dump		=	fifo_dump, | 
 | 107 | 	.owner		=	THIS_MODULE, | 
 | 108 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | EXPORT_SYMBOL(bfifo_qdisc_ops); | 
| Patrick McHardy | fb0305c | 2008-07-05 23:40:21 -0700 | [diff] [blame] | 110 |  | 
 | 111 | /* Pass size change message down to embedded FIFO */ | 
 | 112 | int fifo_set_limit(struct Qdisc *q, unsigned int limit) | 
 | 113 | { | 
 | 114 | 	struct nlattr *nla; | 
 | 115 | 	int ret = -ENOMEM; | 
 | 116 |  | 
 | 117 | 	/* Hack to avoid sending change message to non-FIFO */ | 
 | 118 | 	if (strncmp(q->ops->id + 1, "fifo", 4) != 0) | 
 | 119 | 		return 0; | 
 | 120 |  | 
 | 121 | 	nla = kmalloc(nla_attr_size(sizeof(struct tc_fifo_qopt)), GFP_KERNEL); | 
 | 122 | 	if (nla) { | 
 | 123 | 		nla->nla_type = RTM_NEWQDISC; | 
 | 124 | 		nla->nla_len = nla_attr_size(sizeof(struct tc_fifo_qopt)); | 
 | 125 | 		((struct tc_fifo_qopt *)nla_data(nla))->limit = limit; | 
 | 126 |  | 
 | 127 | 		ret = q->ops->change(q, nla); | 
 | 128 | 		kfree(nla); | 
 | 129 | 	} | 
 | 130 | 	return ret; | 
 | 131 | } | 
 | 132 | EXPORT_SYMBOL(fifo_set_limit); | 
 | 133 |  | 
 | 134 | struct Qdisc *fifo_create_dflt(struct Qdisc *sch, struct Qdisc_ops *ops, | 
 | 135 | 			       unsigned int limit) | 
 | 136 | { | 
 | 137 | 	struct Qdisc *q; | 
 | 138 | 	int err = -ENOMEM; | 
 | 139 |  | 
| David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 140 | 	q = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue, | 
| David S. Miller | bb949fb | 2008-07-08 16:55:56 -0700 | [diff] [blame] | 141 | 			      ops, TC_H_MAKE(sch->handle, 1)); | 
| Patrick McHardy | fb0305c | 2008-07-05 23:40:21 -0700 | [diff] [blame] | 142 | 	if (q) { | 
 | 143 | 		err = fifo_set_limit(q, limit); | 
 | 144 | 		if (err < 0) { | 
 | 145 | 			qdisc_destroy(q); | 
 | 146 | 			q = NULL; | 
 | 147 | 		} | 
 | 148 | 	} | 
 | 149 |  | 
 | 150 | 	return q ? : ERR_PTR(err); | 
 | 151 | } | 
 | 152 | EXPORT_SYMBOL(fifo_create_dflt); |