pre-2.3.4..
[davej-history.git] / include / linux / pkt_sched.h
blob4ec170dbd27a9ec00e4f0bf137e5b9fa1dca7273
1 #ifndef __LINUX_PKT_SCHED_H
2 #define __LINUX_PKT_SCHED_H
4 /* Logical priority bands not depending on specific packet scheduler.
5 Every scheduler will map them to real traffic classes, if it has
6 no more precise mechanism to classify packets.
8 These numbers have no special meaning, though their coincidence
9 with obsolete IPv6 values is not occasional :-). New IPv6 drafts
10 preferred full anarchy inspired by diffserv group.
12 Note: TC_PRIO_BESTEFFORT does not mean that it is the most unhappy
13 class, actually, as rule it will be handled with more care than
14 filler or even bulk.
17 #define TC_PRIO_BESTEFFORT 0
18 #define TC_PRIO_FILLER 1
19 #define TC_PRIO_BULK 2
20 #define TC_PRIO_INTERACTIVE_BULK 4
21 #define TC_PRIO_INTERACTIVE 6
22 #define TC_PRIO_CONTROL 7
24 #define TC_PRIO_MAX 15
26 /* Generic queue statistics, available for all the elements.
27 Particular schedulers may have also their private records.
30 struct tc_stats
32 __u64 bytes; /* NUmber of enqueues bytes */
33 __u32 packets; /* Number of enqueued packets */
34 __u32 drops; /* Packets dropped because of lack of resources */
35 __u32 overlimits; /* Number of throttle events when this
36 * flow goes out of allocated bandwidth */
37 __u32 bps; /* Current flow byte rate */
38 __u32 pps; /* Current flow packet rate */
39 __u32 qlen;
40 __u32 backlog;
43 struct tc_estimator
45 char interval;
46 unsigned char ewma_log;
49 /* "Handles"
50 ---------
52 All the traffic control objects have 32bit identifiers, or "handles".
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.
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.
63 Macros to manipulate handles:
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))
72 #define TC_H_UNSPEC (0U)
73 #define TC_H_ROOT (0xFFFFFFFFU)
75 struct tc_ratespec
77 unsigned char cell_log;
78 unsigned char __reserved;
79 unsigned short feature;
80 short addend;
81 unsigned short mpu;
82 __u32 rate;
85 /* FIFO section */
87 struct tc_fifo_qopt
89 __u32 limit; /* Queue length: bytes for bfifo, packets for pfifo */
92 /* PRIO section */
94 #define TCQ_PRIO_BANDS 16
96 struct tc_prio_qopt
98 int bands; /* Number of bands */
99 __u8 priomap[TC_PRIO_MAX+1]; /* Map: logical priority -> PRIO band */
102 /* CSZ section */
104 struct tc_csz_qopt
106 int flows; /* Maximal number of guaranteed flows */
107 unsigned char R_log; /* Fixed point position for round number */
108 unsigned char delta_log; /* Log of maximal managed time interval */
109 __u8 priomap[TC_PRIO_MAX+1]; /* Map: logical priority -> CSZ band */
112 struct tc_csz_copt
114 struct tc_ratespec slice;
115 struct tc_ratespec rate;
116 struct tc_ratespec peakrate;
117 __u32 limit;
118 __u32 buffer;
119 __u32 mtu;
122 enum
124 TCA_CSZ_UNSPEC,
125 TCA_CSZ_PARMS,
126 TCA_CSZ_RTAB,
127 TCA_CSZ_PTAB,
130 /* TBF section */
132 struct tc_tbf_qopt
134 struct tc_ratespec rate;
135 struct tc_ratespec peakrate;
136 __u32 limit;
137 __u32 buffer;
138 __u32 mtu;
141 enum
143 TCA_TBF_UNSPEC,
144 TCA_TBF_PARMS,
145 TCA_TBF_RTAB,
146 TCA_TBF_PTAB,
150 /* TEQL section */
152 /* TEQL does not require any parameters */
154 /* SFQ section */
156 struct tc_sfq_qopt
158 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 */
166 * NOTE: limit, divisor and flows are hardwired to code at the moment.
168 * limit=flows=128, divisor=1024;
170 * The only reason for this is efficiency, it is possible
171 * to change these parameters in compile time.
174 /* RED section */
176 enum
178 TCA_RED_UNSPEC,
179 TCA_RED_PARMS,
180 TCA_RED_STAB,
183 struct tc_red_qopt
185 __u32 limit; /* HARD maximal queue length (bytes) */
186 __u32 qth_min; /* Min average length threshold (bytes) */
187 __u32 qth_max; /* Max average length threshold (bytes) */
188 unsigned char Wlog; /* log(W) */
189 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
190 unsigned char Scell_log; /* cell size for idle damping */
193 /* CBQ section */
195 #define TC_CBQ_MAXPRIO 8
196 #define TC_CBQ_MAXLEVEL 8
197 #define TC_CBQ_DEF_EWMA 5
199 struct tc_cbq_lssopt
201 unsigned char change;
202 unsigned char flags;
203 #define TCF_CBQ_LSS_BOUNDED 1
204 #define TCF_CBQ_LSS_ISOLATED 2
205 unsigned char ewma_log;
206 unsigned char level;
207 #define TCF_CBQ_LSS_FLAGS 1
208 #define TCF_CBQ_LSS_EWMA 2
209 #define TCF_CBQ_LSS_MAXIDLE 4
210 #define TCF_CBQ_LSS_MINIDLE 8
211 #define TCF_CBQ_LSS_OFFTIME 0x10
212 #define TCF_CBQ_LSS_AVPKT 0x20
213 __u32 maxidle;
214 __u32 minidle;
215 __u32 offtime;
216 __u32 avpkt;
219 struct tc_cbq_wrropt
221 unsigned char flags;
222 unsigned char priority;
223 unsigned char cpriority;
224 unsigned char __reserved;
225 __u32 allot;
226 __u32 weight;
229 struct tc_cbq_ovl
231 unsigned char strategy;
232 #define TC_CBQ_OVL_CLASSIC 0
233 #define TC_CBQ_OVL_DELAY 1
234 #define TC_CBQ_OVL_LOWPRIO 2
235 #define TC_CBQ_OVL_DROP 3
236 #define TC_CBQ_OVL_RCLASSIC 4
237 unsigned char priority2;
238 __u32 penalty;
241 struct tc_cbq_police
243 unsigned char police;
244 unsigned char __res1;
245 unsigned short __res2;
248 struct tc_cbq_fopt
250 __u32 split;
251 __u32 defmap;
252 __u32 defchange;
255 struct tc_cbq_xstats
257 __u32 borrows;
258 __u32 overactions;
259 __s32 avgidle;
260 __s32 undertime;
263 enum
265 TCA_CBQ_UNSPEC,
266 TCA_CBQ_LSSOPT,
267 TCA_CBQ_WRROPT,
268 TCA_CBQ_FOPT,
269 TCA_CBQ_OVL_STRATEGY,
270 TCA_CBQ_RATE,
271 TCA_CBQ_RTAB,
272 TCA_CBQ_POLICE,
275 #define TCA_CBQ_MAX TCA_CBQ_POLICE
277 #endif