1 #ifndef __NET_SCHED_CODEL_IMPL_H
2 #define __NET_SCHED_CODEL_IMPL_H
5 * Codel - The Controlled-Delay Active Queue Management algorithm
7 * Copyright (C) 2011-2012 Kathleen Nichols <nichols@pollere.com>
8 * Copyright (C) 2011-2012 Van Jacobson <van@pollere.net>
9 * Copyright (C) 2012 Michael D. Taht <dave.taht@bufferbloat.net>
10 * Copyright (C) 2012,2015 Eric Dumazet <edumazet@google.com>
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. The names of the authors may not be used to endorse or promote products
22 * derived from this software without specific prior written permission.
24 * Alternatively, provided that this notice is retained in full, this
25 * software may be distributed under the terms of the GNU General
26 * Public License ("GPL") version 2, in which case the provisions of the
27 * GPL apply INSTEAD OF those given above.
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
44 /* Controlling Queue Delay (CoDel) algorithm
45 * =========================================
46 * Source : Kathleen Nichols and Van Jacobson
47 * http://queue.acm.org/detail.cfm?id=2209336
49 * Implemented on linux by Dave Taht and Eric Dumazet
52 static void codel_params_init(struct codel_params
*params
)
54 params
->interval
= MS2TIME(100);
55 params
->target
= MS2TIME(5);
56 params
->ce_threshold
= CODEL_DISABLED_THRESHOLD
;
60 static void codel_vars_init(struct codel_vars
*vars
)
62 memset(vars
, 0, sizeof(*vars
));
65 static void codel_stats_init(struct codel_stats
*stats
)
71 * http://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Iterative_methods_for_reciprocal_square_roots
72 * new_invsqrt = (invsqrt / 2) * (3 - count * invsqrt^2)
74 * Here, invsqrt is a fixed point number (< 1.0), 32bit mantissa, aka Q0.32
76 static void codel_Newton_step(struct codel_vars
*vars
)
78 u32 invsqrt
= ((u32
)vars
->rec_inv_sqrt
) << REC_INV_SQRT_SHIFT
;
79 u32 invsqrt2
= ((u64
)invsqrt
* invsqrt
) >> 32;
80 u64 val
= (3LL << 32) - ((u64
)vars
->count
* invsqrt2
);
82 val
>>= 2; /* avoid overflow in following multiply */
83 val
= (val
* invsqrt
) >> (32 - 2 + 1);
85 vars
->rec_inv_sqrt
= val
>> REC_INV_SQRT_SHIFT
;
89 * CoDel control_law is t + interval/sqrt(count)
90 * We maintain in rec_inv_sqrt the reciprocal value of sqrt(count) to avoid
91 * both sqrt() and divide operation.
93 static codel_time_t
codel_control_law(codel_time_t t
,
94 codel_time_t interval
,
97 return t
+ reciprocal_scale(interval
, rec_inv_sqrt
<< REC_INV_SQRT_SHIFT
);
100 static bool codel_should_drop(const struct sk_buff
*skb
,
102 struct codel_vars
*vars
,
103 struct codel_params
*params
,
104 struct codel_stats
*stats
,
105 codel_skb_len_t skb_len_func
,
106 codel_skb_time_t skb_time_func
,
114 vars
->first_above_time
= 0;
118 skb_len
= skb_len_func(skb
);
119 vars
->ldelay
= now
- skb_time_func(skb
);
121 if (unlikely(skb_len
> stats
->maxpacket
))
122 stats
->maxpacket
= skb_len
;
124 if (codel_time_before(vars
->ldelay
, params
->target
) ||
125 *backlog
<= params
->mtu
) {
126 /* went below - stay below for at least interval */
127 vars
->first_above_time
= 0;
131 if (vars
->first_above_time
== 0) {
132 /* just went above from below. If we stay above
133 * for at least interval we'll say it's ok to drop
135 vars
->first_above_time
= now
+ params
->interval
;
136 } else if (codel_time_after(now
, vars
->first_above_time
)) {
142 static struct sk_buff
*codel_dequeue(void *ctx
,
144 struct codel_params
*params
,
145 struct codel_vars
*vars
,
146 struct codel_stats
*stats
,
147 codel_skb_len_t skb_len_func
,
148 codel_skb_time_t skb_time_func
,
149 codel_skb_drop_t drop_func
,
150 codel_skb_dequeue_t dequeue_func
)
152 struct sk_buff
*skb
= dequeue_func(vars
, ctx
);
157 vars
->dropping
= false;
160 now
= codel_get_time();
161 drop
= codel_should_drop(skb
, ctx
, vars
, params
, stats
,
162 skb_len_func
, skb_time_func
, backlog
, now
);
163 if (vars
->dropping
) {
165 /* sojourn time below target - leave dropping state */
166 vars
->dropping
= false;
167 } else if (codel_time_after_eq(now
, vars
->drop_next
)) {
168 /* It's time for the next drop. Drop the current
169 * packet and dequeue the next. The dequeue might
170 * take us out of dropping state.
171 * If not, schedule the next drop.
172 * A large backlog might result in drop rates so high
173 * that the next drop should happen now,
174 * hence the while loop.
176 while (vars
->dropping
&&
177 codel_time_after_eq(now
, vars
->drop_next
)) {
178 vars
->count
++; /* dont care of possible wrap
179 * since there is no more divide
181 codel_Newton_step(vars
);
182 if (params
->ecn
&& INET_ECN_set_ce(skb
)) {
185 codel_control_law(vars
->drop_next
,
190 stats
->drop_len
+= skb_len_func(skb
);
193 skb
= dequeue_func(vars
, ctx
);
194 if (!codel_should_drop(skb
, ctx
,
199 /* leave dropping state */
200 vars
->dropping
= false;
202 /* and schedule the next drop */
204 codel_control_law(vars
->drop_next
,
213 if (params
->ecn
&& INET_ECN_set_ce(skb
)) {
216 stats
->drop_len
+= skb_len_func(skb
);
220 skb
= dequeue_func(vars
, ctx
);
221 drop
= codel_should_drop(skb
, ctx
, vars
, params
,
223 skb_time_func
, backlog
, now
);
225 vars
->dropping
= true;
226 /* if min went above target close to when we last went below it
227 * assume that the drop rate that controlled the queue on the
228 * last cycle is a good starting point to control it now.
230 delta
= vars
->count
- vars
->lastcount
;
232 codel_time_before(now
- vars
->drop_next
,
233 16 * params
->interval
)) {
235 /* we dont care if rec_inv_sqrt approximation
236 * is not very precise :
237 * Next Newton steps will correct it quadratically.
239 codel_Newton_step(vars
);
242 vars
->rec_inv_sqrt
= ~0U >> REC_INV_SQRT_SHIFT
;
244 vars
->lastcount
= vars
->count
;
245 vars
->drop_next
= codel_control_law(now
, params
->interval
,
249 if (skb
&& codel_time_after(vars
->ldelay
, params
->ce_threshold
) &&
250 INET_ECN_set_ce(skb
))