blob: 0d5b79365d0350cc73f185ae85f11235d56ac7cf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_PKT_SCHED_H
2#define __LINUX_PKT_SCHED_H
3
Jaswinder Singh Rajputb8adfd32009-01-30 22:07:05 +05304#include <linux/types.h>
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006/* Logical priority bands not depending on specific packet scheduler.
7 Every scheduler will map them to real traffic classes, if it has
8 no more precise mechanism to classify packets.
9
10 These numbers have no special meaning, though their coincidence
11 with obsolete IPv6 values is not occasional :-). New IPv6 drafts
12 preferred full anarchy inspired by diffserv group.
13
14 Note: TC_PRIO_BESTEFFORT does not mean that it is the most unhappy
15 class, actually, as rule it will be handled with more care than
16 filler or even bulk.
17 */
18
19#define TC_PRIO_BESTEFFORT 0
20#define TC_PRIO_FILLER 1
21#define TC_PRIO_BULK 2
22#define TC_PRIO_INTERACTIVE_BULK 4
23#define TC_PRIO_INTERACTIVE 6
24#define TC_PRIO_CONTROL 7
25
26#define TC_PRIO_MAX 15
27
28/* Generic queue statistics, available for all the elements.
29 Particular schedulers may have also their private records.
30 */
31
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080032struct tc_stats {
stephen hemminger5eccdf5e2011-11-21 06:53:46 +000033 __u64 bytes; /* Number of enqueued bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 __u32 packets; /* Number of enqueued packets */
35 __u32 drops; /* Packets dropped because of lack of resources */
36 __u32 overlimits; /* Number of throttle events when this
37 * flow goes out of allocated bandwidth */
38 __u32 bps; /* Current flow byte rate */
39 __u32 pps; /* Current flow packet rate */
40 __u32 qlen;
41 __u32 backlog;
42};
43
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080044struct tc_estimator {
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 signed char interval;
46 unsigned char ewma_log;
47};
48
49/* "Handles"
50 ---------
51
52 All the traffic control objects have 32bit identifiers, or "handles".
53
54 They can be considered as opaque numbers from user API viewpoint,
55 but actually they always consist of two fields: major and
56 minor numbers, which are interpreted by kernel specially,
57 that may be used by applications, though not recommended.
58
59 F.e. qdisc handles always have minor number equal to zero,
60 classes (or flows) have major equal to parent qdisc major, and
61 minor uniquely identifying class inside qdisc.
62
63 Macros to manipulate handles:
64 */
65
66#define TC_H_MAJ_MASK (0xFFFF0000U)
67#define TC_H_MIN_MASK (0x0000FFFFU)
68#define TC_H_MAJ(h) ((h)&TC_H_MAJ_MASK)
69#define TC_H_MIN(h) ((h)&TC_H_MIN_MASK)
70#define TC_H_MAKE(maj,min) (((maj)&TC_H_MAJ_MASK)|((min)&TC_H_MIN_MASK))
71
72#define TC_H_UNSPEC (0U)
73#define TC_H_ROOT (0xFFFFFFFFU)
74#define TC_H_INGRESS (0xFFFFFFF1U)
75
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080076struct tc_ratespec {
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 unsigned char cell_log;
78 unsigned char __reserved;
Jesper Dangaard Brouere08b0992007-09-12 16:36:28 +020079 unsigned short overhead;
80 short cell_align;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned short mpu;
82 __u32 rate;
83};
84
Patrick McHardy5feb5e12008-01-23 20:35:19 -080085#define TC_RTAB_SIZE 1024
86
Jussi Kivilinna175f9c12008-07-20 00:08:47 -070087struct tc_sizespec {
88 unsigned char cell_log;
89 unsigned char size_log;
90 short cell_align;
91 int overhead;
92 unsigned int linklayer;
93 unsigned int mpu;
94 unsigned int mtu;
95 unsigned int tsize;
96};
97
98enum {
99 TCA_STAB_UNSPEC,
100 TCA_STAB_BASE,
101 TCA_STAB_DATA,
102 __TCA_STAB_MAX
103};
104
105#define TCA_STAB_MAX (__TCA_STAB_MAX - 1)
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/* FIFO section */
108
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800109struct tc_fifo_qopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 __u32 limit; /* Queue length: bytes for bfifo, packets for pfifo */
111};
112
113/* PRIO section */
114
115#define TCQ_PRIO_BANDS 16
Thomas Grafbdc450a2005-11-05 21:14:28 +0100116#define TCQ_MIN_PRIO_BANDS 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800118struct tc_prio_qopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 int bands; /* Number of bands */
120 __u8 priomap[TC_PRIO_MAX+1]; /* Map: logical priority -> PRIO band */
121};
122
Alexander Duyck92651942008-09-12 16:29:34 -0700123/* MULTIQ section */
124
125struct tc_multiq_qopt {
126 __u16 bands; /* Number of bands */
127 __u16 max_bands; /* Maximum number of queues */
128};
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/* TBF section */
131
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800132struct tc_tbf_qopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 struct tc_ratespec rate;
134 struct tc_ratespec peakrate;
135 __u32 limit;
136 __u32 buffer;
137 __u32 mtu;
138};
139
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800140enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 TCA_TBF_UNSPEC,
142 TCA_TBF_PARMS,
143 TCA_TBF_RTAB,
144 TCA_TBF_PTAB,
145 __TCA_TBF_MAX,
146};
147
148#define TCA_TBF_MAX (__TCA_TBF_MAX - 1)
149
150
151/* TEQL section */
152
153/* TEQL does not require any parameters */
154
155/* SFQ section */
156
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800157struct tc_sfq_qopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 unsigned quantum; /* Bytes per round allocated to flow */
159 int perturb_period; /* Period of hash perturbation */
160 __u32 limit; /* Maximal packets in queue */
161 unsigned divisor; /* Hash divisor */
162 unsigned flows; /* Maximal number of flows */
163};
164
Eric Dumazetddecf0f2012-01-06 06:31:44 +0000165struct tc_sfqred_stats {
166 __u32 prob_drop; /* Early drops, below max threshold */
167 __u32 forced_drop; /* Early drops, after max threshold */
168 __u32 prob_mark; /* Marked packets, below max threshold */
169 __u32 forced_mark; /* Marked packets, after max threshold */
170 __u32 prob_mark_head; /* Marked packets, below max threshold */
171 __u32 forced_mark_head;/* Marked packets, after max threshold */
172};
173
Eric Dumazet18cb8092012-01-04 14:18:38 +0000174struct tc_sfq_qopt_v1 {
175 struct tc_sfq_qopt v0;
176 unsigned int depth; /* max number of packets per flow */
177 unsigned int headdrop;
Eric Dumazetddecf0f2012-01-06 06:31:44 +0000178/* SFQRED parameters */
179 __u32 limit; /* HARD maximal flow queue length (bytes) */
180 __u32 qth_min; /* Min average length threshold (bytes) */
181 __u32 qth_max; /* Max average length threshold (bytes) */
182 unsigned char Wlog; /* log(W) */
183 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
184 unsigned char Scell_log; /* cell size for idle damping */
185 unsigned char flags;
186 __u32 max_P; /* probability, high resolution */
187/* SFQRED stats */
188 struct tc_sfqred_stats stats;
Eric Dumazet18cb8092012-01-04 14:18:38 +0000189};
190
191
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800192struct tc_sfq_xstats {
Patrick McHardy94de78d2008-01-31 18:37:16 -0800193 __s32 allot;
194};
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/* RED section */
197
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800198enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 TCA_RED_UNSPEC,
200 TCA_RED_PARMS,
201 TCA_RED_STAB,
Eric Dumazet8af2a212011-12-08 06:06:03 +0000202 TCA_RED_MAX_P,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 __TCA_RED_MAX,
204};
205
206#define TCA_RED_MAX (__TCA_RED_MAX - 1)
207
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800208struct tc_red_qopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 __u32 limit; /* HARD maximal queue length (bytes) */
210 __u32 qth_min; /* Min average length threshold (bytes) */
211 __u32 qth_max; /* Max average length threshold (bytes) */
212 unsigned char Wlog; /* log(W) */
213 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
214 unsigned char Scell_log; /* cell size for idle damping */
215 unsigned char flags;
Eric Dumazet8af2a212011-12-08 06:06:03 +0000216#define TC_RED_ECN 1
217#define TC_RED_HARDDROP 2
218#define TC_RED_ADAPTATIVE 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219};
220
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800221struct tc_red_xstats {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 __u32 early; /* Early drops */
223 __u32 pdrop; /* Drops due to queue limits */
224 __u32 other; /* Drops due to drop() calls */
225 __u32 marked; /* Marked packets */
226};
227
228/* GRED section */
229
230#define MAX_DPs 16
231
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800232enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 TCA_GRED_UNSPEC,
234 TCA_GRED_PARMS,
235 TCA_GRED_STAB,
236 TCA_GRED_DPS,
Eric Dumazeta73ed262011-12-09 02:46:45 +0000237 TCA_GRED_MAX_P,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 __TCA_GRED_MAX,
239};
240
241#define TCA_GRED_MAX (__TCA_GRED_MAX - 1)
242
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800243struct tc_gred_qopt {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100244 __u32 limit; /* HARD maximal queue length (bytes) */
245 __u32 qth_min; /* Min average length threshold (bytes) */
246 __u32 qth_max; /* Max average length threshold (bytes) */
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300247 __u32 DP; /* up to 2^32 DPs */
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100248 __u32 backlog;
249 __u32 qave;
250 __u32 forced;
251 __u32 early;
252 __u32 other;
253 __u32 pdrop;
254 __u8 Wlog; /* log(W) */
255 __u8 Plog; /* log(P_max/(qth_max-qth_min)) */
256 __u8 Scell_log; /* cell size for idle damping */
257 __u8 prio; /* prio of this VQ */
258 __u32 packets;
259 __u32 bytesin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260};
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262/* gred setup */
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800263struct tc_gred_sopt {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100264 __u32 DPs;
265 __u32 def_DP;
266 __u8 grio;
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100267 __u8 flags;
268 __u16 pad1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269};
270
stephen hemminger45e14432011-02-02 15:21:10 +0000271/* CHOKe section */
272
273enum {
274 TCA_CHOKE_UNSPEC,
275 TCA_CHOKE_PARMS,
276 TCA_CHOKE_STAB,
Eric Dumazeta73ed262011-12-09 02:46:45 +0000277 TCA_CHOKE_MAX_P,
stephen hemminger45e14432011-02-02 15:21:10 +0000278 __TCA_CHOKE_MAX,
279};
280
281#define TCA_CHOKE_MAX (__TCA_CHOKE_MAX - 1)
282
283struct tc_choke_qopt {
284 __u32 limit; /* Hard queue length (packets) */
285 __u32 qth_min; /* Min average threshold (packets) */
286 __u32 qth_max; /* Max average threshold (packets) */
287 unsigned char Wlog; /* log(W) */
288 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
289 unsigned char Scell_log; /* cell size for idle damping */
290 unsigned char flags; /* see RED flags */
291};
292
293struct tc_choke_xstats {
294 __u32 early; /* Early drops */
295 __u32 pdrop; /* Drops due to queue limits */
296 __u32 other; /* Drops due to drop() calls */
297 __u32 marked; /* Marked packets */
298 __u32 matched; /* Drops due to flow match */
299};
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/* HTB section */
302#define TC_HTB_NUMPRIO 8
303#define TC_HTB_MAXDEPTH 8
304#define TC_HTB_PROTOVER 3 /* the same as HTB and TC's major */
305
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800306struct tc_htb_opt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 struct tc_ratespec rate;
308 struct tc_ratespec ceil;
309 __u32 buffer;
310 __u32 cbuffer;
311 __u32 quantum;
312 __u32 level; /* out only */
313 __u32 prio;
314};
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800315struct tc_htb_glob {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 __u32 version; /* to match HTB/TC */
317 __u32 rate2quantum; /* bps->quantum divisor */
318 __u32 defcls; /* default class number */
319 __u32 debug; /* debug flags */
320
321 /* stats */
stephen hemminger5eccdf5e2011-11-21 06:53:46 +0000322 __u32 direct_pkts; /* count of non shaped packets */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323};
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800324enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 TCA_HTB_UNSPEC,
326 TCA_HTB_PARMS,
327 TCA_HTB_INIT,
328 TCA_HTB_CTAB,
329 TCA_HTB_RTAB,
330 __TCA_HTB_MAX,
331};
332
333#define TCA_HTB_MAX (__TCA_HTB_MAX - 1)
334
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800335struct tc_htb_xstats {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 __u32 lends;
337 __u32 borrows;
338 __u32 giants; /* too big packets (rate will not be accurate) */
339 __u32 tokens;
340 __u32 ctokens;
341};
342
343/* HFSC section */
344
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800345struct tc_hfsc_qopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 __u16 defcls; /* default class */
347};
348
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800349struct tc_service_curve {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 __u32 m1; /* slope of the first segment in bps */
351 __u32 d; /* x-projection of the first segment in us */
352 __u32 m2; /* slope of the second segment in bps */
353};
354
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800355struct tc_hfsc_stats {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 __u64 work; /* total work done */
357 __u64 rtwork; /* work done by real-time criteria */
358 __u32 period; /* current period */
359 __u32 level; /* class level in hierarchy */
360};
361
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800362enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 TCA_HFSC_UNSPEC,
364 TCA_HFSC_RSC,
365 TCA_HFSC_FSC,
366 TCA_HFSC_USC,
367 __TCA_HFSC_MAX,
368};
369
370#define TCA_HFSC_MAX (__TCA_HFSC_MAX - 1)
371
372
373/* CBQ section */
374
375#define TC_CBQ_MAXPRIO 8
376#define TC_CBQ_MAXLEVEL 8
377#define TC_CBQ_DEF_EWMA 5
378
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800379struct tc_cbq_lssopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 unsigned char change;
381 unsigned char flags;
382#define TCF_CBQ_LSS_BOUNDED 1
383#define TCF_CBQ_LSS_ISOLATED 2
384 unsigned char ewma_log;
385 unsigned char level;
386#define TCF_CBQ_LSS_FLAGS 1
387#define TCF_CBQ_LSS_EWMA 2
388#define TCF_CBQ_LSS_MAXIDLE 4
389#define TCF_CBQ_LSS_MINIDLE 8
390#define TCF_CBQ_LSS_OFFTIME 0x10
391#define TCF_CBQ_LSS_AVPKT 0x20
392 __u32 maxidle;
393 __u32 minidle;
394 __u32 offtime;
395 __u32 avpkt;
396};
397
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800398struct tc_cbq_wrropt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 unsigned char flags;
400 unsigned char priority;
401 unsigned char cpriority;
402 unsigned char __reserved;
403 __u32 allot;
404 __u32 weight;
405};
406
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800407struct tc_cbq_ovl {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 unsigned char strategy;
409#define TC_CBQ_OVL_CLASSIC 0
410#define TC_CBQ_OVL_DELAY 1
411#define TC_CBQ_OVL_LOWPRIO 2
412#define TC_CBQ_OVL_DROP 3
413#define TC_CBQ_OVL_RCLASSIC 4
414 unsigned char priority2;
Patrick McHardy8a470772005-06-28 12:56:45 -0700415 __u16 pad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 __u32 penalty;
417};
418
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800419struct tc_cbq_police {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 unsigned char police;
421 unsigned char __res1;
422 unsigned short __res2;
423};
424
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800425struct tc_cbq_fopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 __u32 split;
427 __u32 defmap;
428 __u32 defchange;
429};
430
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800431struct tc_cbq_xstats {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 __u32 borrows;
433 __u32 overactions;
434 __s32 avgidle;
435 __s32 undertime;
436};
437
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800438enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 TCA_CBQ_UNSPEC,
440 TCA_CBQ_LSSOPT,
441 TCA_CBQ_WRROPT,
442 TCA_CBQ_FOPT,
443 TCA_CBQ_OVL_STRATEGY,
444 TCA_CBQ_RATE,
445 TCA_CBQ_RTAB,
446 TCA_CBQ_POLICE,
447 __TCA_CBQ_MAX,
448};
449
450#define TCA_CBQ_MAX (__TCA_CBQ_MAX - 1)
451
452/* dsmark section */
453
454enum {
455 TCA_DSMARK_UNSPEC,
456 TCA_DSMARK_INDICES,
457 TCA_DSMARK_DEFAULT_INDEX,
458 TCA_DSMARK_SET_TC_INDEX,
459 TCA_DSMARK_MASK,
460 TCA_DSMARK_VALUE,
461 __TCA_DSMARK_MAX,
462};
463
464#define TCA_DSMARK_MAX (__TCA_DSMARK_MAX - 1)
465
466/* ATM section */
467
468enum {
469 TCA_ATM_UNSPEC,
470 TCA_ATM_FD, /* file/socket descriptor */
471 TCA_ATM_PTR, /* pointer to descriptor - later */
472 TCA_ATM_HDR, /* LL header */
473 TCA_ATM_EXCESS, /* excess traffic class (0 for CLP) */
474 TCA_ATM_ADDR, /* PVC address (for output only) */
475 TCA_ATM_STATE, /* VC state (ATM_VS_*; for output only) */
476 __TCA_ATM_MAX,
477};
478
479#define TCA_ATM_MAX (__TCA_ATM_MAX - 1)
480
481/* Network emulator */
482
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800483enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 TCA_NETEM_UNSPEC,
485 TCA_NETEM_CORR,
486 TCA_NETEM_DELAY_DIST,
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700487 TCA_NETEM_REORDER,
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800488 TCA_NETEM_CORRUPT,
stephen hemminger661b7972011-02-23 13:04:21 +0000489 TCA_NETEM_LOSS,
Hagen Paul Pfeifer7bc0f282011-11-30 12:20:26 +0000490 TCA_NETEM_RATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 __TCA_NETEM_MAX,
492};
493
494#define TCA_NETEM_MAX (__TCA_NETEM_MAX - 1)
495
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800496struct tc_netem_qopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 __u32 latency; /* added delay (us) */
498 __u32 limit; /* fifo limit (packets) */
499 __u32 loss; /* random packet loss (0=none ~0=100%) */
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700500 __u32 gap; /* re-ordering gap (0 for none) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 __u32 duplicate; /* random packet dup (0=none ~0=100%) */
502 __u32 jitter; /* random jitter in latency (us) */
503};
504
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800505struct tc_netem_corr {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 __u32 delay_corr; /* delay correlation */
507 __u32 loss_corr; /* packet loss correlation */
508 __u32 dup_corr; /* duplicate correlation */
509};
510
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800511struct tc_netem_reorder {
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700512 __u32 probability;
513 __u32 correlation;
514};
515
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800516struct tc_netem_corrupt {
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800517 __u32 probability;
518 __u32 correlation;
519};
520
Hagen Paul Pfeifer7bc0f282011-11-30 12:20:26 +0000521struct tc_netem_rate {
522 __u32 rate; /* byte/s */
Hagen Paul Pfeifer90b41a12011-12-12 14:30:00 +0000523 __s32 packet_overhead;
524 __u32 cell_size;
525 __s32 cell_overhead;
Hagen Paul Pfeifer7bc0f282011-11-30 12:20:26 +0000526};
527
stephen hemminger661b7972011-02-23 13:04:21 +0000528enum {
529 NETEM_LOSS_UNSPEC,
530 NETEM_LOSS_GI, /* General Intuitive - 4 state model */
531 NETEM_LOSS_GE, /* Gilbert Elliot models */
532 __NETEM_LOSS_MAX
533};
534#define NETEM_LOSS_MAX (__NETEM_LOSS_MAX - 1)
535
stephen hemminger5eccdf5e2011-11-21 06:53:46 +0000536/* State transition probabilities for 4 state model */
stephen hemminger661b7972011-02-23 13:04:21 +0000537struct tc_netem_gimodel {
538 __u32 p13;
539 __u32 p31;
540 __u32 p32;
541 __u32 p14;
542 __u32 p23;
543};
544
545/* Gilbert-Elliot models */
546struct tc_netem_gemodel {
547 __u32 p;
548 __u32 r;
549 __u32 h;
550 __u32 k1;
551};
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553#define NETEM_DIST_SCALE 8192
stephen hemmingerdf173bd2011-02-23 13:04:19 +0000554#define NETEM_DIST_MAX 16384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Patrick McHardy13d2a1d2008-11-20 04:10:00 -0800556/* DRR */
557
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800558enum {
Patrick McHardy13d2a1d2008-11-20 04:10:00 -0800559 TCA_DRR_UNSPEC,
560 TCA_DRR_QUANTUM,
561 __TCA_DRR_MAX
562};
563
564#define TCA_DRR_MAX (__TCA_DRR_MAX - 1)
565
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800566struct tc_drr_stats {
Chuck Ebberte672f7d2009-02-10 17:18:17 -0800567 __u32 deficit;
Patrick McHardy13d2a1d2008-11-20 04:10:00 -0800568};
569
John Fastabendb8970f02011-01-17 08:06:09 +0000570/* MQPRIO */
571#define TC_QOPT_BITMASK 15
572#define TC_QOPT_MAX_QUEUE 16
573
574struct tc_mqprio_qopt {
575 __u8 num_tc;
576 __u8 prio_tc_map[TC_QOPT_BITMASK + 1];
577 __u8 hw;
578 __u16 count[TC_QOPT_MAX_QUEUE];
579 __u16 offset[TC_QOPT_MAX_QUEUE];
580};
581
Eric Dumazete13e02a32011-02-23 10:56:17 +0000582/* SFB */
583
584enum {
585 TCA_SFB_UNSPEC,
586 TCA_SFB_PARMS,
587 __TCA_SFB_MAX,
588};
589
590#define TCA_SFB_MAX (__TCA_SFB_MAX - 1)
591
592/*
593 * Note: increment, decrement are Q0.16 fixed-point values.
594 */
595struct tc_sfb_qopt {
596 __u32 rehash_interval; /* delay between hash move, in ms */
597 __u32 warmup_time; /* double buffering warmup time in ms (warmup_time < rehash_interval) */
598 __u32 max; /* max len of qlen_min */
599 __u32 bin_size; /* maximum queue length per bin */
600 __u32 increment; /* probability increment, (d1 in Blue) */
601 __u32 decrement; /* probability decrement, (d2 in Blue) */
602 __u32 limit; /* max SFB queue length */
603 __u32 penalty_rate; /* inelastic flows are rate limited to 'rate' pps */
604 __u32 penalty_burst;
605};
606
607struct tc_sfb_xstats {
608 __u32 earlydrop;
609 __u32 penaltydrop;
610 __u32 bucketdrop;
611 __u32 queuedrop;
612 __u32 childdrop; /* drops in child qdisc */
613 __u32 marked;
614 __u32 maxqlen;
615 __u32 maxprob;
616 __u32 avgprob;
617};
618
619#define SFB_MAX_PROB 0xFFFF
620
stephen hemminger0545a302011-04-04 05:30:58 +0000621/* QFQ */
622enum {
623 TCA_QFQ_UNSPEC,
624 TCA_QFQ_WEIGHT,
625 TCA_QFQ_LMAX,
626 __TCA_QFQ_MAX
627};
628
629#define TCA_QFQ_MAX (__TCA_QFQ_MAX - 1)
630
631struct tc_qfq_stats {
632 __u32 weight;
633 __u32 lmax;
634};
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636#endif