| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * net/sched/sch_red.c	Random Early Detection 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 | * Changes: | 
| Thomas Graf | dba051f | 2005-11-05 21:14:08 +0100 | [diff] [blame] | 12 | * J Hadi Salim 980914:	computation fixes | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * Alexey Makarenko <makar@phoenix.kharkov.ua> 990814: qave on idle link was calculated incorrectly. | 
| Thomas Graf | dba051f | 2005-11-05 21:14:08 +0100 | [diff] [blame] | 14 | * J Hadi Salim 980816:  ECN support | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | */ | 
|  | 16 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/types.h> | 
|  | 19 | #include <linux/kernel.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/skbuff.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <net/pkt_sched.h> | 
|  | 22 | #include <net/inet_ecn.h> | 
| Thomas Graf | 6b31b28 | 2005-11-05 21:14:05 +0100 | [diff] [blame] | 23 | #include <net/red.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 |  | 
|  | 25 |  | 
| Thomas Graf | 6b31b28 | 2005-11-05 21:14:05 +0100 | [diff] [blame] | 26 | /*	Parameters, settable by user: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | ----------------------------- | 
|  | 28 |  | 
|  | 29 | limit		- bytes (must be > qth_max + burst) | 
|  | 30 |  | 
|  | 31 | Hard limit on queue length, should be chosen >qth_max | 
|  | 32 | to allow packet bursts. This parameter does not | 
|  | 33 | affect the algorithms behaviour and can be chosen | 
|  | 34 | arbitrarily high (well, less than ram size) | 
|  | 35 | Really, this limit will never be reached | 
|  | 36 | if RED works correctly. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | */ | 
|  | 38 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 39 | struct red_sched_data { | 
| Thomas Graf | 6b31b28 | 2005-11-05 21:14:05 +0100 | [diff] [blame] | 40 | u32			limit;		/* HARD maximal queue length */ | 
|  | 41 | unsigned char		flags; | 
| Eric Dumazet | 8af2a21 | 2011-12-08 06:06:03 +0000 | [diff] [blame] | 42 | struct timer_list	adapt_timer; | 
| Thomas Graf | 6b31b28 | 2005-11-05 21:14:05 +0100 | [diff] [blame] | 43 | struct red_parms	parms; | 
| Eric Dumazet | eeca668 | 2012-01-05 02:25:16 +0000 | [diff] [blame] | 44 | struct red_vars		vars; | 
| Thomas Graf | 6b31b28 | 2005-11-05 21:14:05 +0100 | [diff] [blame] | 45 | struct red_stats	stats; | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 46 | struct Qdisc		*qdisc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | }; | 
|  | 48 |  | 
| Thomas Graf | 6b31b28 | 2005-11-05 21:14:05 +0100 | [diff] [blame] | 49 | static inline int red_use_ecn(struct red_sched_data *q) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | { | 
| Thomas Graf | 6b31b28 | 2005-11-05 21:14:05 +0100 | [diff] [blame] | 51 | return q->flags & TC_RED_ECN; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | } | 
|  | 53 |  | 
| Thomas Graf | bdc450a | 2005-11-05 21:14:28 +0100 | [diff] [blame] | 54 | static inline int red_use_harddrop(struct red_sched_data *q) | 
|  | 55 | { | 
|  | 56 | return q->flags & TC_RED_HARDDROP; | 
|  | 57 | } | 
|  | 58 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 59 | static int red_enqueue(struct sk_buff *skb, struct Qdisc *sch) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | { | 
|  | 61 | struct red_sched_data *q = qdisc_priv(sch); | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 62 | struct Qdisc *child = q->qdisc; | 
|  | 63 | int ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 |  | 
| Eric Dumazet | eeca668 | 2012-01-05 02:25:16 +0000 | [diff] [blame] | 65 | q->vars.qavg = red_calc_qavg(&q->parms, | 
|  | 66 | &q->vars, | 
|  | 67 | child->qstats.backlog); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 |  | 
| Eric Dumazet | eeca668 | 2012-01-05 02:25:16 +0000 | [diff] [blame] | 69 | if (red_is_idling(&q->vars)) | 
|  | 70 | red_end_of_idle_period(&q->vars); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 |  | 
| Eric Dumazet | eeca668 | 2012-01-05 02:25:16 +0000 | [diff] [blame] | 72 | switch (red_action(&q->parms, &q->vars, q->vars.qavg)) { | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 73 | case RED_DONT_MARK: | 
|  | 74 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 76 | case RED_PROB_MARK: | 
|  | 77 | sch->qstats.overlimits++; | 
|  | 78 | if (!red_use_ecn(q) || !INET_ECN_set_ce(skb)) { | 
|  | 79 | q->stats.prob_drop++; | 
|  | 80 | goto congestion_drop; | 
|  | 81 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 83 | q->stats.prob_mark++; | 
|  | 84 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 86 | case RED_HARD_MARK: | 
|  | 87 | sch->qstats.overlimits++; | 
|  | 88 | if (red_use_harddrop(q) || !red_use_ecn(q) || | 
|  | 89 | !INET_ECN_set_ce(skb)) { | 
|  | 90 | q->stats.forced_drop++; | 
|  | 91 | goto congestion_drop; | 
|  | 92 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 94 | q->stats.forced_mark++; | 
|  | 95 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | } | 
|  | 97 |  | 
| Jussi Kivilinna | 5f86173 | 2008-07-20 00:08:04 -0700 | [diff] [blame] | 98 | ret = qdisc_enqueue(skb, child); | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 99 | if (likely(ret == NET_XMIT_SUCCESS)) { | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 100 | sch->q.qlen++; | 
| Jarek Poplawski | 378a2f0 | 2008-08-04 22:31:03 -0700 | [diff] [blame] | 101 | } else if (net_xmit_drop_count(ret)) { | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 102 | q->stats.pdrop++; | 
|  | 103 | sch->qstats.drops++; | 
|  | 104 | } | 
|  | 105 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 |  | 
| Thomas Graf | 6b31b28 | 2005-11-05 21:14:05 +0100 | [diff] [blame] | 107 | congestion_drop: | 
| Thomas Graf | 9e178ff | 2005-11-05 21:14:06 +0100 | [diff] [blame] | 108 | qdisc_drop(skb, sch); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | return NET_XMIT_CN; | 
|  | 110 | } | 
|  | 111 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 112 | static struct sk_buff *red_dequeue(struct Qdisc *sch) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | { | 
|  | 114 | struct sk_buff *skb; | 
|  | 115 | struct red_sched_data *q = qdisc_priv(sch); | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 116 | struct Qdisc *child = q->qdisc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 |  | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 118 | skb = child->dequeue(child); | 
| Eric Dumazet | 9190b3b | 2011-01-20 23:31:33 -0800 | [diff] [blame] | 119 | if (skb) { | 
|  | 120 | qdisc_bstats_update(sch, skb); | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 121 | sch->q.qlen--; | 
| Eric Dumazet | 9190b3b | 2011-01-20 23:31:33 -0800 | [diff] [blame] | 122 | } else { | 
| Eric Dumazet | eeca668 | 2012-01-05 02:25:16 +0000 | [diff] [blame] | 123 | if (!red_is_idling(&q->vars)) | 
|  | 124 | red_start_of_idle_period(&q->vars); | 
| Eric Dumazet | 9190b3b | 2011-01-20 23:31:33 -0800 | [diff] [blame] | 125 | } | 
| Thomas Graf | 9e178ff | 2005-11-05 21:14:06 +0100 | [diff] [blame] | 126 | return skb; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | } | 
|  | 128 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 129 | static struct sk_buff *red_peek(struct Qdisc *sch) | 
| Jarek Poplawski | 8e3af978 | 2008-10-31 00:45:55 -0700 | [diff] [blame] | 130 | { | 
|  | 131 | struct red_sched_data *q = qdisc_priv(sch); | 
|  | 132 | struct Qdisc *child = q->qdisc; | 
|  | 133 |  | 
|  | 134 | return child->ops->peek(child); | 
|  | 135 | } | 
|  | 136 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 137 | static unsigned int red_drop(struct Qdisc *sch) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | struct red_sched_data *q = qdisc_priv(sch); | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 140 | struct Qdisc *child = q->qdisc; | 
|  | 141 | unsigned int len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 |  | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 143 | if (child->ops->drop && (len = child->ops->drop(child)) > 0) { | 
| Thomas Graf | 6b31b28 | 2005-11-05 21:14:05 +0100 | [diff] [blame] | 144 | q->stats.other++; | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 145 | sch->qstats.drops++; | 
|  | 146 | sch->q.qlen--; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | return len; | 
|  | 148 | } | 
| Thomas Graf | 6b31b28 | 2005-11-05 21:14:05 +0100 | [diff] [blame] | 149 |  | 
| Eric Dumazet | eeca668 | 2012-01-05 02:25:16 +0000 | [diff] [blame] | 150 | if (!red_is_idling(&q->vars)) | 
|  | 151 | red_start_of_idle_period(&q->vars); | 
| Thomas Graf | 6a1b63d | 2005-11-05 21:14:07 +0100 | [diff] [blame] | 152 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | return 0; | 
|  | 154 | } | 
|  | 155 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 156 | static void red_reset(struct Qdisc *sch) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | { | 
|  | 158 | struct red_sched_data *q = qdisc_priv(sch); | 
|  | 159 |  | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 160 | qdisc_reset(q->qdisc); | 
|  | 161 | sch->q.qlen = 0; | 
| Eric Dumazet | eeca668 | 2012-01-05 02:25:16 +0000 | [diff] [blame] | 162 | red_restart(&q->vars); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } | 
|  | 164 |  | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 165 | static void red_destroy(struct Qdisc *sch) | 
|  | 166 | { | 
|  | 167 | struct red_sched_data *q = qdisc_priv(sch); | 
| Eric Dumazet | 8af2a21 | 2011-12-08 06:06:03 +0000 | [diff] [blame] | 168 |  | 
|  | 169 | del_timer_sync(&q->adapt_timer); | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 170 | qdisc_destroy(q->qdisc); | 
|  | 171 | } | 
|  | 172 |  | 
| Patrick McHardy | 27a3421 | 2008-01-23 20:35:39 -0800 | [diff] [blame] | 173 | static const struct nla_policy red_policy[TCA_RED_MAX + 1] = { | 
|  | 174 | [TCA_RED_PARMS]	= { .len = sizeof(struct tc_red_qopt) }, | 
|  | 175 | [TCA_RED_STAB]	= { .len = RED_STAB_SIZE }, | 
| Eric Dumazet | a73ed26 | 2011-12-09 02:46:45 +0000 | [diff] [blame] | 176 | [TCA_RED_MAX_P] = { .type = NLA_U32 }, | 
| Patrick McHardy | 27a3421 | 2008-01-23 20:35:39 -0800 | [diff] [blame] | 177 | }; | 
|  | 178 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 179 | static int red_change(struct Qdisc *sch, struct nlattr *opt) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | { | 
|  | 181 | struct red_sched_data *q = qdisc_priv(sch); | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 182 | struct nlattr *tb[TCA_RED_MAX + 1]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | struct tc_red_qopt *ctl; | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 184 | struct Qdisc *child = NULL; | 
| Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 185 | int err; | 
| Eric Dumazet | a73ed26 | 2011-12-09 02:46:45 +0000 | [diff] [blame] | 186 | u32 max_P; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 |  | 
| Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 188 | if (opt == NULL) | 
| Thomas Graf | dba051f | 2005-11-05 21:14:08 +0100 | [diff] [blame] | 189 | return -EINVAL; | 
|  | 190 |  | 
| Patrick McHardy | 27a3421 | 2008-01-23 20:35:39 -0800 | [diff] [blame] | 191 | err = nla_parse_nested(tb, TCA_RED_MAX, opt, red_policy); | 
| Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 192 | if (err < 0) | 
|  | 193 | return err; | 
|  | 194 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 195 | if (tb[TCA_RED_PARMS] == NULL || | 
| Patrick McHardy | 27a3421 | 2008-01-23 20:35:39 -0800 | [diff] [blame] | 196 | tb[TCA_RED_STAB] == NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | return -EINVAL; | 
|  | 198 |  | 
| Eric Dumazet | a73ed26 | 2011-12-09 02:46:45 +0000 | [diff] [blame] | 199 | max_P = tb[TCA_RED_MAX_P] ? nla_get_u32(tb[TCA_RED_MAX_P]) : 0; | 
|  | 200 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 201 | ctl = nla_data(tb[TCA_RED_PARMS]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 |  | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 203 | if (ctl->limit > 0) { | 
| Patrick McHardy | fb0305c | 2008-07-05 23:40:21 -0700 | [diff] [blame] | 204 | child = fifo_create_dflt(sch, &bfifo_qdisc_ops, ctl->limit); | 
|  | 205 | if (IS_ERR(child)) | 
|  | 206 | return PTR_ERR(child); | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 207 | } | 
|  | 208 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | sch_tree_lock(sch); | 
|  | 210 | q->flags = ctl->flags; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | q->limit = ctl->limit; | 
| Patrick McHardy | 5e50da0 | 2006-11-29 17:36:20 -0800 | [diff] [blame] | 212 | if (child) { | 
|  | 213 | qdisc_tree_decrease_qlen(q->qdisc, q->qdisc->q.qlen); | 
| Patrick McHardy | b94c8af | 2008-11-20 04:11:36 -0800 | [diff] [blame] | 214 | qdisc_destroy(q->qdisc); | 
|  | 215 | q->qdisc = child; | 
| Patrick McHardy | 5e50da0 | 2006-11-29 17:36:20 -0800 | [diff] [blame] | 216 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 |  | 
| Eric Dumazet | eeca668 | 2012-01-05 02:25:16 +0000 | [diff] [blame] | 218 | red_set_parms(&q->parms, | 
|  | 219 | ctl->qth_min, ctl->qth_max, ctl->Wlog, | 
| Eric Dumazet | a73ed26 | 2011-12-09 02:46:45 +0000 | [diff] [blame] | 220 | ctl->Plog, ctl->Scell_log, | 
|  | 221 | nla_data(tb[TCA_RED_STAB]), | 
|  | 222 | max_P); | 
| Eric Dumazet | eeca668 | 2012-01-05 02:25:16 +0000 | [diff] [blame] | 223 | red_set_vars(&q->vars); | 
| Thomas Graf | 6b31b28 | 2005-11-05 21:14:05 +0100 | [diff] [blame] | 224 |  | 
| Eric Dumazet | 8af2a21 | 2011-12-08 06:06:03 +0000 | [diff] [blame] | 225 | del_timer(&q->adapt_timer); | 
|  | 226 | if (ctl->flags & TC_RED_ADAPTATIVE) | 
|  | 227 | mod_timer(&q->adapt_timer, jiffies + HZ/2); | 
|  | 228 |  | 
| Eric Dumazet | 1ee5fa1 | 2011-12-01 11:06:34 +0000 | [diff] [blame] | 229 | if (!q->qdisc->q.qlen) | 
| Eric Dumazet | eeca668 | 2012-01-05 02:25:16 +0000 | [diff] [blame] | 230 | red_start_of_idle_period(&q->vars); | 
| Thomas Graf | dba051f | 2005-11-05 21:14:08 +0100 | [diff] [blame] | 231 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | sch_tree_unlock(sch); | 
|  | 233 | return 0; | 
|  | 234 | } | 
|  | 235 |  | 
| Eric Dumazet | 8af2a21 | 2011-12-08 06:06:03 +0000 | [diff] [blame] | 236 | static inline void red_adaptative_timer(unsigned long arg) | 
|  | 237 | { | 
|  | 238 | struct Qdisc *sch = (struct Qdisc *)arg; | 
|  | 239 | struct red_sched_data *q = qdisc_priv(sch); | 
|  | 240 | spinlock_t *root_lock = qdisc_lock(qdisc_root_sleeping(sch)); | 
|  | 241 |  | 
|  | 242 | spin_lock(root_lock); | 
| Eric Dumazet | eeca668 | 2012-01-05 02:25:16 +0000 | [diff] [blame] | 243 | red_adaptative_algo(&q->parms, &q->vars); | 
| Eric Dumazet | 8af2a21 | 2011-12-08 06:06:03 +0000 | [diff] [blame] | 244 | mod_timer(&q->adapt_timer, jiffies + HZ/2); | 
|  | 245 | spin_unlock(root_lock); | 
|  | 246 | } | 
|  | 247 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 248 | static int red_init(struct Qdisc *sch, struct nlattr *opt) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | { | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 250 | struct red_sched_data *q = qdisc_priv(sch); | 
|  | 251 |  | 
|  | 252 | q->qdisc = &noop_qdisc; | 
| Eric Dumazet | 8af2a21 | 2011-12-08 06:06:03 +0000 | [diff] [blame] | 253 | setup_timer(&q->adapt_timer, red_adaptative_timer, (unsigned long)sch); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | return red_change(sch, opt); | 
|  | 255 | } | 
|  | 256 |  | 
|  | 257 | static int red_dump(struct Qdisc *sch, struct sk_buff *skb) | 
|  | 258 | { | 
|  | 259 | struct red_sched_data *q = qdisc_priv(sch); | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 260 | struct nlattr *opts = NULL; | 
| Thomas Graf | 6b31b28 | 2005-11-05 21:14:05 +0100 | [diff] [blame] | 261 | struct tc_red_qopt opt = { | 
|  | 262 | .limit		= q->limit, | 
|  | 263 | .flags		= q->flags, | 
|  | 264 | .qth_min	= q->parms.qth_min >> q->parms.Wlog, | 
|  | 265 | .qth_max	= q->parms.qth_max >> q->parms.Wlog, | 
|  | 266 | .Wlog		= q->parms.Wlog, | 
|  | 267 | .Plog		= q->parms.Plog, | 
|  | 268 | .Scell_log	= q->parms.Scell_log, | 
|  | 269 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 |  | 
| Eric Dumazet | 0dfb33a | 2011-01-03 08:11:38 +0000 | [diff] [blame] | 271 | sch->qstats.backlog = q->qdisc->qstats.backlog; | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 272 | opts = nla_nest_start(skb, TCA_OPTIONS); | 
|  | 273 | if (opts == NULL) | 
|  | 274 | goto nla_put_failure; | 
|  | 275 | NLA_PUT(skb, TCA_RED_PARMS, sizeof(opt), &opt); | 
| Eric Dumazet | 8af2a21 | 2011-12-08 06:06:03 +0000 | [diff] [blame] | 276 | NLA_PUT_U32(skb, TCA_RED_MAX_P, q->parms.max_P); | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 277 | return nla_nest_end(skb, opts); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 279 | nla_put_failure: | 
| Thomas Graf | bc3ed28 | 2008-06-03 16:36:54 -0700 | [diff] [blame] | 280 | nla_nest_cancel(skb, opts); | 
|  | 281 | return -EMSGSIZE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | } | 
|  | 283 |  | 
|  | 284 | static int red_dump_stats(struct Qdisc *sch, struct gnet_dump *d) | 
|  | 285 | { | 
|  | 286 | struct red_sched_data *q = qdisc_priv(sch); | 
| Thomas Graf | 6b31b28 | 2005-11-05 21:14:05 +0100 | [diff] [blame] | 287 | struct tc_red_xstats st = { | 
|  | 288 | .early	= q->stats.prob_drop + q->stats.forced_drop, | 
|  | 289 | .pdrop	= q->stats.pdrop, | 
|  | 290 | .other	= q->stats.other, | 
|  | 291 | .marked	= q->stats.prob_mark + q->stats.forced_mark, | 
|  | 292 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 |  | 
| Thomas Graf | 6b31b28 | 2005-11-05 21:14:05 +0100 | [diff] [blame] | 294 | return gnet_stats_copy_app(d, &st, sizeof(st)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | } | 
|  | 296 |  | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 297 | static int red_dump_class(struct Qdisc *sch, unsigned long cl, | 
|  | 298 | struct sk_buff *skb, struct tcmsg *tcm) | 
|  | 299 | { | 
|  | 300 | struct red_sched_data *q = qdisc_priv(sch); | 
|  | 301 |  | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 302 | tcm->tcm_handle |= TC_H_MIN(1); | 
|  | 303 | tcm->tcm_info = q->qdisc->handle; | 
|  | 304 | return 0; | 
|  | 305 | } | 
|  | 306 |  | 
|  | 307 | static int red_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new, | 
|  | 308 | struct Qdisc **old) | 
|  | 309 | { | 
|  | 310 | struct red_sched_data *q = qdisc_priv(sch); | 
|  | 311 |  | 
|  | 312 | if (new == NULL) | 
|  | 313 | new = &noop_qdisc; | 
|  | 314 |  | 
|  | 315 | sch_tree_lock(sch); | 
| Patrick McHardy | b94c8af | 2008-11-20 04:11:36 -0800 | [diff] [blame] | 316 | *old = q->qdisc; | 
|  | 317 | q->qdisc = new; | 
| Patrick McHardy | 5e50da0 | 2006-11-29 17:36:20 -0800 | [diff] [blame] | 318 | qdisc_tree_decrease_qlen(*old, (*old)->q.qlen); | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 319 | qdisc_reset(*old); | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 320 | sch_tree_unlock(sch); | 
|  | 321 | return 0; | 
|  | 322 | } | 
|  | 323 |  | 
|  | 324 | static struct Qdisc *red_leaf(struct Qdisc *sch, unsigned long arg) | 
|  | 325 | { | 
|  | 326 | struct red_sched_data *q = qdisc_priv(sch); | 
|  | 327 | return q->qdisc; | 
|  | 328 | } | 
|  | 329 |  | 
|  | 330 | static unsigned long red_get(struct Qdisc *sch, u32 classid) | 
|  | 331 | { | 
|  | 332 | return 1; | 
|  | 333 | } | 
|  | 334 |  | 
|  | 335 | static void red_put(struct Qdisc *sch, unsigned long arg) | 
|  | 336 | { | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 337 | } | 
|  | 338 |  | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 339 | static void red_walk(struct Qdisc *sch, struct qdisc_walker *walker) | 
|  | 340 | { | 
|  | 341 | if (!walker->stop) { | 
|  | 342 | if (walker->count >= walker->skip) | 
|  | 343 | if (walker->fn(sch, 1, walker) < 0) { | 
|  | 344 | walker->stop = 1; | 
|  | 345 | return; | 
|  | 346 | } | 
|  | 347 | walker->count++; | 
|  | 348 | } | 
|  | 349 | } | 
|  | 350 |  | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 351 | static const struct Qdisc_class_ops red_class_ops = { | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 352 | .graft		=	red_graft, | 
|  | 353 | .leaf		=	red_leaf, | 
|  | 354 | .get		=	red_get, | 
|  | 355 | .put		=	red_put, | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 356 | .walk		=	red_walk, | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 357 | .dump		=	red_dump_class, | 
|  | 358 | }; | 
|  | 359 |  | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 360 | static struct Qdisc_ops red_qdisc_ops __read_mostly = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | .id		=	"red", | 
|  | 362 | .priv_size	=	sizeof(struct red_sched_data), | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 363 | .cl_ops		=	&red_class_ops, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | .enqueue	=	red_enqueue, | 
|  | 365 | .dequeue	=	red_dequeue, | 
| Jarek Poplawski | 8e3af978 | 2008-10-31 00:45:55 -0700 | [diff] [blame] | 366 | .peek		=	red_peek, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | .drop		=	red_drop, | 
|  | 368 | .init		=	red_init, | 
|  | 369 | .reset		=	red_reset, | 
| Patrick McHardy | f38c39d | 2006-03-20 19:20:44 -0800 | [diff] [blame] | 370 | .destroy	=	red_destroy, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | .change		=	red_change, | 
|  | 372 | .dump		=	red_dump, | 
|  | 373 | .dump_stats	=	red_dump_stats, | 
|  | 374 | .owner		=	THIS_MODULE, | 
|  | 375 | }; | 
|  | 376 |  | 
|  | 377 | static int __init red_module_init(void) | 
|  | 378 | { | 
|  | 379 | return register_qdisc(&red_qdisc_ops); | 
|  | 380 | } | 
| Thomas Graf | dba051f | 2005-11-05 21:14:08 +0100 | [diff] [blame] | 381 |  | 
|  | 382 | static void __exit red_module_exit(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | { | 
|  | 384 | unregister_qdisc(&red_qdisc_ops); | 
|  | 385 | } | 
| Thomas Graf | dba051f | 2005-11-05 21:14:08 +0100 | [diff] [blame] | 386 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | module_init(red_module_init) | 
|  | 388 | module_exit(red_module_exit) | 
| Thomas Graf | dba051f | 2005-11-05 21:14:08 +0100 | [diff] [blame] | 389 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | MODULE_LICENSE("GPL"); |