altq_rmclass.c revision 1.3 1 1.3 thorpej /* $NetBSD: altq_rmclass.c,v 1.3 2001/04/06 00:44:46 thorpej Exp $ */
2 1.1 thorpej /* $KAME: altq_rmclass.c,v 1.9 2000/12/14 08:12:46 thorpej Exp $ */
3 1.1 thorpej
4 1.1 thorpej /*
5 1.1 thorpej * Copyright (c) 1991-1997 Regents of the University of California.
6 1.1 thorpej * All rights reserved.
7 1.1 thorpej *
8 1.1 thorpej * Redistribution and use in source and binary forms, with or without
9 1.1 thorpej * modification, are permitted provided that the following conditions
10 1.1 thorpej * are met:
11 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
12 1.1 thorpej * notice, this list of conditions and the following disclaimer.
13 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
15 1.1 thorpej * documentation and/or other materials provided with the distribution.
16 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
17 1.1 thorpej * must display the following acknowledgement:
18 1.1 thorpej * This product includes software developed by the Network Research
19 1.1 thorpej * Group at Lawrence Berkeley Laboratory.
20 1.1 thorpej * 4. Neither the name of the University nor of the Laboratory may be used
21 1.1 thorpej * to endorse or promote products derived from this software without
22 1.1 thorpej * specific prior written permission.
23 1.1 thorpej *
24 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 1.1 thorpej * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 1.1 thorpej * SUCH DAMAGE.
35 1.1 thorpej *
36 1.1 thorpej * LBL code modified by speer (at) eng.sun.com, May 1977.
37 1.1 thorpej * For questions and/or comments, please send mail to cbq (at) ee.lbl.gov
38 1.1 thorpej */
39 1.1 thorpej
40 1.1 thorpej #ident "@(#)rm_class.c 1.48 97/12/05 SMI"
41 1.1 thorpej
42 1.1 thorpej #if defined(__FreeBSD__) || defined(__NetBSD__)
43 1.1 thorpej #include "opt_altq.h"
44 1.1 thorpej #if (__FreeBSD__ != 2)
45 1.1 thorpej #include "opt_inet.h"
46 1.1 thorpej #ifdef __FreeBSD__
47 1.1 thorpej #include "opt_inet6.h"
48 1.1 thorpej #endif
49 1.1 thorpej #endif
50 1.1 thorpej #endif /* __FreeBSD__ || __NetBSD__ */
51 1.1 thorpej #ifdef ALTQ_CBQ /* cbq is enabled by ALTQ_CBQ option in opt_altq.h */
52 1.1 thorpej
53 1.1 thorpej #include <sys/param.h>
54 1.1 thorpej #include <sys/malloc.h>
55 1.1 thorpej #include <sys/mbuf.h>
56 1.1 thorpej #include <sys/socket.h>
57 1.1 thorpej #include <sys/systm.h>
58 1.1 thorpej #include <sys/errno.h>
59 1.1 thorpej #include <sys/time.h>
60 1.1 thorpej #include <sys/kernel.h>
61 1.1 thorpej
62 1.1 thorpej #include <net/if.h>
63 1.1 thorpej #include <netinet/in.h>
64 1.1 thorpej #include <netinet/in_systm.h>
65 1.1 thorpej #include <netinet/ip.h>
66 1.1 thorpej
67 1.1 thorpej #include <altq/altq.h>
68 1.1 thorpej #include <altq/altq_rmclass.h>
69 1.1 thorpej #include <altq/altq_rmclass_debug.h>
70 1.1 thorpej #include <altq/altq_red.h>
71 1.1 thorpej #include <altq/altq_rio.h>
72 1.1 thorpej
73 1.1 thorpej /*
74 1.1 thorpej * Local Macros
75 1.1 thorpej */
76 1.1 thorpej
77 1.1 thorpej #define reset_cutoff(ifd) { ifd->cutoff_ = RM_MAXDEPTH; }
78 1.1 thorpej
79 1.1 thorpej /*
80 1.1 thorpej * Local routines.
81 1.1 thorpej */
82 1.1 thorpej
83 1.1 thorpej static int rmc_satisfied __P((struct rm_class *, struct timeval *));
84 1.1 thorpej static void rmc_wrr_set_weights __P((struct rm_ifdat *));
85 1.1 thorpej static void rmc_depth_compute __P((struct rm_class *));
86 1.1 thorpej static void rmc_depth_recompute __P((rm_class_t *));
87 1.1 thorpej
88 1.1 thorpej static mbuf_t *_rmc_wrr_dequeue_next __P((struct rm_ifdat *, int));
89 1.1 thorpej static mbuf_t *_rmc_prr_dequeue_next __P((struct rm_ifdat *, int));
90 1.1 thorpej
91 1.1 thorpej static int _rmc_addq __P((rm_class_t *, mbuf_t *));
92 1.1 thorpej static void _rmc_dropq __P((rm_class_t *));
93 1.1 thorpej static mbuf_t *_rmc_getq __P((rm_class_t *));
94 1.1 thorpej static mbuf_t *_rmc_pollq __P((rm_class_t *));
95 1.1 thorpej
96 1.1 thorpej static int rmc_under_limit __P((struct rm_class *, struct timeval *));
97 1.1 thorpej static void rmc_tl_satisfied __P((struct rm_ifdat *, struct timeval *));
98 1.1 thorpej static void rmc_drop_action __P((struct rm_class *));
99 1.1 thorpej static void rmc_restart __P((struct rm_class *));
100 1.1 thorpej static void rmc_root_overlimit __P((struct rm_class *, struct rm_class *));
101 1.1 thorpej
102 1.1 thorpej #define BORROW_OFFTIME
103 1.1 thorpej /*
104 1.1 thorpej * BORROW_OFFTIME (experimental):
105 1.1 thorpej * borrow the offtime of the class borrowing from.
106 1.1 thorpej * the reason is that when its own offtime is set, the class is unable
107 1.1 thorpej * to borrow much, especially when cutoff is taking effect.
108 1.1 thorpej * but when the borrowed class is overloaded (advidle is close to minidle),
109 1.1 thorpej * use the borrowing class's offtime to avoid overload.
110 1.1 thorpej */
111 1.1 thorpej #define ADJUST_CUTOFF
112 1.1 thorpej /*
113 1.1 thorpej * ADJUST_CUTOFF (experimental):
114 1.1 thorpej * if no underlimit class is found due to cutoff, increase cutoff and
115 1.1 thorpej * retry the scheduling loop.
116 1.1 thorpej * also, don't invoke delay_actions while cutoff is taking effect,
117 1.1 thorpej * since a sleeping class won't have a chance to be scheduled in the
118 1.1 thorpej * next loop.
119 1.1 thorpej *
120 1.1 thorpej * now heuristics for setting the top-level variable (cutoff_) becomes:
121 1.1 thorpej * 1. if a packet arrives for a not-overlimit class, set cutoff
122 1.1 thorpej * to the depth of the class.
123 1.1 thorpej * 2. if cutoff is i, and a packet arrives for an overlimit class
124 1.1 thorpej * with an underlimit ancestor at a lower level than i (say j),
125 1.1 thorpej * then set cutoff to j.
126 1.1 thorpej * 3. at scheduling a packet, if there is no underlimit class
127 1.1 thorpej * due to the current cutoff level, increase cutoff by 1 and
128 1.1 thorpej * then try to schedule again.
129 1.1 thorpej */
130 1.1 thorpej
131 1.1 thorpej /*
132 1.1 thorpej * rm_class_t *
133 1.1 thorpej * rmc_newclass(...) - Create a new resource management class at priority
134 1.1 thorpej * 'pri' on the interface given by 'ifd'.
135 1.1 thorpej *
136 1.1 thorpej * nsecPerByte is the data rate of the interface in nanoseconds/byte.
137 1.1 thorpej * E.g., 800 for a 10Mb/s ethernet. If the class gets less
138 1.1 thorpej * than 100% of the bandwidth, this number should be the
139 1.1 thorpej * 'effective' rate for the class. Let f be the
140 1.1 thorpej * bandwidth fraction allocated to this class, and let
141 1.1 thorpej * nsPerByte be the data rate of the output link in
142 1.1 thorpej * nanoseconds/byte. Then nsecPerByte is set to
143 1.1 thorpej * nsPerByte / f. E.g., 1600 (= 800 / .5)
144 1.1 thorpej * for a class that gets 50% of an ethernet's bandwidth.
145 1.1 thorpej *
146 1.1 thorpej * action the routine to call when the class is over limit.
147 1.1 thorpej *
148 1.1 thorpej * maxq max allowable queue size for class (in packets).
149 1.1 thorpej *
150 1.1 thorpej * parent parent class pointer.
151 1.1 thorpej *
152 1.1 thorpej * borrow class to borrow from (should be either 'parent' or null).
153 1.1 thorpej *
154 1.1 thorpej * maxidle max value allowed for class 'idle' time estimate (this
155 1.1 thorpej * parameter determines how large an initial burst of packets
156 1.1 thorpej * can be before overlimit action is invoked.
157 1.1 thorpej *
158 1.1 thorpej * offtime how long 'delay' action will delay when class goes over
159 1.1 thorpej * limit (this parameter determines the steady-state burst
160 1.1 thorpej * size when a class is running over its limit).
161 1.1 thorpej *
162 1.1 thorpej * Maxidle and offtime have to be computed from the following: If the
163 1.1 thorpej * average packet size is s, the bandwidth fraction allocated to this
164 1.1 thorpej * class is f, we want to allow b packet bursts, and the gain of the
165 1.1 thorpej * averaging filter is g (= 1 - 2^(-RM_FILTER_GAIN)), then:
166 1.1 thorpej *
167 1.1 thorpej * ptime = s * nsPerByte * (1 - f) / f
168 1.1 thorpej * maxidle = ptime * (1 - g^b) / g^b
169 1.1 thorpej * minidle = -ptime * (1 / (f - 1))
170 1.1 thorpej * offtime = ptime * (1 + 1/(1 - g) * (1 - g^(b - 1)) / g^(b - 1)
171 1.1 thorpej *
172 1.1 thorpej * Operationally, it's convenient to specify maxidle & offtime in units
173 1.1 thorpej * independent of the link bandwidth so the maxidle & offtime passed to
174 1.1 thorpej * this routine are the above values multiplied by 8*f/(1000*nsPerByte).
175 1.1 thorpej * (The constant factor is a scale factor needed to make the parameters
176 1.1 thorpej * integers. This scaling also means that the 'unscaled' values of
177 1.1 thorpej * maxidle*nsecPerByte/8 and offtime*nsecPerByte/8 will be in microseconds,
178 1.1 thorpej * not nanoseconds.) Also note that the 'idle' filter computation keeps
179 1.1 thorpej * an estimate scaled upward by 2^RM_FILTER_GAIN so the passed value of
180 1.1 thorpej * maxidle also must be scaled upward by this value. Thus, the passed
181 1.1 thorpej * values for maxidle and offtime can be computed as follows:
182 1.1 thorpej *
183 1.1 thorpej * maxidle = maxidle * 2^RM_FILTER_GAIN * 8 / (1000 * nsecPerByte)
184 1.1 thorpej * offtime = offtime * 8 / (1000 * nsecPerByte)
185 1.1 thorpej *
186 1.1 thorpej * When USE_HRTIME is employed, then maxidle and offtime become:
187 1.1 thorpej * maxidle = maxilde * (8.0 / nsecPerByte);
188 1.1 thorpej * offtime = offtime * (8.0 / nsecPerByte);
189 1.1 thorpej */
190 1.1 thorpej
191 1.1 thorpej struct rm_class *
192 1.1 thorpej rmc_newclass(pri, ifd, nsecPerByte, action, maxq, parent, borrow,
193 1.1 thorpej maxidle, minidle, offtime, pktsize, flags)
194 1.1 thorpej int pri;
195 1.1 thorpej struct rm_ifdat *ifd;
196 1.1 thorpej u_int nsecPerByte;
197 1.1 thorpej void (*action)(rm_class_t *, rm_class_t *);
198 1.1 thorpej int maxq;
199 1.1 thorpej struct rm_class *parent;
200 1.1 thorpej struct rm_class *borrow;
201 1.1 thorpej u_int maxidle;
202 1.1 thorpej int minidle;
203 1.1 thorpej u_int offtime;
204 1.1 thorpej int pktsize;
205 1.1 thorpej int flags;
206 1.1 thorpej {
207 1.1 thorpej struct rm_class *cl;
208 1.1 thorpej struct rm_class *peer;
209 1.1 thorpej int s;
210 1.1 thorpej
211 1.1 thorpej if (pri >= RM_MAXPRIO)
212 1.1 thorpej return (NULL);
213 1.1 thorpej #ifndef ALTQ_RED
214 1.1 thorpej if (flags & RMCF_RED) {
215 1.1 thorpej printf("rmc_newclass: RED not configured for CBQ!\n");
216 1.1 thorpej return (NULL);
217 1.1 thorpej }
218 1.1 thorpej #endif
219 1.1 thorpej #ifndef ALTQ_RIO
220 1.1 thorpej if (flags & RMCF_RIO) {
221 1.1 thorpej printf("rmc_newclass: RIO not configured for CBQ!\n");
222 1.1 thorpej return (NULL);
223 1.1 thorpej }
224 1.1 thorpej #endif
225 1.1 thorpej
226 1.1 thorpej MALLOC(cl, struct rm_class *, sizeof(struct rm_class),
227 1.1 thorpej M_DEVBUF, M_WAITOK);
228 1.1 thorpej if (cl == NULL)
229 1.1 thorpej return (NULL);
230 1.1 thorpej bzero(cl, sizeof(struct rm_class));
231 1.1 thorpej CALLOUT_INIT(&cl->callout_);
232 1.1 thorpej MALLOC(cl->q_, class_queue_t *, sizeof(class_queue_t),
233 1.1 thorpej M_DEVBUF, M_WAITOK);
234 1.1 thorpej if (cl->q_ == NULL) {
235 1.1 thorpej FREE(cl, M_DEVBUF);
236 1.1 thorpej return (NULL);
237 1.1 thorpej }
238 1.1 thorpej bzero(cl->q_, sizeof(class_queue_t));
239 1.1 thorpej
240 1.1 thorpej /*
241 1.1 thorpej * Class initialization.
242 1.1 thorpej */
243 1.1 thorpej cl->children_ = NULL;
244 1.1 thorpej cl->parent_ = parent;
245 1.1 thorpej cl->borrow_ = borrow;
246 1.1 thorpej cl->leaf_ = 1;
247 1.1 thorpej cl->ifdat_ = ifd;
248 1.1 thorpej cl->pri_ = pri;
249 1.1 thorpej cl->allotment_ = RM_NS_PER_SEC / nsecPerByte; /* Bytes per sec */
250 1.1 thorpej cl->depth_ = 0;
251 1.1 thorpej cl->qthresh_ = 0;
252 1.1 thorpej cl->ns_per_byte_ = nsecPerByte;
253 1.1 thorpej
254 1.1 thorpej qlimit(cl->q_) = maxq;
255 1.1 thorpej qtype(cl->q_) = Q_DROPHEAD;
256 1.1 thorpej qlen(cl->q_) = 0;
257 1.1 thorpej cl->flags_ = flags;
258 1.1 thorpej
259 1.1 thorpej #if 1 /* minidle is also scaled in ALTQ */
260 1.1 thorpej cl->minidle_ = (minidle * (int)nsecPerByte) / 8;
261 1.1 thorpej if (cl->minidle_ > 0)
262 1.1 thorpej cl->minidle_ = 0;
263 1.1 thorpej #else
264 1.1 thorpej cl->minidle_ = minidle;
265 1.1 thorpej #endif
266 1.1 thorpej cl->maxidle_ = (maxidle * nsecPerByte) / 8;
267 1.1 thorpej if (cl->maxidle_ == 0)
268 1.1 thorpej cl->maxidle_ = 1;
269 1.1 thorpej #if 1 /* offtime is also scaled in ALTQ */
270 1.1 thorpej cl->avgidle_ = cl->maxidle_;
271 1.1 thorpej cl->offtime_ = ((offtime * nsecPerByte) / 8) >> RM_FILTER_GAIN;
272 1.1 thorpej if (cl->offtime_ == 0)
273 1.1 thorpej cl->offtime_ = 1;
274 1.1 thorpej #else
275 1.1 thorpej cl->avgidle_ = 0;
276 1.1 thorpej cl->offtime_ = (offtime * nsecPerByte) / 8;
277 1.1 thorpej #endif
278 1.1 thorpej cl->overlimit = action;
279 1.1 thorpej
280 1.1 thorpej #ifdef ALTQ_RED
281 1.1 thorpej if (flags & (RMCF_RED|RMCF_RIO)) {
282 1.1 thorpej int red_flags, red_pkttime;
283 1.1 thorpej
284 1.1 thorpej red_flags = 0;
285 1.1 thorpej if (flags & RMCF_ECN)
286 1.1 thorpej red_flags |= REDF_ECN;
287 1.1 thorpej if (flags & RMCF_FLOWVALVE)
288 1.1 thorpej red_flags |= REDF_FLOWVALVE;
289 1.1 thorpej #ifdef ALTQ_RIO
290 1.1 thorpej if (flags & RMCF_CLEARDSCP)
291 1.1 thorpej red_flags |= RIOF_CLEARDSCP;
292 1.1 thorpej #endif
293 1.1 thorpej red_pkttime = nsecPerByte * pktsize / 1000;
294 1.1 thorpej
295 1.1 thorpej if (flags & RMCF_RED) {
296 1.1 thorpej cl->red_ = red_alloc(0, 0, 0, 0,
297 1.1 thorpej red_flags, red_pkttime);
298 1.1 thorpej if (cl->red_ != NULL)
299 1.1 thorpej qtype(cl->q_) = Q_RED;
300 1.1 thorpej }
301 1.1 thorpej #ifdef ALTQ_RIO
302 1.1 thorpej else {
303 1.1 thorpej cl->red_ = (red_t *)rio_alloc(0, NULL,
304 1.1 thorpej red_flags, red_pkttime);
305 1.1 thorpej if (cl->red_ != NULL)
306 1.1 thorpej qtype(cl->q_) = Q_RIO;
307 1.1 thorpej }
308 1.1 thorpej #endif
309 1.1 thorpej }
310 1.1 thorpej #endif /* ALTQ_RED */
311 1.1 thorpej
312 1.1 thorpej /*
313 1.1 thorpej * put the class into the class tree
314 1.1 thorpej */
315 1.1 thorpej s = splimp();
316 1.1 thorpej if ((peer = ifd->active_[pri]) != NULL) {
317 1.1 thorpej /* find the last class at this pri */
318 1.1 thorpej cl->peer_ = peer;
319 1.1 thorpej while (peer->peer_ != ifd->active_[pri])
320 1.1 thorpej peer = peer->peer_;
321 1.1 thorpej peer->peer_ = cl;
322 1.1 thorpej } else {
323 1.1 thorpej ifd->active_[pri] = cl;
324 1.1 thorpej cl->peer_ = cl;
325 1.1 thorpej }
326 1.1 thorpej
327 1.1 thorpej if (cl->parent_) {
328 1.1 thorpej cl->next_ = parent->children_;
329 1.1 thorpej parent->children_ = cl;
330 1.1 thorpej parent->leaf_ = 0;
331 1.1 thorpej }
332 1.1 thorpej
333 1.1 thorpej /*
334 1.1 thorpej * Compute the depth of this class and it's ancestors in the class
335 1.1 thorpej * hierarchy.
336 1.1 thorpej */
337 1.1 thorpej rmc_depth_compute(cl);
338 1.1 thorpej
339 1.1 thorpej /*
340 1.1 thorpej * If CBQ's WRR is enabled, then initailize the class WRR state.
341 1.1 thorpej */
342 1.1 thorpej if (ifd->wrr_) {
343 1.1 thorpej ifd->num_[pri]++;
344 1.1 thorpej ifd->alloc_[pri] += cl->allotment_;
345 1.1 thorpej rmc_wrr_set_weights(ifd);
346 1.1 thorpej }
347 1.1 thorpej splx(s);
348 1.1 thorpej return (cl);
349 1.1 thorpej }
350 1.1 thorpej
351 1.1 thorpej int
352 1.1 thorpej rmc_modclass(cl, nsecPerByte, maxq, maxidle, minidle, offtime, pktsize)
353 1.1 thorpej struct rm_class *cl;
354 1.1 thorpej u_int nsecPerByte;
355 1.1 thorpej int maxq;
356 1.1 thorpej u_int maxidle;
357 1.1 thorpej int minidle;
358 1.1 thorpej u_int offtime;
359 1.1 thorpej int pktsize;
360 1.1 thorpej {
361 1.1 thorpej struct rm_ifdat *ifd;
362 1.1 thorpej u_int old_allotment;
363 1.1 thorpej int s;
364 1.1 thorpej
365 1.1 thorpej ifd = cl->ifdat_;
366 1.1 thorpej old_allotment = cl->allotment_;
367 1.1 thorpej
368 1.1 thorpej s = splimp();
369 1.1 thorpej cl->allotment_ = RM_NS_PER_SEC / nsecPerByte; /* Bytes per sec */
370 1.1 thorpej cl->qthresh_ = 0;
371 1.1 thorpej cl->ns_per_byte_ = nsecPerByte;
372 1.1 thorpej
373 1.1 thorpej qlimit(cl->q_) = maxq;
374 1.1 thorpej
375 1.1 thorpej #if 1 /* minidle is also scaled in ALTQ */
376 1.1 thorpej cl->minidle_ = (minidle * nsecPerByte) / 8;
377 1.1 thorpej if (cl->minidle_ > 0)
378 1.1 thorpej cl->minidle_ = 0;
379 1.1 thorpej #else
380 1.1 thorpej cl->minidle_ = minidle;
381 1.1 thorpej #endif
382 1.1 thorpej cl->maxidle_ = (maxidle * nsecPerByte) / 8;
383 1.1 thorpej if (cl->maxidle_ == 0)
384 1.1 thorpej cl->maxidle_ = 1;
385 1.1 thorpej #if 1 /* offtime is also scaled in ALTQ */
386 1.1 thorpej cl->avgidle_ = cl->maxidle_;
387 1.1 thorpej cl->offtime_ = ((offtime * nsecPerByte) / 8) >> RM_FILTER_GAIN;
388 1.1 thorpej if (cl->offtime_ == 0)
389 1.1 thorpej cl->offtime_ = 1;
390 1.1 thorpej #else
391 1.1 thorpej cl->avgidle_ = 0;
392 1.1 thorpej cl->offtime_ = (offtime * nsecPerByte) / 8;
393 1.1 thorpej #endif
394 1.1 thorpej
395 1.1 thorpej /*
396 1.1 thorpej * If CBQ's WRR is enabled, then initailize the class WRR state.
397 1.1 thorpej */
398 1.1 thorpej if (ifd->wrr_) {
399 1.1 thorpej ifd->alloc_[cl->pri_] += cl->allotment_ - old_allotment;
400 1.1 thorpej rmc_wrr_set_weights(ifd);
401 1.1 thorpej }
402 1.1 thorpej splx(s);
403 1.1 thorpej return (0);
404 1.1 thorpej }
405 1.1 thorpej
406 1.1 thorpej /*
407 1.1 thorpej * static void
408 1.1 thorpej * rmc_wrr_set_weights(struct rm_ifdat *ifdat) - This function computes
409 1.1 thorpej * the appropriate run robin weights for the CBQ weighted round robin
410 1.1 thorpej * algorithm.
411 1.1 thorpej *
412 1.1 thorpej * Returns: NONE
413 1.1 thorpej */
414 1.1 thorpej
415 1.1 thorpej static void
416 1.1 thorpej rmc_wrr_set_weights(ifd)
417 1.1 thorpej struct rm_ifdat *ifd;
418 1.1 thorpej {
419 1.1 thorpej int i;
420 1.1 thorpej struct rm_class *cl, *clh;
421 1.1 thorpej
422 1.1 thorpej for (i = 0; i < RM_MAXPRIO; i++) {
423 1.1 thorpej /*
424 1.1 thorpej * This is inverted from that of the simulator to
425 1.1 thorpej * maintain precision.
426 1.1 thorpej */
427 1.1 thorpej if (ifd->num_[i] == 0)
428 1.1 thorpej ifd->M_[i] = 0;
429 1.1 thorpej else
430 1.1 thorpej ifd->M_[i] = ifd->alloc_[i] /
431 1.1 thorpej (ifd->num_[i] * ifd->maxpkt_);
432 1.1 thorpej /*
433 1.1 thorpej * Compute the weigthed allotment for each class.
434 1.1 thorpej * This takes the expensive div instruction out
435 1.1 thorpej * of the main loop for the wrr scheduling path.
436 1.1 thorpej * These only get recomputed when a class comes or
437 1.1 thorpej * goes.
438 1.1 thorpej */
439 1.1 thorpej if (ifd->active_[i] != NULL) {
440 1.1 thorpej clh = cl = ifd->active_[i];
441 1.1 thorpej do {
442 1.1 thorpej /* safe-guard for slow link or alloc_ == 0 */
443 1.1 thorpej if (ifd->M_[i] == 0)
444 1.1 thorpej cl->w_allotment_ = 0;
445 1.1 thorpej else
446 1.1 thorpej cl->w_allotment_ = cl->allotment_ /
447 1.1 thorpej ifd->M_[i];
448 1.1 thorpej cl = cl->peer_;
449 1.1 thorpej } while ((cl != NULL) && (cl != clh));
450 1.1 thorpej }
451 1.1 thorpej }
452 1.1 thorpej }
453 1.1 thorpej
454 1.1 thorpej int
455 1.1 thorpej rmc_get_weight(ifd, pri)
456 1.1 thorpej struct rm_ifdat *ifd;
457 1.1 thorpej int pri;
458 1.1 thorpej {
459 1.1 thorpej if ((pri >= 0) && (pri < RM_MAXPRIO))
460 1.1 thorpej return (ifd->M_[pri]);
461 1.1 thorpej else
462 1.1 thorpej return (0);
463 1.1 thorpej }
464 1.1 thorpej
465 1.1 thorpej /*
466 1.1 thorpej * static void
467 1.1 thorpej * rmc_depth_compute(struct rm_class *cl) - This function computes the
468 1.1 thorpej * appropriate depth of class 'cl' and its ancestors.
469 1.1 thorpej *
470 1.1 thorpej * Returns: NONE
471 1.1 thorpej */
472 1.1 thorpej
473 1.1 thorpej static void
474 1.1 thorpej rmc_depth_compute(cl)
475 1.1 thorpej struct rm_class *cl;
476 1.1 thorpej {
477 1.1 thorpej rm_class_t *t = cl, *p;
478 1.1 thorpej
479 1.1 thorpej /*
480 1.1 thorpej * Recompute the depth for the branch of the tree.
481 1.1 thorpej */
482 1.1 thorpej while (t != NULL) {
483 1.1 thorpej p = t->parent_;
484 1.1 thorpej if (p && (t->depth_ >= p->depth_)) {
485 1.1 thorpej p->depth_ = t->depth_ + 1;
486 1.1 thorpej t = p;
487 1.1 thorpej } else
488 1.1 thorpej t = NULL;
489 1.1 thorpej }
490 1.1 thorpej }
491 1.1 thorpej
492 1.1 thorpej /*
493 1.1 thorpej * static void
494 1.1 thorpej * rmc_depth_recompute(struct rm_class *cl) - This function re-computes
495 1.1 thorpej * the depth of the tree after a class has been deleted.
496 1.1 thorpej *
497 1.1 thorpej * Returns: NONE
498 1.1 thorpej */
499 1.1 thorpej
500 1.1 thorpej static void
501 1.1 thorpej rmc_depth_recompute(rm_class_t *cl)
502 1.1 thorpej {
503 1.1 thorpej #if 1 /* ALTQ */
504 1.1 thorpej rm_class_t *p, *t;
505 1.1 thorpej
506 1.1 thorpej p = cl;
507 1.1 thorpej while (p != NULL) {
508 1.1 thorpej if ((t = p->children_) == NULL) {
509 1.1 thorpej p->depth_ = 0;
510 1.1 thorpej } else {
511 1.1 thorpej int cdepth = 0;
512 1.1 thorpej
513 1.1 thorpej while (t != NULL) {
514 1.1 thorpej if (t->depth_ > cdepth)
515 1.1 thorpej cdepth = t->depth_;
516 1.1 thorpej t = t->next_;
517 1.1 thorpej }
518 1.1 thorpej
519 1.1 thorpej if (p->depth_ == cdepth + 1)
520 1.1 thorpej /* no change to this parent */
521 1.1 thorpej return;
522 1.1 thorpej
523 1.1 thorpej p->depth_ = cdepth + 1;
524 1.1 thorpej }
525 1.1 thorpej
526 1.1 thorpej p = p->parent_;
527 1.1 thorpej }
528 1.1 thorpej #else
529 1.1 thorpej rm_class_t *t;
530 1.1 thorpej
531 1.1 thorpej if (cl->depth_ >= 1) {
532 1.1 thorpej if (cl->children_ == NULL) {
533 1.1 thorpej cl->depth_ = 0;
534 1.1 thorpej } else if ((t = cl->children_) != NULL) {
535 1.1 thorpej while (t != NULL) {
536 1.1 thorpej if (t->children_ != NULL)
537 1.1 thorpej rmc_depth_recompute(t);
538 1.1 thorpej t = t->next_;
539 1.1 thorpej }
540 1.1 thorpej } else
541 1.1 thorpej rmc_depth_compute(cl);
542 1.1 thorpej }
543 1.1 thorpej #endif
544 1.1 thorpej }
545 1.1 thorpej
546 1.1 thorpej /*
547 1.1 thorpej * void
548 1.1 thorpej * rmc_delete_class(struct rm_ifdat *ifdat, struct rm_class *cl) - This
549 1.1 thorpej * function deletes a class from the link-sharing stucture and frees
550 1.1 thorpej * all resources associated with the class.
551 1.1 thorpej *
552 1.1 thorpej * Returns: NONE
553 1.1 thorpej */
554 1.1 thorpej
555 1.1 thorpej void
556 1.1 thorpej rmc_delete_class(ifd, cl)
557 1.1 thorpej struct rm_ifdat *ifd;
558 1.1 thorpej struct rm_class *cl;
559 1.1 thorpej {
560 1.1 thorpej struct rm_class *p, *head, *previous;
561 1.1 thorpej int s;
562 1.1 thorpej
563 1.1 thorpej ASSERT(cl->children_ == NULL);
564 1.1 thorpej
565 1.1 thorpej if (cl->sleeping_)
566 1.1 thorpej CALLOUT_STOP(&cl->callout_);
567 1.1 thorpej
568 1.1 thorpej s = splimp();
569 1.1 thorpej /*
570 1.1 thorpej * Free packets in the packet queue.
571 1.1 thorpej * XXX - this may not be a desired behavior. Packets should be
572 1.1 thorpej * re-queued.
573 1.1 thorpej */
574 1.1 thorpej rmc_dropall(cl);
575 1.1 thorpej
576 1.1 thorpej /*
577 1.1 thorpej * If the class has a parent, then remove the class from the
578 1.1 thorpej * class from the parent's children chain.
579 1.1 thorpej */
580 1.1 thorpej if (cl->parent_ != NULL) {
581 1.1 thorpej head = cl->parent_->children_;
582 1.1 thorpej p = previous = head;
583 1.1 thorpej if (head->next_ == NULL) {
584 1.1 thorpej ASSERT(head == cl);
585 1.1 thorpej cl->parent_->children_ = NULL;
586 1.1 thorpej cl->parent_->leaf_ = 1;
587 1.1 thorpej } else while (p != NULL) {
588 1.1 thorpej if (p == cl) {
589 1.1 thorpej if (cl == head)
590 1.1 thorpej cl->parent_->children_ = cl->next_;
591 1.1 thorpej else
592 1.1 thorpej previous->next_ = cl->next_;
593 1.1 thorpej cl->next_ = NULL;
594 1.1 thorpej p = NULL;
595 1.1 thorpej } else {
596 1.1 thorpej previous = p;
597 1.1 thorpej p = p->next_;
598 1.1 thorpej }
599 1.1 thorpej }
600 1.1 thorpej }
601 1.1 thorpej
602 1.1 thorpej /*
603 1.1 thorpej * Delete class from class priority peer list.
604 1.1 thorpej */
605 1.1 thorpej if ((p = ifd->active_[cl->pri_]) != NULL) {
606 1.1 thorpej /*
607 1.1 thorpej * If there is more than one member of this priority
608 1.1 thorpej * level, then look for class(cl) in the priority level.
609 1.1 thorpej */
610 1.1 thorpej if (p != p->peer_) {
611 1.1 thorpej while (p->peer_ != cl)
612 1.1 thorpej p = p->peer_;
613 1.1 thorpej p->peer_ = cl->peer_;
614 1.1 thorpej
615 1.1 thorpej if (ifd->active_[cl->pri_] == cl)
616 1.1 thorpej ifd->active_[cl->pri_] = cl->peer_;
617 1.1 thorpej } else {
618 1.1 thorpej ASSERT(p == cl);
619 1.1 thorpej ifd->active_[cl->pri_] = NULL;
620 1.1 thorpej }
621 1.1 thorpej }
622 1.1 thorpej
623 1.1 thorpej /*
624 1.1 thorpej * Recompute the WRR weights.
625 1.1 thorpej */
626 1.1 thorpej if (ifd->wrr_) {
627 1.1 thorpej ifd->alloc_[cl->pri_] -= cl->allotment_;
628 1.1 thorpej ifd->num_[cl->pri_]--;
629 1.1 thorpej rmc_wrr_set_weights(ifd);
630 1.1 thorpej }
631 1.1 thorpej
632 1.1 thorpej /*
633 1.1 thorpej * Re-compute the depth of the tree.
634 1.1 thorpej */
635 1.1 thorpej #if 1 /* ALTQ */
636 1.1 thorpej rmc_depth_recompute(cl->parent_);
637 1.1 thorpej #else
638 1.1 thorpej rmc_depth_recompute(ifd->root_);
639 1.1 thorpej #endif
640 1.1 thorpej
641 1.1 thorpej splx(s);
642 1.1 thorpej
643 1.1 thorpej /*
644 1.1 thorpej * Free the class structure.
645 1.1 thorpej */
646 1.1 thorpej if (cl->red_ != NULL) {
647 1.1 thorpej #ifdef ALTQ_RIO
648 1.1 thorpej if (q_is_rio(cl->q_))
649 1.1 thorpej rio_destroy((rio_t *)cl->red_);
650 1.1 thorpej #endif
651 1.1 thorpej #ifdef ALTQ_RED
652 1.1 thorpej if (q_is_red(cl->q_))
653 1.1 thorpej red_destroy(cl->red_);
654 1.1 thorpej #endif
655 1.1 thorpej }
656 1.1 thorpej FREE(cl->q_, M_DEVBUF);
657 1.1 thorpej FREE(cl, M_DEVBUF);
658 1.1 thorpej }
659 1.1 thorpej
660 1.1 thorpej
661 1.1 thorpej /*
662 1.1 thorpej * void
663 1.1 thorpej * rmc_init(...) - Initialize the resource management data structures
664 1.1 thorpej * associated with the output portion of interface 'ifp'. 'ifd' is
665 1.1 thorpej * where the structures will be built (for backwards compatibility, the
666 1.1 thorpej * structures aren't kept in the ifnet struct). 'nsecPerByte'
667 1.1 thorpej * gives the link speed (inverse of bandwidth) in nanoseconds/byte.
668 1.1 thorpej * 'restart' is the driver-specific routine that the generic 'delay
669 1.1 thorpej * until under limit' action will call to restart output. `maxq'
670 1.1 thorpej * is the queue size of the 'link' & 'default' classes. 'maxqueued'
671 1.1 thorpej * is the maximum number of packets that the resource management
672 1.1 thorpej * code will allow to be queued 'downstream' (this is typically 1).
673 1.1 thorpej *
674 1.1 thorpej * Returns: NONE
675 1.1 thorpej */
676 1.1 thorpej
677 1.1 thorpej void
678 1.1 thorpej rmc_init(ifq, ifd, nsecPerByte, restart, maxq, maxqueued, maxidle,
679 1.1 thorpej minidle, offtime, flags)
680 1.1 thorpej struct ifaltq *ifq;
681 1.1 thorpej struct rm_ifdat *ifd;
682 1.1 thorpej u_int nsecPerByte;
683 1.1 thorpej void (*restart)(struct ifaltq *);
684 1.1 thorpej int maxq, maxqueued;
685 1.1 thorpej u_int maxidle;
686 1.1 thorpej int minidle;
687 1.1 thorpej u_int offtime;
688 1.1 thorpej int flags;
689 1.1 thorpej {
690 1.1 thorpej int i, mtu;
691 1.1 thorpej
692 1.1 thorpej /*
693 1.1 thorpej * Initialize the CBQ traciing/debug facility.
694 1.1 thorpej */
695 1.1 thorpej CBQTRACEINIT();
696 1.1 thorpej
697 1.1 thorpej bzero((char *)ifd, sizeof (*ifd));
698 1.1 thorpej mtu = ifq->altq_ifp->if_mtu;
699 1.1 thorpej ifd->ifq_ = ifq;
700 1.1 thorpej ifd->restart = restart;
701 1.1 thorpej ifd->maxqueued_ = maxqueued;
702 1.1 thorpej ifd->ns_per_byte_ = nsecPerByte;
703 1.1 thorpej ifd->maxpkt_ = mtu;
704 1.1 thorpej ifd->wrr_ = (flags & RMCF_WRR) ? 1 : 0;
705 1.1 thorpej ifd->efficient_ = (flags & RMCF_EFFICIENT) ? 1 : 0;
706 1.1 thorpej #if 1
707 1.1 thorpej ifd->maxiftime_ = mtu * nsecPerByte / 1000 * 16;
708 1.1 thorpej if (mtu * nsecPerByte > 10 * 1000000)
709 1.1 thorpej ifd->maxiftime_ /= 4;
710 1.1 thorpej #endif
711 1.1 thorpej
712 1.1 thorpej reset_cutoff(ifd);
713 1.1 thorpej CBQTRACE(rmc_init, 'INIT', ifd->cutoff_);
714 1.1 thorpej
715 1.1 thorpej /*
716 1.1 thorpej * Initialize the CBQ's WRR state.
717 1.1 thorpej */
718 1.1 thorpej for (i = 0; i < RM_MAXPRIO; i++) {
719 1.1 thorpej ifd->alloc_[i] = 0;
720 1.1 thorpej ifd->M_[i] = 0;
721 1.1 thorpej ifd->num_[i] = 0;
722 1.1 thorpej ifd->na_[i] = 0;
723 1.1 thorpej ifd->active_[i] = NULL;
724 1.1 thorpej }
725 1.1 thorpej
726 1.1 thorpej /*
727 1.1 thorpej * Initialize current packet state.
728 1.1 thorpej */
729 1.1 thorpej ifd->qi_ = 0;
730 1.1 thorpej ifd->qo_ = 0;
731 1.1 thorpej for (i = 0; i < RM_MAXQUEUED; i++) {
732 1.1 thorpej ifd->class_[i] = NULL;
733 1.1 thorpej ifd->curlen_[i] = 0;
734 1.1 thorpej ifd->borrowed_[i] = NULL;
735 1.1 thorpej }
736 1.1 thorpej
737 1.1 thorpej /*
738 1.1 thorpej * Create the root class of the link-sharing structure.
739 1.1 thorpej */
740 1.1 thorpej if ((ifd->root_ = rmc_newclass(0, ifd,
741 1.1 thorpej nsecPerByte,
742 1.1 thorpej rmc_root_overlimit, maxq, 0, 0,
743 1.1 thorpej maxidle, minidle, offtime,
744 1.1 thorpej 0, 0)) == NULL) {
745 1.1 thorpej printf("rmc_init: root class not allocated\n");
746 1.1 thorpej return ;
747 1.1 thorpej }
748 1.1 thorpej ifd->root_->depth_ = 0;
749 1.1 thorpej }
750 1.1 thorpej
751 1.1 thorpej /*
752 1.1 thorpej * void
753 1.1 thorpej * rmc_queue_packet(struct rm_class *cl, mbuf_t *m) - Add packet given by
754 1.1 thorpej * mbuf 'm' to queue for resource class 'cl'. This routine is called
755 1.1 thorpej * by a driver's if_output routine. This routine must be called with
756 1.1 thorpej * output packet completion interrupts locked out (to avoid racing with
757 1.1 thorpej * rmc_dequeue_next).
758 1.1 thorpej *
759 1.1 thorpej * Returns: 0 on successful queueing
760 1.1 thorpej * -1 when packet drop occurs
761 1.1 thorpej */
762 1.1 thorpej int
763 1.1 thorpej rmc_queue_packet(cl, m)
764 1.1 thorpej struct rm_class *cl;
765 1.1 thorpej mbuf_t *m;
766 1.1 thorpej {
767 1.1 thorpej struct timeval now;
768 1.1 thorpej struct rm_ifdat *ifd = cl->ifdat_;
769 1.1 thorpej int cpri = cl->pri_;
770 1.1 thorpej int is_empty = qempty(cl->q_);
771 1.1 thorpej
772 1.1 thorpej RM_GETTIME(now);
773 1.1 thorpej if (ifd->cutoff_ > 0) {
774 1.1 thorpej if (TV_LT(&cl->undertime_, &now)) {
775 1.1 thorpej if (ifd->cutoff_ > cl->depth_)
776 1.1 thorpej ifd->cutoff_ = cl->depth_;
777 1.1 thorpej CBQTRACE(rmc_queue_packet, 'ffoc', cl->depth_);
778 1.1 thorpej }
779 1.1 thorpej #if 1 /* ALTQ */
780 1.1 thorpej else {
781 1.1 thorpej /*
782 1.1 thorpej * the class is overlimit. if the class has
783 1.1 thorpej * underlimit ancestors, set cutoff to the lowest
784 1.1 thorpej * depth among them.
785 1.1 thorpej */
786 1.1 thorpej struct rm_class *borrow = cl->borrow_;
787 1.1 thorpej
788 1.1 thorpej while (borrow != NULL &&
789 1.1 thorpej borrow->depth_ < ifd->cutoff_) {
790 1.1 thorpej if (TV_LT(&borrow->undertime_, &now)) {
791 1.1 thorpej ifd->cutoff_ = borrow->depth_;
792 1.1 thorpej CBQTRACE(rmc_queue_packet, 'ffob', ifd->cutoff_);
793 1.1 thorpej break;
794 1.1 thorpej }
795 1.1 thorpej borrow = borrow->borrow_;
796 1.1 thorpej }
797 1.1 thorpej }
798 1.1 thorpej #else /* !ALTQ */
799 1.1 thorpej else if ((ifd->cutoff_ > 1) && cl->borrow_) {
800 1.1 thorpej if (TV_LT(&cl->borrow_->undertime_, &now)) {
801 1.1 thorpej ifd->cutoff_ = cl->borrow_->depth_;
802 1.1 thorpej CBQTRACE(rmc_queue_packet, 'ffob',
803 1.1 thorpej cl->borrow_->depth_);
804 1.1 thorpej }
805 1.1 thorpej }
806 1.1 thorpej #endif /* !ALTQ */
807 1.1 thorpej }
808 1.1 thorpej
809 1.1 thorpej if (_rmc_addq(cl, m) < 0)
810 1.1 thorpej /* failed */
811 1.1 thorpej return (-1);
812 1.1 thorpej
813 1.1 thorpej if (is_empty) {
814 1.1 thorpej CBQTRACE(rmc_queue_packet, 'ytpe', cl->stats_.handle);
815 1.1 thorpej ifd->na_[cpri]++;
816 1.1 thorpej }
817 1.1 thorpej
818 1.1 thorpej if (qlen(cl->q_) > qlimit(cl->q_)) {
819 1.1 thorpej /* note: qlimit can be set to 0 or 1 */
820 1.1 thorpej rmc_drop_action(cl);
821 1.1 thorpej return (-1);
822 1.1 thorpej }
823 1.1 thorpej return (0);
824 1.1 thorpej }
825 1.1 thorpej
826 1.1 thorpej /*
827 1.1 thorpej * void
828 1.1 thorpej * rmc_tl_satisfied(struct rm_ifdat *ifd, struct timeval *now) - Check all
829 1.1 thorpej * classes to see if there are satified.
830 1.1 thorpej */
831 1.1 thorpej
832 1.1 thorpej static void
833 1.1 thorpej rmc_tl_satisfied(ifd, now)
834 1.1 thorpej struct rm_ifdat *ifd;
835 1.1 thorpej struct timeval *now;
836 1.1 thorpej {
837 1.1 thorpej int i;
838 1.1 thorpej rm_class_t *p, *bp;
839 1.1 thorpej
840 1.1 thorpej for (i = RM_MAXPRIO - 1; i >= 0; i--) {
841 1.1 thorpej if ((bp = ifd->active_[i]) != NULL) {
842 1.1 thorpej p = bp;
843 1.1 thorpej do {
844 1.1 thorpej if (!rmc_satisfied(p, now)) {
845 1.1 thorpej ifd->cutoff_ = p->depth_;
846 1.1 thorpej return;
847 1.1 thorpej }
848 1.1 thorpej p = p->peer_;
849 1.1 thorpej } while (p != bp);
850 1.1 thorpej }
851 1.1 thorpej }
852 1.1 thorpej
853 1.1 thorpej reset_cutoff(ifd);
854 1.1 thorpej }
855 1.1 thorpej
856 1.1 thorpej /*
857 1.1 thorpej * rmc_satisfied - Return 1 of the class is satisfied. O, otherwise.
858 1.1 thorpej */
859 1.1 thorpej
860 1.1 thorpej static int
861 1.1 thorpej rmc_satisfied(cl, now)
862 1.1 thorpej struct rm_class *cl;
863 1.1 thorpej struct timeval *now;
864 1.1 thorpej {
865 1.1 thorpej rm_class_t *p;
866 1.1 thorpej
867 1.1 thorpej if (cl == NULL)
868 1.1 thorpej return (1);
869 1.1 thorpej if (TV_LT(now, &cl->undertime_))
870 1.1 thorpej return (1);
871 1.1 thorpej if (cl->depth_ == 0) {
872 1.1 thorpej if (!cl->sleeping_ && (qlen(cl->q_) > cl->qthresh_))
873 1.1 thorpej return (0);
874 1.1 thorpej else
875 1.1 thorpej return (1);
876 1.1 thorpej }
877 1.1 thorpej if (cl->children_ != NULL) {
878 1.1 thorpej p = cl->children_;
879 1.1 thorpej while (p != NULL) {
880 1.1 thorpej if (!rmc_satisfied(p, now))
881 1.1 thorpej return (0);
882 1.1 thorpej p = p->next_;
883 1.1 thorpej }
884 1.1 thorpej }
885 1.1 thorpej
886 1.1 thorpej return (1);
887 1.1 thorpej }
888 1.1 thorpej
889 1.1 thorpej /*
890 1.1 thorpej * Return 1 if class 'cl' is under limit or can borrow from a parent,
891 1.1 thorpej * 0 if overlimit. As a side-effect, this routine will invoke the
892 1.1 thorpej * class overlimit action if the class if overlimit.
893 1.1 thorpej */
894 1.1 thorpej
895 1.1 thorpej static int
896 1.1 thorpej rmc_under_limit(cl, now)
897 1.1 thorpej struct rm_class *cl;
898 1.1 thorpej struct timeval *now;
899 1.1 thorpej {
900 1.1 thorpej rm_class_t *p = cl;
901 1.1 thorpej rm_class_t *top;
902 1.1 thorpej struct rm_ifdat *ifd = cl->ifdat_;
903 1.1 thorpej
904 1.1 thorpej ifd->borrowed_[ifd->qi_] = NULL;
905 1.1 thorpej /*
906 1.1 thorpej * If cl is the root class, then always return that it is
907 1.1 thorpej * underlimit. Otherwise, check to see if the class is underlimit.
908 1.1 thorpej */
909 1.1 thorpej if (cl->parent_ == NULL)
910 1.1 thorpej return (1);
911 1.1 thorpej
912 1.1 thorpej if (cl->sleeping_) {
913 1.1 thorpej if (TV_LT(now, &cl->undertime_))
914 1.1 thorpej return (0);
915 1.1 thorpej
916 1.1 thorpej CALLOUT_STOP(&cl->callout_);
917 1.1 thorpej cl->sleeping_ = 0;
918 1.1 thorpej cl->undertime_.tv_sec = 0;
919 1.1 thorpej return (1);
920 1.1 thorpej }
921 1.1 thorpej
922 1.1 thorpej top = NULL;
923 1.1 thorpej while (cl->undertime_.tv_sec && TV_LT(now, &cl->undertime_)) {
924 1.1 thorpej if (((cl = cl->borrow_) == NULL) ||
925 1.1 thorpej (cl->depth_ > ifd->cutoff_)) {
926 1.1 thorpej #ifdef ADJUST_CUTOFF
927 1.1 thorpej if (cl != NULL)
928 1.1 thorpej /* cutoff is taking effect, just
929 1.1 thorpej return false without calling
930 1.1 thorpej the delay action. */
931 1.1 thorpej return (0);
932 1.1 thorpej #endif
933 1.1 thorpej #ifdef BORROW_OFFTIME
934 1.1 thorpej /*
935 1.1 thorpej * check if the class can borrow offtime too.
936 1.1 thorpej * borrow offtime from the top of the borrow
937 1.1 thorpej * chain if the top class is not overloaded.
938 1.1 thorpej */
939 1.1 thorpej if (cl != NULL) {
940 1.1 thorpej /* cutoff is taking effect, use this class as top. */
941 1.1 thorpej top = cl;
942 1.1 thorpej CBQTRACE(rmc_under_limit, 'ffou', ifd->cutoff_);
943 1.1 thorpej }
944 1.1 thorpej if (top != NULL && top->avgidle_ == top->minidle_)
945 1.1 thorpej top = NULL;
946 1.1 thorpej p->overtime_ = *now;
947 1.1 thorpej (p->overlimit)(p, top);
948 1.1 thorpej #else
949 1.1 thorpej p->overtime_ = *now;
950 1.1 thorpej (p->overlimit)(p, NULL);
951 1.1 thorpej #endif
952 1.1 thorpej return (0);
953 1.1 thorpej }
954 1.1 thorpej top = cl;
955 1.1 thorpej }
956 1.1 thorpej
957 1.1 thorpej if (cl != p)
958 1.1 thorpej ifd->borrowed_[ifd->qi_] = cl;
959 1.1 thorpej return (1);
960 1.1 thorpej }
961 1.1 thorpej
962 1.1 thorpej /*
963 1.1 thorpej * _rmc_wrr_dequeue_next() - This is scheduler for WRR as opposed to
964 1.1 thorpej * Packet-by-packet round robin.
965 1.1 thorpej *
966 1.1 thorpej * The heart of the weigthed round-robin scheduler, which decides which
967 1.1 thorpej * class next gets to send a packet. Highest priority first, then
968 1.1 thorpej * weighted round-robin within priorites.
969 1.1 thorpej *
970 1.1 thorpej * Each able-to-send class gets to send until its byte allocation is
971 1.1 thorpej * exhausted. Thus, the active pointer is only changed after a class has
972 1.1 thorpej * exhausted its allocation.
973 1.1 thorpej *
974 1.1 thorpej * If the scheduler finds no class that is underlimit or able to borrow,
975 1.1 thorpej * then the first class found that had a nonzero queue and is allowed to
976 1.1 thorpej * borrow gets to send.
977 1.1 thorpej */
978 1.1 thorpej
979 1.1 thorpej static mbuf_t *
980 1.1 thorpej _rmc_wrr_dequeue_next(ifd, op)
981 1.1 thorpej struct rm_ifdat *ifd;
982 1.1 thorpej int op;
983 1.1 thorpej {
984 1.1 thorpej struct rm_class *cl = NULL, *first = NULL;
985 1.1 thorpej u_int deficit;
986 1.1 thorpej int cpri;
987 1.1 thorpej mbuf_t *m;
988 1.1 thorpej struct timeval now;
989 1.1 thorpej
990 1.1 thorpej RM_GETTIME(now);
991 1.1 thorpej
992 1.1 thorpej /*
993 1.1 thorpej * if the driver polls the top of the queue and then removes
994 1.1 thorpej * the polled packet, we must return the same packet.
995 1.1 thorpej */
996 1.1 thorpej if (op == ALTDQ_REMOVE && ifd->pollcache_) {
997 1.1 thorpej cl = ifd->pollcache_;
998 1.1 thorpej cpri = cl->pri_;
999 1.1 thorpej if (ifd->efficient_) {
1000 1.1 thorpej /* check if this class is overlimit */
1001 1.1 thorpej if (cl->undertime_.tv_sec != 0 &&
1002 1.1 thorpej rmc_under_limit(cl, &now) == 0)
1003 1.1 thorpej first = cl;
1004 1.1 thorpej }
1005 1.1 thorpej ifd->pollcache_ = NULL;
1006 1.1 thorpej goto _wrr_out;
1007 1.1 thorpej }
1008 1.1 thorpej else {
1009 1.1 thorpej /* mode == ALTDQ_POLL || pollcache == NULL */
1010 1.1 thorpej ifd->pollcache_ = NULL;
1011 1.1 thorpej ifd->borrowed_[ifd->qi_] = NULL;
1012 1.1 thorpej }
1013 1.1 thorpej #ifdef ADJUST_CUTOFF
1014 1.1 thorpej _again:
1015 1.1 thorpej #endif
1016 1.1 thorpej for (cpri = RM_MAXPRIO - 1; cpri >= 0; cpri--) {
1017 1.1 thorpej if (ifd->na_[cpri] == 0)
1018 1.1 thorpej continue;
1019 1.1 thorpej deficit = 0;
1020 1.1 thorpej /*
1021 1.1 thorpej * Loop through twice for a priority level, if some class
1022 1.1 thorpej * was unable to send a packet the first round because
1023 1.1 thorpej * of the weighted round-robin mechanism.
1024 1.1 thorpej * During the second loop at this level, deficit==2.
1025 1.1 thorpej * (This second loop is not needed if for every class,
1026 1.1 thorpej * "M[cl->pri_])" times "cl->allotment" is greater than
1027 1.1 thorpej * the byte size for the largest packet in the class.)
1028 1.1 thorpej */
1029 1.1 thorpej _wrr_loop:
1030 1.1 thorpej cl = ifd->active_[cpri];
1031 1.1 thorpej ASSERT(cl != NULL);
1032 1.1 thorpej do {
1033 1.1 thorpej if ((deficit < 2) && (cl->bytes_alloc_ <= 0))
1034 1.1 thorpej cl->bytes_alloc_ += cl->w_allotment_;
1035 1.1 thorpej if (!qempty(cl->q_)) {
1036 1.1 thorpej if ((cl->undertime_.tv_sec == 0) ||
1037 1.1 thorpej rmc_under_limit(cl, &now)) {
1038 1.1 thorpej if (cl->bytes_alloc_ > 0 || deficit > 1)
1039 1.1 thorpej goto _wrr_out;
1040 1.1 thorpej
1041 1.1 thorpej /* underlimit but no alloc */
1042 1.1 thorpej deficit = 1;
1043 1.1 thorpej #if 1
1044 1.1 thorpej ifd->borrowed_[ifd->qi_] = NULL;
1045 1.1 thorpej #endif
1046 1.1 thorpej }
1047 1.1 thorpej else if (first == NULL && cl->borrow_ != NULL)
1048 1.1 thorpej first = cl; /* borrowing candidate */
1049 1.1 thorpej }
1050 1.1 thorpej
1051 1.1 thorpej cl->bytes_alloc_ = 0;
1052 1.1 thorpej cl = cl->peer_;
1053 1.1 thorpej } while (cl != ifd->active_[cpri]);
1054 1.1 thorpej
1055 1.1 thorpej if (deficit == 1) {
1056 1.1 thorpej /* first loop found an underlimit class with deficit */
1057 1.1 thorpej /* Loop on same priority level, with new deficit. */
1058 1.1 thorpej deficit = 2;
1059 1.1 thorpej goto _wrr_loop;
1060 1.1 thorpej }
1061 1.1 thorpej }
1062 1.1 thorpej
1063 1.1 thorpej #ifdef ADJUST_CUTOFF
1064 1.1 thorpej /*
1065 1.1 thorpej * no underlimit class found. if cutoff is taking effect,
1066 1.1 thorpej * increase cutoff and try again.
1067 1.1 thorpej */
1068 1.1 thorpej if (first != NULL && ifd->cutoff_ < ifd->root_->depth_) {
1069 1.1 thorpej ifd->cutoff_++;
1070 1.1 thorpej CBQTRACE(_rmc_wrr_dequeue_next, 'ojda', ifd->cutoff_);
1071 1.1 thorpej goto _again;
1072 1.1 thorpej }
1073 1.1 thorpej #endif /* ADJUST_CUTOFF */
1074 1.1 thorpej /*
1075 1.1 thorpej * If LINK_EFFICIENCY is turned on, then the first overlimit
1076 1.1 thorpej * class we encounter will send a packet if all the classes
1077 1.1 thorpej * of the link-sharing structure are overlimit.
1078 1.1 thorpej */
1079 1.1 thorpej reset_cutoff(ifd);
1080 1.1 thorpej CBQTRACE(_rmc_wrr_dequeue_next, 'otsr', ifd->cutoff_);
1081 1.1 thorpej
1082 1.1 thorpej if (!ifd->efficient_ || first == NULL)
1083 1.1 thorpej return (NULL);
1084 1.1 thorpej
1085 1.1 thorpej cl = first;
1086 1.1 thorpej cpri = cl->pri_;
1087 1.1 thorpej #if 0 /* too time-consuming for nothing */
1088 1.1 thorpej if (cl->sleeping_)
1089 1.1 thorpej CALLOUT_STOP(&cl->callout_);
1090 1.1 thorpej cl->sleeping_ = 0;
1091 1.1 thorpej cl->undertime_.tv_sec = 0;
1092 1.1 thorpej #endif
1093 1.1 thorpej ifd->borrowed_[ifd->qi_] = cl->borrow_;
1094 1.1 thorpej ifd->cutoff_ = cl->borrow_->depth_;
1095 1.1 thorpej
1096 1.1 thorpej /*
1097 1.1 thorpej * Deque the packet and do the book keeping...
1098 1.1 thorpej */
1099 1.1 thorpej _wrr_out:
1100 1.1 thorpej if (op == ALTDQ_REMOVE) {
1101 1.1 thorpej m = _rmc_getq(cl);
1102 1.1 thorpej if (m == NULL)
1103 1.1 thorpej panic("_rmc_wrr_dequeue_next");
1104 1.1 thorpej if (qempty(cl->q_))
1105 1.1 thorpej ifd->na_[cpri]--;
1106 1.1 thorpej
1107 1.1 thorpej /*
1108 1.1 thorpej * Update class statistics and link data.
1109 1.1 thorpej */
1110 1.1 thorpej if (cl->bytes_alloc_ > 0)
1111 1.1 thorpej cl->bytes_alloc_ -= m_pktlen(m);
1112 1.1 thorpej
1113 1.1 thorpej if ((cl->bytes_alloc_ <= 0) || first == cl)
1114 1.1 thorpej ifd->active_[cl->pri_] = cl->peer_;
1115 1.1 thorpej else
1116 1.1 thorpej ifd->active_[cl->pri_] = cl;
1117 1.1 thorpej
1118 1.1 thorpej ifd->class_[ifd->qi_] = cl;
1119 1.1 thorpej ifd->curlen_[ifd->qi_] = m_pktlen(m);
1120 1.1 thorpej ifd->now_[ifd->qi_] = now;
1121 1.1 thorpej ifd->qi_ = (ifd->qi_ + 1) % ifd->maxqueued_;
1122 1.1 thorpej ifd->queued_++;
1123 1.1 thorpej } else {
1124 1.1 thorpej /* mode == ALTDQ_PPOLL */
1125 1.1 thorpej m = _rmc_pollq(cl);
1126 1.1 thorpej ifd->pollcache_ = cl;
1127 1.1 thorpej }
1128 1.1 thorpej return (m);
1129 1.1 thorpej }
1130 1.1 thorpej
1131 1.1 thorpej /*
1132 1.1 thorpej * Dequeue & return next packet from the highest priority class that
1133 1.1 thorpej * has a packet to send & has enough allocation to send it. This
1134 1.1 thorpej * routine is called by a driver whenever it needs a new packet to
1135 1.1 thorpej * output.
1136 1.1 thorpej */
1137 1.1 thorpej static mbuf_t *
1138 1.1 thorpej _rmc_prr_dequeue_next(ifd, op)
1139 1.1 thorpej struct rm_ifdat *ifd;
1140 1.1 thorpej int op;
1141 1.1 thorpej {
1142 1.1 thorpej mbuf_t *m;
1143 1.1 thorpej int cpri;
1144 1.1 thorpej struct rm_class *cl, *first = NULL;
1145 1.1 thorpej struct timeval now;
1146 1.1 thorpej
1147 1.1 thorpej RM_GETTIME(now);
1148 1.1 thorpej
1149 1.1 thorpej /*
1150 1.1 thorpej * if the driver polls the top of the queue and then removes
1151 1.1 thorpej * the polled packet, we must return the same packet.
1152 1.1 thorpej */
1153 1.1 thorpej if (op == ALTDQ_REMOVE && ifd->pollcache_) {
1154 1.1 thorpej cl = ifd->pollcache_;
1155 1.1 thorpej cpri = cl->pri_;
1156 1.1 thorpej ifd->pollcache_ = NULL;
1157 1.1 thorpej goto _prr_out;
1158 1.1 thorpej } else {
1159 1.1 thorpej /* mode == ALTDQ_POLL || pollcache == NULL */
1160 1.1 thorpej ifd->pollcache_ = NULL;
1161 1.1 thorpej ifd->borrowed_[ifd->qi_] = NULL;
1162 1.1 thorpej }
1163 1.1 thorpej #ifdef ADJUST_CUTOFF
1164 1.1 thorpej _again:
1165 1.1 thorpej #endif
1166 1.1 thorpej for (cpri = RM_MAXPRIO - 1; cpri >= 0; cpri--) {
1167 1.1 thorpej if (ifd->na_[cpri] == 0)
1168 1.1 thorpej continue;
1169 1.1 thorpej cl = ifd->active_[cpri];
1170 1.1 thorpej ASSERT(cl != NULL);
1171 1.1 thorpej do {
1172 1.1 thorpej if (!qempty(cl->q_)) {
1173 1.1 thorpej if ((cl->undertime_.tv_sec == 0) ||
1174 1.1 thorpej rmc_under_limit(cl, &now))
1175 1.1 thorpej goto _prr_out;
1176 1.1 thorpej if (first == NULL && cl->borrow_ != NULL)
1177 1.1 thorpej first = cl;
1178 1.1 thorpej }
1179 1.1 thorpej cl = cl->peer_;
1180 1.1 thorpej } while (cl != ifd->active_[cpri]);
1181 1.1 thorpej }
1182 1.1 thorpej
1183 1.1 thorpej #ifdef ADJUST_CUTOFF
1184 1.1 thorpej /*
1185 1.1 thorpej * no underlimit class found. if cutoff is taking effect, increase
1186 1.1 thorpej * cutoff and try again.
1187 1.1 thorpej */
1188 1.1 thorpej if (first != NULL && ifd->cutoff_ < ifd->root_->depth_) {
1189 1.1 thorpej ifd->cutoff_++;
1190 1.1 thorpej goto _again;
1191 1.1 thorpej }
1192 1.1 thorpej #endif /* ADJUST_CUTOFF */
1193 1.1 thorpej /*
1194 1.1 thorpej * If LINK_EFFICIENCY is turned on, then the first overlimit
1195 1.1 thorpej * class we encounter will send a packet if all the classes
1196 1.1 thorpej * of the link-sharing structure are overlimit.
1197 1.1 thorpej */
1198 1.1 thorpej reset_cutoff(ifd);
1199 1.1 thorpej if (!ifd->efficient_ || first == NULL)
1200 1.1 thorpej return (NULL);
1201 1.1 thorpej
1202 1.1 thorpej cl = first;
1203 1.1 thorpej cpri = cl->pri_;
1204 1.1 thorpej #if 0 /* too time-consuming for nothing */
1205 1.1 thorpej if (cl->sleeping_)
1206 1.1 thorpej CALLOUT_STOP(&cl->callout_);
1207 1.1 thorpej cl->sleeping_ = 0;
1208 1.1 thorpej cl->undertime_.tv_sec = 0;
1209 1.1 thorpej #endif
1210 1.1 thorpej ifd->borrowed_[ifd->qi_] = cl->borrow_;
1211 1.1 thorpej ifd->cutoff_ = cl->borrow_->depth_;
1212 1.1 thorpej
1213 1.1 thorpej /*
1214 1.1 thorpej * Deque the packet and do the book keeping...
1215 1.1 thorpej */
1216 1.1 thorpej _prr_out:
1217 1.1 thorpej if (op == ALTDQ_REMOVE) {
1218 1.1 thorpej m = _rmc_getq(cl);
1219 1.1 thorpej if (m == NULL)
1220 1.1 thorpej panic("_rmc_prr_dequeue_next");
1221 1.1 thorpej if (qempty(cl->q_))
1222 1.1 thorpej ifd->na_[cpri]--;
1223 1.1 thorpej
1224 1.1 thorpej ifd->active_[cpri] = cl->peer_;
1225 1.1 thorpej
1226 1.1 thorpej ifd->class_[ifd->qi_] = cl;
1227 1.1 thorpej ifd->curlen_[ifd->qi_] = m_pktlen(m);
1228 1.1 thorpej ifd->now_[ifd->qi_] = now;
1229 1.1 thorpej ifd->qi_ = (ifd->qi_ + 1) % ifd->maxqueued_;
1230 1.1 thorpej ifd->queued_++;
1231 1.1 thorpej } else {
1232 1.1 thorpej /* mode == ALTDQ_POLL */
1233 1.1 thorpej m = _rmc_pollq(cl);
1234 1.1 thorpej ifd->pollcache_ = cl;
1235 1.1 thorpej }
1236 1.1 thorpej return (m);
1237 1.1 thorpej }
1238 1.1 thorpej
1239 1.1 thorpej /*
1240 1.1 thorpej * mbuf_t *
1241 1.1 thorpej * rmc_dequeue_next(struct rm_ifdat *ifd, struct timeval *now) - this function
1242 1.1 thorpej * is invoked by the packet driver to get the next packet to be
1243 1.1 thorpej * dequeued and output on the link. If WRR is enabled, then the
1244 1.1 thorpej * WRR dequeue next routine will determine the next packet to sent.
1245 1.1 thorpej * Otherwise, packet-by-packet round robin is invoked.
1246 1.1 thorpej *
1247 1.1 thorpej * Returns: NULL, if a packet is not available or if all
1248 1.1 thorpej * classes are overlimit.
1249 1.1 thorpej *
1250 1.1 thorpej * Otherwise, Pointer to the next packet.
1251 1.1 thorpej */
1252 1.1 thorpej
1253 1.1 thorpej mbuf_t *
1254 1.1 thorpej rmc_dequeue_next(ifd, mode)
1255 1.1 thorpej struct rm_ifdat *ifd;
1256 1.1 thorpej int mode;
1257 1.1 thorpej {
1258 1.1 thorpej if (ifd->queued_ >= ifd->maxqueued_)
1259 1.1 thorpej return (NULL);
1260 1.1 thorpej else if (ifd->wrr_)
1261 1.1 thorpej return (_rmc_wrr_dequeue_next(ifd, mode));
1262 1.1 thorpej else
1263 1.1 thorpej return (_rmc_prr_dequeue_next(ifd, mode));
1264 1.1 thorpej }
1265 1.1 thorpej
1266 1.1 thorpej /*
1267 1.1 thorpej * Update the utilization estimate for the packet that just completed.
1268 1.1 thorpej * The packet's class & the parent(s) of that class all get their
1269 1.1 thorpej * estimators updated. This routine is called by the driver's output-
1270 1.1 thorpej * packet-completion interrupt service routine.
1271 1.1 thorpej */
1272 1.1 thorpej
1273 1.1 thorpej /*
1274 1.1 thorpej * a macro to approximate "divide by 1000" that gives 0.000999,
1275 1.1 thorpej * if a value has enough effective digits.
1276 1.1 thorpej * (on pentium, mul takes 9 cycles but div takes 46!)
1277 1.1 thorpej */
1278 1.1 thorpej #define NSEC_TO_USEC(t) (((t) >> 10) + ((t) >> 16) + ((t) >> 17))
1279 1.1 thorpej void
1280 1.1 thorpej rmc_update_class_util(ifd)
1281 1.1 thorpej struct rm_ifdat *ifd;
1282 1.1 thorpej {
1283 1.1 thorpej int idle, avgidle, pktlen;
1284 1.1 thorpej int pkt_time, tidle;
1285 1.1 thorpej rm_class_t *cl, *borrowed;
1286 1.1 thorpej rm_class_t *borrows;
1287 1.1 thorpej struct timeval *nowp;
1288 1.1 thorpej
1289 1.1 thorpej /*
1290 1.1 thorpej * Get the most recent completed class.
1291 1.1 thorpej */
1292 1.1 thorpej if ((cl = ifd->class_[ifd->qo_]) == NULL)
1293 1.1 thorpej return;
1294 1.1 thorpej
1295 1.1 thorpej pktlen = ifd->curlen_[ifd->qo_];
1296 1.1 thorpej borrowed = ifd->borrowed_[ifd->qo_];
1297 1.1 thorpej borrows = borrowed;
1298 1.1 thorpej
1299 1.1 thorpej PKTCNTR_ADD(&cl->stats_.xmit_cnt, pktlen);
1300 1.1 thorpej
1301 1.1 thorpej /*
1302 1.1 thorpej * Run estimator on class and it's ancesstors.
1303 1.1 thorpej */
1304 1.1 thorpej /*
1305 1.1 thorpej * rm_update_class_util is designed to be called when the
1306 1.1 thorpej * transfer is completed from a xmit complete interrupt,
1307 1.1 thorpej * but most drivers don't implement an upcall for that.
1308 1.1 thorpej * so, just use estimated completion time.
1309 1.1 thorpej * as a result, ifd->qi_ and ifd->qo_ are always synced.
1310 1.1 thorpej */
1311 1.1 thorpej nowp = &ifd->now_[ifd->qo_];
1312 1.1 thorpej /* get pkt_time (for link) in usec */
1313 1.1 thorpej #if 1 /* use approximation */
1314 1.1 thorpej pkt_time = ifd->curlen_[ifd->qo_] * ifd->ns_per_byte_;
1315 1.1 thorpej pkt_time = NSEC_TO_USEC(pkt_time);
1316 1.1 thorpej #else
1317 1.1 thorpej pkt_time = ifd->curlen_[ifd->qo_] * ifd->ns_per_byte_ / 1000;
1318 1.1 thorpej #endif
1319 1.1 thorpej #if 1 /* ALTQ4PPP */
1320 1.1 thorpej if (TV_LT(nowp, &ifd->ifnow_)) {
1321 1.1 thorpej int iftime;
1322 1.1 thorpej
1323 1.1 thorpej /*
1324 1.1 thorpej * make sure the estimated completion time does not go
1325 1.1 thorpej * too far. it can happen when the link layer supports
1326 1.1 thorpej * data compression or the interface speed is set to
1327 1.1 thorpej * a much lower value.
1328 1.1 thorpej */
1329 1.1 thorpej TV_DELTA(&ifd->ifnow_, nowp, iftime);
1330 1.1 thorpej if (iftime+pkt_time < ifd->maxiftime_) {
1331 1.1 thorpej TV_ADD_DELTA(&ifd->ifnow_, pkt_time, &ifd->ifnow_);
1332 1.1 thorpej } else {
1333 1.1 thorpej TV_ADD_DELTA(nowp, ifd->maxiftime_, &ifd->ifnow_);
1334 1.1 thorpej }
1335 1.1 thorpej } else {
1336 1.1 thorpej TV_ADD_DELTA(nowp, pkt_time, &ifd->ifnow_);
1337 1.1 thorpej }
1338 1.1 thorpej #else
1339 1.1 thorpej if (TV_LT(nowp, &ifd->ifnow_)) {
1340 1.1 thorpej TV_ADD_DELTA(&ifd->ifnow_, pkt_time, &ifd->ifnow_);
1341 1.1 thorpej } else {
1342 1.1 thorpej TV_ADD_DELTA(nowp, pkt_time, &ifd->ifnow_);
1343 1.1 thorpej }
1344 1.1 thorpej #endif
1345 1.1 thorpej
1346 1.1 thorpej while (cl != NULL) {
1347 1.1 thorpej TV_DELTA(&ifd->ifnow_, &cl->last_, idle);
1348 1.1 thorpej if (idle >= 2000000)
1349 1.1 thorpej /*
1350 1.1 thorpej * this class is idle enough, reset avgidle.
1351 1.1 thorpej * (TV_DELTA returns 2000000 us when delta is large.)
1352 1.1 thorpej */
1353 1.1 thorpej cl->avgidle_ = cl->maxidle_;
1354 1.1 thorpej
1355 1.1 thorpej /* get pkt_time (for class) in usec */
1356 1.1 thorpej #if 1 /* use approximation */
1357 1.1 thorpej pkt_time = pktlen * cl->ns_per_byte_;
1358 1.1 thorpej pkt_time = NSEC_TO_USEC(pkt_time);
1359 1.1 thorpej #else
1360 1.1 thorpej pkt_time = pktlen * cl->ns_per_byte_ / 1000;
1361 1.1 thorpej #endif
1362 1.1 thorpej idle -= pkt_time;
1363 1.1 thorpej
1364 1.1 thorpej avgidle = cl->avgidle_;
1365 1.1 thorpej avgidle += idle - (avgidle >> RM_FILTER_GAIN);
1366 1.1 thorpej cl->avgidle_ = avgidle;
1367 1.1 thorpej
1368 1.1 thorpej /* Are we overlimit ? */
1369 1.1 thorpej if (avgidle <= 0) {
1370 1.1 thorpej CBQTRACE(rmc_update_class_util, 'milo', cl->stats_.handle);
1371 1.1 thorpej #if 1 /* ALTQ */
1372 1.1 thorpej /*
1373 1.1 thorpej * need some lower bound for avgidle, otherwise
1374 1.1 thorpej * a borrowing class gets unbounded penalty.
1375 1.1 thorpej */
1376 1.1 thorpej if (avgidle < cl->minidle_)
1377 1.1 thorpej avgidle = cl->avgidle_ = cl->minidle_;
1378 1.1 thorpej #endif
1379 1.1 thorpej /* set next idle to make avgidle 0 */
1380 1.1 thorpej tidle = pkt_time +
1381 1.1 thorpej (((1 - RM_POWER) * avgidle) >> RM_FILTER_GAIN);
1382 1.1 thorpej TV_ADD_DELTA(nowp, tidle, &cl->undertime_);
1383 1.1 thorpej ++cl->stats_.over;
1384 1.1 thorpej } else {
1385 1.1 thorpej cl->avgidle_ =
1386 1.1 thorpej (avgidle > cl->maxidle_) ? cl->maxidle_ : avgidle;
1387 1.1 thorpej cl->undertime_.tv_sec = 0;
1388 1.1 thorpej if (cl->sleeping_) {
1389 1.1 thorpej CALLOUT_STOP(&cl->callout_);
1390 1.1 thorpej cl->sleeping_ = 0;
1391 1.1 thorpej }
1392 1.1 thorpej }
1393 1.1 thorpej
1394 1.1 thorpej if (borrows != NULL) {
1395 1.1 thorpej if (borrows != cl)
1396 1.1 thorpej ++cl->stats_.borrows;
1397 1.1 thorpej else
1398 1.1 thorpej borrows = NULL;
1399 1.1 thorpej }
1400 1.1 thorpej cl->last_ = ifd->ifnow_;
1401 1.1 thorpej cl->last_pkttime_ = pkt_time;
1402 1.1 thorpej
1403 1.1 thorpej #if 1
1404 1.1 thorpej if (cl->parent_ == NULL) {
1405 1.1 thorpej /* take stats of root class */
1406 1.1 thorpej PKTCNTR_ADD(&cl->stats_.xmit_cnt, pktlen);
1407 1.1 thorpej }
1408 1.1 thorpej #endif
1409 1.1 thorpej
1410 1.1 thorpej cl = cl->parent_;
1411 1.1 thorpej }
1412 1.1 thorpej
1413 1.1 thorpej /*
1414 1.1 thorpej * Check to see if cutoff needs to set to a new level.
1415 1.1 thorpej */
1416 1.1 thorpej cl = ifd->class_[ifd->qo_];
1417 1.1 thorpej if (borrowed && (ifd->cutoff_ >= borrowed->depth_)) {
1418 1.1 thorpej #if 1 /* ALTQ */
1419 1.1 thorpej if ((qlen(cl->q_) <= 0) || TV_LT(nowp, &borrowed->undertime_)) {
1420 1.1 thorpej rmc_tl_satisfied(ifd, nowp);
1421 1.1 thorpej CBQTRACE(rmc_update_class_util, 'broe', ifd->cutoff_);
1422 1.1 thorpej } else {
1423 1.1 thorpej ifd->cutoff_ = borrowed->depth_;
1424 1.1 thorpej CBQTRACE(rmc_update_class_util, 'ffob', borrowed->depth_);
1425 1.1 thorpej }
1426 1.1 thorpej #else /* !ALTQ */
1427 1.1 thorpej if ((qlen(cl->q_) <= 1) || TV_LT(&now, &borrowed->undertime_)) {
1428 1.1 thorpej reset_cutoff(ifd);
1429 1.1 thorpej #ifdef notdef
1430 1.1 thorpej rmc_tl_satisfied(ifd, &now);
1431 1.1 thorpej #endif
1432 1.1 thorpej CBQTRACE(rmc_update_class_util, 'broe', ifd->cutoff_);
1433 1.1 thorpej } else {
1434 1.1 thorpej ifd->cutoff_ = borrowed->depth_;
1435 1.1 thorpej CBQTRACE(rmc_update_class_util, 'ffob', borrowed->depth_);
1436 1.1 thorpej }
1437 1.1 thorpej #endif /* !ALTQ */
1438 1.1 thorpej }
1439 1.1 thorpej
1440 1.1 thorpej /*
1441 1.1 thorpej * Release class slot
1442 1.1 thorpej */
1443 1.1 thorpej ifd->borrowed_[ifd->qo_] = NULL;
1444 1.1 thorpej ifd->class_[ifd->qo_] = NULL;
1445 1.1 thorpej ifd->qo_ = (ifd->qo_ + 1) % ifd->maxqueued_;
1446 1.1 thorpej ifd->queued_--;
1447 1.1 thorpej }
1448 1.1 thorpej
1449 1.1 thorpej /*
1450 1.1 thorpej * void
1451 1.1 thorpej * rmc_drop_action(struct rm_class *cl) - Generic (not protocol-specific)
1452 1.1 thorpej * over-limit action routines. These get invoked by rmc_under_limit()
1453 1.1 thorpej * if a class with packets to send if over its bandwidth limit & can't
1454 1.1 thorpej * borrow from a parent class.
1455 1.1 thorpej *
1456 1.1 thorpej * Returns: NONE
1457 1.1 thorpej */
1458 1.1 thorpej
1459 1.1 thorpej static void
1460 1.1 thorpej rmc_drop_action(cl)
1461 1.1 thorpej struct rm_class *cl;
1462 1.1 thorpej {
1463 1.1 thorpej struct rm_ifdat *ifd = cl->ifdat_;
1464 1.1 thorpej
1465 1.1 thorpej ASSERT(qlen(cl->q_) > 0);
1466 1.1 thorpej _rmc_dropq(cl);
1467 1.1 thorpej if (qempty(cl->q_))
1468 1.1 thorpej ifd->na_[cl->pri_]--;
1469 1.1 thorpej }
1470 1.1 thorpej
1471 1.1 thorpej void rmc_dropall(cl)
1472 1.1 thorpej struct rm_class *cl;
1473 1.1 thorpej {
1474 1.1 thorpej struct rm_ifdat *ifd = cl->ifdat_;
1475 1.1 thorpej
1476 1.1 thorpej if (!qempty(cl->q_)) {
1477 1.1 thorpej _flushq(cl->q_);
1478 1.1 thorpej
1479 1.1 thorpej ifd->na_[cl->pri_]--;
1480 1.1 thorpej }
1481 1.1 thorpej }
1482 1.1 thorpej
1483 1.1 thorpej #if (__FreeBSD_version > 300000)
1484 1.1 thorpej /* hzto() is removed from FreeBSD-3.0 */
1485 1.1 thorpej static int hzto __P((struct timeval *));
1486 1.1 thorpej
1487 1.1 thorpej static int
1488 1.1 thorpej hzto(tv)
1489 1.1 thorpej struct timeval *tv;
1490 1.1 thorpej {
1491 1.1 thorpej struct timeval t2;
1492 1.1 thorpej
1493 1.1 thorpej getmicrotime(&t2);
1494 1.1 thorpej t2.tv_sec = tv->tv_sec - t2.tv_sec;
1495 1.1 thorpej t2.tv_usec = tv->tv_usec - t2.tv_usec;
1496 1.1 thorpej return (tvtohz(&t2));
1497 1.1 thorpej }
1498 1.1 thorpej #endif /* __FreeBSD_version > 300000 */
1499 1.1 thorpej
1500 1.1 thorpej /*
1501 1.1 thorpej * void
1502 1.1 thorpej * rmc_delay_action(struct rm_class *cl) - This function is the generic CBQ
1503 1.1 thorpej * delay action routine. It is invoked via rmc_under_limit when the
1504 1.1 thorpej * packet is discoverd to be overlimit.
1505 1.1 thorpej *
1506 1.1 thorpej * If the delay action is result of borrow class being overlimit, then
1507 1.1 thorpej * delay for the offtime of the borrowing class that is overlimit.
1508 1.1 thorpej *
1509 1.1 thorpej * Returns: NONE
1510 1.1 thorpej */
1511 1.1 thorpej
1512 1.1 thorpej void
1513 1.1 thorpej rmc_delay_action(cl, borrow)
1514 1.1 thorpej struct rm_class *cl, *borrow;
1515 1.1 thorpej {
1516 1.1 thorpej int delay, t, extradelay;
1517 1.1 thorpej
1518 1.1 thorpej cl->stats_.overactions++;
1519 1.1 thorpej TV_DELTA(&cl->undertime_, &cl->overtime_, delay);
1520 1.1 thorpej #ifndef BORROW_OFFTIME
1521 1.1 thorpej delay += cl->offtime_;
1522 1.1 thorpej #endif
1523 1.1 thorpej
1524 1.1 thorpej if (!cl->sleeping_) {
1525 1.1 thorpej CBQTRACE(rmc_delay_action, 'yled', cl->stats_.handle);
1526 1.1 thorpej #ifdef BORROW_OFFTIME
1527 1.1 thorpej if (borrow != NULL)
1528 1.1 thorpej extradelay = borrow->offtime_;
1529 1.1 thorpej else
1530 1.1 thorpej #endif
1531 1.1 thorpej extradelay = cl->offtime_;
1532 1.1 thorpej
1533 1.1 thorpej #ifdef ALTQ
1534 1.1 thorpej /*
1535 1.1 thorpej * XXX recalculate suspend time:
1536 1.1 thorpej * current undertime is (tidle + pkt_time) calculated
1537 1.1 thorpej * from the last transmission.
1538 1.1 thorpej * tidle: time required to bring avgidle back to 0
1539 1.1 thorpej * pkt_time: target waiting time for this class
1540 1.1 thorpej * we need to replace pkt_time by offtime
1541 1.1 thorpej */
1542 1.1 thorpej extradelay -= cl->last_pkttime_;
1543 1.1 thorpej #endif
1544 1.1 thorpej if (extradelay > 0) {
1545 1.1 thorpej TV_ADD_DELTA(&cl->undertime_, extradelay, &cl->undertime_);
1546 1.1 thorpej delay += extradelay;
1547 1.1 thorpej }
1548 1.1 thorpej
1549 1.1 thorpej cl->sleeping_ = 1;
1550 1.1 thorpej cl->stats_.delays++;
1551 1.1 thorpej
1552 1.1 thorpej /*
1553 1.1 thorpej * Since packets are phased randomly with respect to the
1554 1.1 thorpej * clock, 1 tick (the next clock tick) can be an arbitrarily
1555 1.1 thorpej * short time so we have to wait for at least two ticks.
1556 1.1 thorpej * NOTE: If there's no other traffic, we need the timer as
1557 1.1 thorpej * a 'backstop' to restart this class.
1558 1.1 thorpej */
1559 1.1 thorpej if (delay > tick * 2) {
1560 1.1 thorpej #ifdef __FreeBSD__
1561 1.1 thorpej /* FreeBSD rounds up the tick */
1562 1.1 thorpej t = hzto(&cl->undertime_);
1563 1.1 thorpej #else
1564 1.1 thorpej /* other BSDs round down the tick */
1565 1.1 thorpej t = hzto(&cl->undertime_) + 1;
1566 1.1 thorpej #endif
1567 1.1 thorpej } else
1568 1.1 thorpej t = 2;
1569 1.1 thorpej CALLOUT_RESET(&cl->callout_, t,
1570 1.1 thorpej (timeout_t *)rmc_restart, (caddr_t)cl);
1571 1.1 thorpej }
1572 1.1 thorpej }
1573 1.1 thorpej
1574 1.1 thorpej /*
1575 1.1 thorpej * void
1576 1.1 thorpej * rmc_restart() - is just a helper routine for rmc_delay_action -- it is
1577 1.1 thorpej * called by the system timer code & is responsible checking if the
1578 1.1 thorpej * class is still sleeping (it might have been restarted as a side
1579 1.1 thorpej * effect of the queue scan on a packet arrival) and, if so, restarting
1580 1.1 thorpej * output for the class. Inspecting the class state & restarting output
1581 1.1 thorpej * require locking the class structure. In general the driver is
1582 1.1 thorpej * responsible for locking but this is the only routine that is not
1583 1.1 thorpej * called directly or indirectly from the interface driver so it has
1584 1.1 thorpej * know about system locking conventions. Under bsd, locking is done
1585 1.1 thorpej * by raising IPL to splimp so that's what's implemented here. On a
1586 1.1 thorpej * different system this would probably need to be changed.
1587 1.1 thorpej *
1588 1.1 thorpej * Returns: NONE
1589 1.1 thorpej */
1590 1.1 thorpej
1591 1.1 thorpej static void
1592 1.1 thorpej rmc_restart(cl)
1593 1.1 thorpej struct rm_class *cl;
1594 1.1 thorpej {
1595 1.1 thorpej struct rm_ifdat *ifd = cl->ifdat_;
1596 1.1 thorpej int s;
1597 1.1 thorpej
1598 1.1 thorpej s = splimp();
1599 1.1 thorpej if (cl->sleeping_) {
1600 1.1 thorpej cl->sleeping_ = 0;
1601 1.1 thorpej cl->undertime_.tv_sec = 0;
1602 1.1 thorpej
1603 1.1 thorpej if (ifd->queued_ < ifd->maxqueued_ && ifd->restart != NULL) {
1604 1.1 thorpej CBQTRACE(rmc_restart, 'trts', cl->stats_.handle);
1605 1.1 thorpej (ifd->restart)(ifd->ifq_);
1606 1.1 thorpej }
1607 1.1 thorpej }
1608 1.1 thorpej splx(s);
1609 1.1 thorpej }
1610 1.1 thorpej
1611 1.1 thorpej /*
1612 1.1 thorpej * void
1613 1.1 thorpej * rmc_root_overlimit(struct rm_class *cl) - This the generic overlimit
1614 1.1 thorpej * handling routine for the root class of the link sharing structure.
1615 1.1 thorpej *
1616 1.1 thorpej * Returns: NONE
1617 1.1 thorpej */
1618 1.1 thorpej
1619 1.1 thorpej static void
1620 1.1 thorpej rmc_root_overlimit(cl, borrow)
1621 1.1 thorpej struct rm_class *cl, *borrow;
1622 1.1 thorpej {
1623 1.1 thorpej panic("rmc_root_overlimit");
1624 1.1 thorpej }
1625 1.1 thorpej
1626 1.1 thorpej /*
1627 1.1 thorpej * Packet Queue handling routines. Eventually, this is to localize the
1628 1.1 thorpej * effects on the code whether queues are red queues or droptail
1629 1.1 thorpej * queues.
1630 1.1 thorpej */
1631 1.1 thorpej
1632 1.1 thorpej static int
1633 1.1 thorpej _rmc_addq(cl, m)
1634 1.1 thorpej rm_class_t *cl;
1635 1.1 thorpej mbuf_t *m;
1636 1.1 thorpej {
1637 1.1 thorpej #ifdef ALTQ_RIO
1638 1.1 thorpej if (q_is_rio(cl->q_))
1639 1.1 thorpej return rio_addq((rio_t *)cl->red_, cl->q_, m, cl->pktattr_);
1640 1.1 thorpej #endif
1641 1.1 thorpej #ifdef ALTQ_RED
1642 1.1 thorpej if (q_is_red(cl->q_))
1643 1.1 thorpej return red_addq(cl->red_, cl->q_, m, cl->pktattr_);
1644 1.1 thorpej #endif /* ALTQ_RED */
1645 1.1 thorpej
1646 1.1 thorpej if (cl->flags_ & RMCF_CLEARDSCP)
1647 1.1 thorpej write_dsfield(m, cl->pktattr_, 0);
1648 1.1 thorpej
1649 1.1 thorpej _addq(cl->q_, m);
1650 1.1 thorpej return (0);
1651 1.1 thorpej }
1652 1.1 thorpej
1653 1.1 thorpej /* note: _rmc_dropq is not called for red */
1654 1.1 thorpej static void
1655 1.1 thorpej _rmc_dropq(cl)
1656 1.1 thorpej rm_class_t *cl;
1657 1.1 thorpej {
1658 1.1 thorpej mbuf_t *m;
1659 1.1 thorpej
1660 1.1 thorpej if ((m = _getq(cl->q_)) != NULL)
1661 1.1 thorpej m_freem(m);
1662 1.1 thorpej }
1663 1.1 thorpej
1664 1.1 thorpej static mbuf_t *
1665 1.1 thorpej _rmc_getq(cl)
1666 1.1 thorpej rm_class_t *cl;
1667 1.1 thorpej {
1668 1.1 thorpej #ifdef ALTQ_RIO
1669 1.1 thorpej if (q_is_rio(cl->q_))
1670 1.1 thorpej return rio_getq((rio_t *)cl->red_, cl->q_);
1671 1.1 thorpej #endif
1672 1.1 thorpej #ifdef ALTQ_RED
1673 1.1 thorpej if (q_is_red(cl->q_))
1674 1.1 thorpej return red_getq(cl->red_, cl->q_);
1675 1.1 thorpej #endif
1676 1.1 thorpej return _getq(cl->q_);
1677 1.1 thorpej }
1678 1.1 thorpej
1679 1.1 thorpej static mbuf_t *
1680 1.1 thorpej _rmc_pollq(cl)
1681 1.1 thorpej rm_class_t *cl;
1682 1.1 thorpej {
1683 1.1 thorpej return qhead(cl->q_);
1684 1.1 thorpej }
1685 1.1 thorpej
1686 1.1 thorpej #ifdef CBQ_TRACE
1687 1.1 thorpej
1688 1.1 thorpej struct cbqtrace cbqtrace_buffer[NCBQTRACE+1];
1689 1.1 thorpej struct cbqtrace *cbqtrace_ptr = NULL;
1690 1.1 thorpej int cbqtrace_count;
1691 1.1 thorpej
1692 1.1 thorpej /*
1693 1.1 thorpej * DDB hook to trace cbq events:
1694 1.1 thorpej * the last 1024 events are held in a circular buffer.
1695 1.1 thorpej * use "call cbqtrace_dump(N)" to display 20 events from Nth event.
1696 1.1 thorpej */
1697 1.1 thorpej void cbqtrace_dump(int);
1698 1.1 thorpej static char *rmc_funcname(void *);
1699 1.1 thorpej
1700 1.1 thorpej static struct rmc_funcs {
1701 1.1 thorpej void *func;
1702 1.1 thorpej char *name;
1703 1.1 thorpej } rmc_funcs[] =
1704 1.1 thorpej {
1705 1.1 thorpej rmc_init, "rmc_init",
1706 1.1 thorpej rmc_queue_packet, "rmc_queue_packet",
1707 1.1 thorpej rmc_under_limit, "rmc_under_limit",
1708 1.1 thorpej rmc_update_class_util, "rmc_update_class_util",
1709 1.1 thorpej rmc_delay_action, "rmc_delay_action",
1710 1.1 thorpej rmc_restart, "rmc_restart",
1711 1.1 thorpej _rmc_wrr_dequeue_next, "_rmc_wrr_dequeue_next",
1712 1.1 thorpej NULL, NULL
1713 1.1 thorpej };
1714 1.1 thorpej
1715 1.1 thorpej static char *rmc_funcname(func)
1716 1.1 thorpej void *func;
1717 1.1 thorpej {
1718 1.1 thorpej struct rmc_funcs *fp;
1719 1.1 thorpej
1720 1.1 thorpej for (fp = rmc_funcs; fp->func != NULL; fp++)
1721 1.1 thorpej if (fp->func == func)
1722 1.1 thorpej return (fp->name);
1723 1.1 thorpej return ("unknown");
1724 1.1 thorpej }
1725 1.1 thorpej
1726 1.1 thorpej void cbqtrace_dump(counter)
1727 1.1 thorpej int counter;
1728 1.1 thorpej {
1729 1.1 thorpej int i, *p;
1730 1.1 thorpej char *cp;
1731 1.1 thorpej
1732 1.1 thorpej counter = counter % NCBQTRACE;
1733 1.1 thorpej p = (int *)&cbqtrace_buffer[counter];
1734 1.1 thorpej
1735 1.1 thorpej for (i=0; i<20; i++) {
1736 1.1 thorpej printf("[0x%x] ", *p++);
1737 1.1 thorpej printf("%s: ", rmc_funcname((void *)*p++));
1738 1.1 thorpej cp = (char *)p++;
1739 1.1 thorpej printf("%c%c%c%c: ", cp[0], cp[1], cp[2], cp[3]);
1740 1.1 thorpej printf("%d\n",*p++);
1741 1.1 thorpej
1742 1.1 thorpej if (p >= (int *)&cbqtrace_buffer[NCBQTRACE])
1743 1.1 thorpej p = (int *)cbqtrace_buffer;
1744 1.1 thorpej }
1745 1.1 thorpej }
1746 1.1 thorpej #endif /* CBQ_TRACE */
1747 1.1 thorpej
1748 1.1 thorpej #endif /* ALTQ_CBQ */
1749 1.1 thorpej
1750 1.1 thorpej #if defined(ALTQ_CBQ) || defined(ALTQ_RED) || defined(ALTQ_RIO) || defined(ALTQ_HFSC) || defined(ALTQ_PRIQ)
1751 1.1 thorpej #if !defined(__GNUC__) || defined(ALTQ_DEBUG)
1752 1.1 thorpej
1753 1.1 thorpej void
1754 1.1 thorpej _addq(q, m)
1755 1.1 thorpej class_queue_t *q;
1756 1.1 thorpej mbuf_t *m;
1757 1.1 thorpej {
1758 1.1 thorpej mbuf_t *m0;
1759 1.1 thorpej
1760 1.1 thorpej if ((m0 = qtail(q)) != NULL)
1761 1.1 thorpej m->m_nextpkt = m0->m_nextpkt;
1762 1.1 thorpej else
1763 1.1 thorpej m0 = m;
1764 1.1 thorpej m0->m_nextpkt = m;
1765 1.1 thorpej qtail(q) = m;
1766 1.1 thorpej qlen(q)++;
1767 1.1 thorpej }
1768 1.1 thorpej
1769 1.1 thorpej mbuf_t *
1770 1.1 thorpej _getq(q)
1771 1.1 thorpej class_queue_t *q;
1772 1.1 thorpej {
1773 1.1 thorpej mbuf_t *m, *m0;
1774 1.1 thorpej
1775 1.1 thorpej if ((m = qtail(q)) == NULL)
1776 1.1 thorpej return (NULL);
1777 1.1 thorpej if ((m0 = m->m_nextpkt) != m)
1778 1.1 thorpej m->m_nextpkt = m0->m_nextpkt;
1779 1.1 thorpej else {
1780 1.1 thorpej ASSERT(qlen(q) == 1);
1781 1.1 thorpej qtail(q) = NULL;
1782 1.1 thorpej }
1783 1.1 thorpej qlen(q)--;
1784 1.3 thorpej m0->m_nextpkt = NULL;
1785 1.1 thorpej return (m0);
1786 1.1 thorpej }
1787 1.1 thorpej
1788 1.1 thorpej /* drop a packet at the tail of the queue */
1789 1.1 thorpej mbuf_t *
1790 1.1 thorpej _getq_tail(q)
1791 1.1 thorpej class_queue_t *q;
1792 1.1 thorpej {
1793 1.1 thorpej mbuf_t *m, *m0, *prev;
1794 1.1 thorpej
1795 1.1 thorpej if ((m = m0 = qtail(q)) == NULL)
1796 1.1 thorpej return NULL;
1797 1.1 thorpej do {
1798 1.1 thorpej prev = m0;
1799 1.1 thorpej m0 = m0->m_nextpkt;
1800 1.1 thorpej } while (m0 != m);
1801 1.1 thorpej prev->m_nextpkt = m->m_nextpkt;
1802 1.1 thorpej if (prev == m) {
1803 1.1 thorpej ASSERT(qlen(q) == 1);
1804 1.1 thorpej qtail(q) = NULL;
1805 1.1 thorpej } else
1806 1.1 thorpej qtail(q) = prev;
1807 1.1 thorpej qlen(q)--;
1808 1.3 thorpej m->m_nextpkt = NULL;
1809 1.1 thorpej return (m);
1810 1.1 thorpej }
1811 1.1 thorpej
1812 1.1 thorpej /* randomly select a packet in the queue */
1813 1.1 thorpej mbuf_t *
1814 1.1 thorpej _getq_random(q)
1815 1.1 thorpej class_queue_t *q;
1816 1.1 thorpej {
1817 1.1 thorpej struct mbuf *m;
1818 1.1 thorpej int i, n;
1819 1.1 thorpej
1820 1.1 thorpej if ((m = qtail(q)) == NULL)
1821 1.1 thorpej return NULL;
1822 1.1 thorpej if (m->m_nextpkt == m) {
1823 1.1 thorpej ASSERT(qlen(q) == 1);
1824 1.1 thorpej qtail(q) = NULL;
1825 1.1 thorpej } else {
1826 1.1 thorpej struct mbuf *prev = NULL;
1827 1.1 thorpej
1828 1.1 thorpej n = random() % qlen(q) + 1;
1829 1.1 thorpej for (i = 0; i < n; i++) {
1830 1.1 thorpej prev = m;
1831 1.1 thorpej m = m->m_nextpkt;
1832 1.1 thorpej }
1833 1.1 thorpej prev->m_nextpkt = m->m_nextpkt;
1834 1.1 thorpej if (m == qtail(q))
1835 1.1 thorpej qtail(q) = prev;
1836 1.1 thorpej }
1837 1.1 thorpej qlen(q)--;
1838 1.3 thorpej m->m_nextpkt = NULL;
1839 1.1 thorpej return (m);
1840 1.1 thorpej }
1841 1.1 thorpej
1842 1.1 thorpej void
1843 1.1 thorpej _removeq(q, m)
1844 1.1 thorpej class_queue_t *q;
1845 1.1 thorpej mbuf_t *m;
1846 1.1 thorpej {
1847 1.1 thorpej mbuf_t *m0, *prev;
1848 1.1 thorpej
1849 1.1 thorpej m0 = qtail(q);
1850 1.1 thorpej do {
1851 1.1 thorpej prev = m0;
1852 1.1 thorpej m0 = m0->m_nextpkt;
1853 1.1 thorpej } while (m0 != m);
1854 1.1 thorpej prev->m_nextpkt = m->m_nextpkt;
1855 1.1 thorpej if (prev == m)
1856 1.1 thorpej qtail(q) = NULL;
1857 1.1 thorpej else if (qtail(q) == m)
1858 1.1 thorpej qtail(q) = prev;
1859 1.1 thorpej qlen(q)--;
1860 1.1 thorpej }
1861 1.1 thorpej
1862 1.1 thorpej void
1863 1.1 thorpej _flushq(q)
1864 1.1 thorpej class_queue_t *q;
1865 1.1 thorpej {
1866 1.1 thorpej mbuf_t *m;
1867 1.1 thorpej
1868 1.1 thorpej while ((m = _getq(q)) != NULL)
1869 1.1 thorpej m_freem(m);
1870 1.1 thorpej ASSERT(qlen(q) == 0);
1871 1.1 thorpej }
1872 1.1 thorpej
1873 1.1 thorpej #endif /* !__GNUC__ || ALTQ_DEBUG */
1874 1.1 thorpej #endif /* ALTQ_CBQ || ALTQ_RED || ALTQ_RIO || ALTQ_HFSC || ALTQ_PRIQ */
1875