pkt_sched.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:10k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __LINUX_PKT_SCHED_H
  2. #define __LINUX_PKT_SCHED_H
  3. /* Logical priority bands not depending on specific packet scheduler.
  4.    Every scheduler will map them to real traffic classes, if it has
  5.    no more precise mechanism to classify packets.
  6.    These numbers have no special meaning, though their coincidence
  7.    with obsolete IPv6 values is not occasional :-). New IPv6 drafts
  8.    preferred full anarchy inspired by diffserv group.
  9.    Note: TC_PRIO_BESTEFFORT does not mean that it is the most unhappy
  10.    class, actually, as rule it will be handled with more care than
  11.    filler or even bulk.
  12.  */
  13. #define TC_PRIO_BESTEFFORT 0
  14. #define TC_PRIO_FILLER 1
  15. #define TC_PRIO_BULK 2
  16. #define TC_PRIO_INTERACTIVE_BULK 4
  17. #define TC_PRIO_INTERACTIVE 6
  18. #define TC_PRIO_CONTROL 7
  19. #define TC_PRIO_MAX 15
  20. /* Generic queue statistics, available for all the elements.
  21.    Particular schedulers may have also their private records.
  22.  */
  23. struct tc_stats
  24. {
  25. __u64 bytes; /* NUmber of enqueues bytes */
  26. __u32 packets; /* Number of enqueued packets */
  27. __u32 drops; /* Packets dropped because of lack of resources */
  28. __u32 overlimits; /* Number of throttle events when this
  29.  * flow goes out of allocated bandwidth */
  30. __u32 bps; /* Current flow byte rate */
  31. __u32 pps; /* Current flow packet rate */
  32. __u32 qlen;
  33. __u32 backlog;
  34. };
  35. struct tc_estimator
  36. {
  37. signed char interval;
  38. unsigned char ewma_log;
  39. };
  40. /* "Handles"
  41.    ---------
  42.     All the traffic control objects have 32bit identifiers, or "handles".
  43.     They can be considered as opaque numbers from user API viewpoint,
  44.     but actually they always consist of two fields: major and
  45.     minor numbers, which are interpreted by kernel specially,
  46.     that may be used by applications, though not recommended.
  47.     F.e. qdisc handles always have minor number equal to zero,
  48.     classes (or flows) have major equal to parent qdisc major, and
  49.     minor uniquely identifying class inside qdisc.
  50.     Macros to manipulate handles:
  51.  */
  52. #define TC_H_MAJ_MASK (0xFFFF0000U)
  53. #define TC_H_MIN_MASK (0x0000FFFFU)
  54. #define TC_H_MAJ(h) ((h)&TC_H_MAJ_MASK)
  55. #define TC_H_MIN(h) ((h)&TC_H_MIN_MASK)
  56. #define TC_H_MAKE(maj,min) (((maj)&TC_H_MAJ_MASK)|((min)&TC_H_MIN_MASK))
  57. #define TC_H_UNSPEC (0U)
  58. #define TC_H_ROOT (0xFFFFFFFFU)
  59. #define TC_H_INGRESS    (0xFFFFFFF1U)
  60. struct tc_ratespec
  61. {
  62. unsigned char cell_log;
  63. unsigned char __reserved;
  64. unsigned short feature;
  65. short addend;
  66. unsigned short mpu;
  67. __u32 rate;
  68. };
  69. /* FIFO section */
  70. struct tc_fifo_qopt
  71. {
  72. __u32 limit; /* Queue length: bytes for bfifo, packets for pfifo */
  73. };
  74. /* PRIO section */
  75. #define TCQ_PRIO_BANDS 16
  76. struct tc_prio_qopt
  77. {
  78. int bands; /* Number of bands */
  79. __u8 priomap[TC_PRIO_MAX+1]; /* Map: logical priority -> PRIO band */
  80. };
  81. /* TBF section */
  82. struct tc_tbf_qopt
  83. {
  84. struct tc_ratespec rate;
  85. struct tc_ratespec peakrate;
  86. __u32 limit;
  87. __u32 buffer;
  88. __u32 mtu;
  89. };
  90. enum
  91. {
  92. TCA_TBF_UNSPEC,
  93. TCA_TBF_PARMS,
  94. TCA_TBF_RTAB,
  95. TCA_TBF_PTAB,
  96. __TCA_TBF_MAX,
  97. };
  98. #define TCA_TBF_MAX (__TCA_TBF_MAX - 1)
  99. /* TEQL section */
  100. /* TEQL does not require any parameters */
  101. /* SFQ section */
  102. struct tc_sfq_qopt
  103. {
  104. unsigned quantum; /* Bytes per round allocated to flow */
  105. int perturb_period; /* Period of hash perturbation */
  106. __u32 limit; /* Maximal packets in queue */
  107. unsigned divisor; /* Hash divisor  */
  108. unsigned flows; /* Maximal number of flows  */
  109. };
  110. /*
  111.  *  NOTE: limit, divisor and flows are hardwired to code at the moment.
  112.  *
  113.  * limit=flows=128, divisor=1024;
  114.  *
  115.  * The only reason for this is efficiency, it is possible
  116.  * to change these parameters in compile time.
  117.  */
  118. /* RED section */
  119. enum
  120. {
  121. TCA_RED_UNSPEC,
  122. TCA_RED_PARMS,
  123. TCA_RED_STAB,
  124. __TCA_RED_MAX,
  125. };
  126. #define TCA_RED_MAX (__TCA_RED_MAX - 1)
  127. struct tc_red_qopt
  128. {
  129. __u32 limit; /* HARD maximal queue length (bytes) */
  130. __u32 qth_min; /* Min average length threshold (bytes) */
  131. __u32 qth_max; /* Max average length threshold (bytes) */
  132. unsigned char   Wlog; /* log(W) */
  133. unsigned char   Plog; /* log(P_max/(qth_max-qth_min)) */
  134. unsigned char   Scell_log; /* cell size for idle damping */
  135. unsigned char flags;
  136. #define TC_RED_ECN 1
  137. };
  138. struct tc_red_xstats
  139. {
  140. __u32           early;          /* Early drops */
  141. __u32           pdrop;          /* Drops due to queue limits */
  142. __u32           other;          /* Drops due to drop() calls */
  143. __u32           marked;         /* Marked packets */
  144. };
  145. /* GRED section */
  146. #define MAX_DPs 16
  147. enum
  148. {
  149.        TCA_GRED_UNSPEC,
  150.        TCA_GRED_PARMS,
  151.        TCA_GRED_STAB,
  152.        TCA_GRED_DPS,
  153.    __TCA_GRED_MAX,
  154. };
  155. #define TCA_GRED_MAX (__TCA_GRED_MAX - 1)
  156. #define TCA_SET_OFF TCA_GRED_PARMS
  157. struct tc_gred_qopt
  158. {
  159.        __u32           limit;          /* HARD maximal queue length (bytes)    
  160. */
  161.        __u32           qth_min;        /* Min average length threshold (bytes) 
  162. */
  163.        __u32           qth_max;        /* Max average length threshold (bytes) 
  164. */
  165.        __u32           DP;             /* upto 2^32 DPs */
  166.        __u32           backlog;        
  167.        __u32           qave;   
  168.        __u32           forced; 
  169.        __u32           early;  
  170.        __u32           other;  
  171.        __u32           pdrop;  
  172.        unsigned char   Wlog;           /* log(W)               */
  173.        unsigned char   Plog;           /* log(P_max/(qth_max-qth_min)) */
  174.        unsigned char   Scell_log;      /* cell size for idle damping */
  175.        __u8            prio; /* prio of this VQ */
  176.        __u32 packets;
  177.        __u32 bytesin;
  178. };
  179. /* gred setup */
  180. struct tc_gred_sopt
  181. {
  182.        __u32 DPs;
  183.        __u32 def_DP;
  184.        __u8 grio;
  185.        __u8 pad1;
  186.        __u16 pad2;
  187. };
  188. /* HTB section */
  189. #define TC_HTB_NUMPRIO 8
  190. #define TC_HTB_MAXDEPTH 8
  191. #define TC_HTB_PROTOVER 3 /* the same as HTB and TC's major */
  192. struct tc_htb_opt
  193. {
  194. struct tc_ratespec  rate;
  195. struct tc_ratespec  ceil;
  196. __u32 buffer;
  197. __u32 cbuffer;
  198. __u32 quantum;
  199. __u32 level; /* out only */
  200. __u32 prio;
  201. };
  202. struct tc_htb_glob
  203. {
  204. __u32 version; /* to match HTB/TC */
  205.      __u32 rate2quantum; /* bps->quantum divisor */
  206.      __u32 defcls; /* default class number */
  207. __u32 debug; /* debug flags */
  208. /* stats */
  209. __u32 direct_pkts; /* count of non shapped packets */
  210. };
  211. enum
  212. {
  213. TCA_HTB_UNSPEC,
  214. TCA_HTB_PARMS,
  215. TCA_HTB_INIT,
  216. TCA_HTB_CTAB,
  217. TCA_HTB_RTAB,
  218. __TCA_HTB_MAX,
  219. };
  220. #define TCA_HTB_MAX (__TCA_HTB_MAX - 1)
  221. struct tc_htb_xstats
  222. {
  223. __u32 lends;
  224. __u32 borrows;
  225. __u32 giants; /* too big packets (rate will not be accurate) */
  226. __u32 tokens;
  227. __u32 ctokens;
  228. };
  229. /* HFSC section */
  230. struct tc_hfsc_qopt
  231. {
  232. __u16 defcls; /* default class */
  233. };
  234. struct tc_service_curve
  235. {
  236. __u32 m1; /* slope of the first segment in bps */
  237. __u32 d; /* x-projection of the first segment in us */
  238. __u32 m2; /* slope of the second segment in bps */
  239. };
  240. struct tc_hfsc_stats
  241. {
  242. __u64 work; /* total work done */
  243. __u64 rtwork; /* work done by real-time criteria */
  244. __u32 period; /* current period */
  245. __u32 level; /* class level in hierarchy */
  246. };
  247. enum
  248. {
  249. TCA_HFSC_UNSPEC,
  250. TCA_HFSC_RSC,
  251. TCA_HFSC_FSC,
  252. TCA_HFSC_USC,
  253. __TCA_HFSC_MAX,
  254. };
  255. #define TCA_HFSC_MAX (__TCA_HFSC_MAX - 1)
  256. /* CBQ section */
  257. #define TC_CBQ_MAXPRIO 8
  258. #define TC_CBQ_MAXLEVEL 8
  259. #define TC_CBQ_DEF_EWMA 5
  260. struct tc_cbq_lssopt
  261. {
  262. unsigned char change;
  263. unsigned char flags;
  264. #define TCF_CBQ_LSS_BOUNDED 1
  265. #define TCF_CBQ_LSS_ISOLATED 2
  266. unsigned char   ewma_log;
  267. unsigned char   level;
  268. #define TCF_CBQ_LSS_FLAGS 1
  269. #define TCF_CBQ_LSS_EWMA 2
  270. #define TCF_CBQ_LSS_MAXIDLE 4
  271. #define TCF_CBQ_LSS_MINIDLE 8
  272. #define TCF_CBQ_LSS_OFFTIME 0x10
  273. #define TCF_CBQ_LSS_AVPKT 0x20
  274. __u32 maxidle;
  275. __u32 minidle;
  276. __u32 offtime;
  277. __u32 avpkt;
  278. };
  279. struct tc_cbq_wrropt
  280. {
  281. unsigned char flags;
  282. unsigned char priority;
  283. unsigned char cpriority;
  284. unsigned char __reserved;
  285. __u32 allot;
  286. __u32 weight;
  287. };
  288. struct tc_cbq_ovl
  289. {
  290. unsigned char strategy;
  291. #define TC_CBQ_OVL_CLASSIC 0
  292. #define TC_CBQ_OVL_DELAY 1
  293. #define TC_CBQ_OVL_LOWPRIO 2
  294. #define TC_CBQ_OVL_DROP 3
  295. #define TC_CBQ_OVL_RCLASSIC 4
  296. unsigned char priority2;
  297. __u16 pad;
  298. __u32 penalty;
  299. };
  300. struct tc_cbq_police
  301. {
  302. unsigned char police;
  303. unsigned char __res1;
  304. unsigned short __res2;
  305. };
  306. struct tc_cbq_fopt
  307. {
  308. __u32 split;
  309. __u32 defmap;
  310. __u32 defchange;
  311. };
  312. struct tc_cbq_xstats
  313. {
  314. __u32 borrows;
  315. __u32 overactions;
  316. __s32 avgidle;
  317. __s32 undertime;
  318. };
  319. enum
  320. {
  321. TCA_CBQ_UNSPEC,
  322. TCA_CBQ_LSSOPT,
  323. TCA_CBQ_WRROPT,
  324. TCA_CBQ_FOPT,
  325. TCA_CBQ_OVL_STRATEGY,
  326. TCA_CBQ_RATE,
  327. TCA_CBQ_RTAB,
  328. TCA_CBQ_POLICE,
  329. __TCA_CBQ_MAX,
  330. };
  331. #define TCA_CBQ_MAX (__TCA_CBQ_MAX - 1)
  332. /* dsmark section */
  333. enum {
  334. TCA_DSMARK_UNSPEC,
  335. TCA_DSMARK_INDICES,
  336. TCA_DSMARK_DEFAULT_INDEX,
  337. TCA_DSMARK_SET_TC_INDEX,
  338. TCA_DSMARK_MASK,
  339. TCA_DSMARK_VALUE,
  340. __TCA_DSMARK_MAX,
  341. };
  342. #define TCA_DSMARK_MAX (__TCA_DSMARK_MAX - 1)
  343. /* ATM  section */
  344. enum {
  345. TCA_ATM_UNSPEC,
  346. TCA_ATM_FD, /* file/socket descriptor */
  347. TCA_ATM_PTR, /* pointer to descriptor - later */
  348. TCA_ATM_HDR, /* LL header */
  349. TCA_ATM_EXCESS, /* excess traffic class (0 for CLP)  */
  350. TCA_ATM_ADDR, /* PVC address (for output only) */
  351. TCA_ATM_STATE, /* VC state (ATM_VS_*; for output only) */
  352. __TCA_ATM_MAX,
  353. };
  354. #define TCA_ATM_MAX (__TCA_ATM_MAX - 1)
  355. /* Network emulator */
  356. enum
  357. {
  358. TCA_NETEM_UNSPEC,
  359. TCA_NETEM_CORR,
  360. TCA_NETEM_DELAY_DIST,
  361. TCA_NETEM_REORDER,
  362. __TCA_NETEM_MAX,
  363. };
  364. #define TCA_NETEM_MAX (__TCA_NETEM_MAX - 1)
  365. struct tc_netem_qopt
  366. {
  367. __u32 latency; /* added delay (us) */
  368. __u32   limit; /* fifo limit (packets) */
  369. __u32 loss; /* random packet loss (0=none ~0=100%) */
  370. __u32 gap; /* re-ordering gap (0 for none) */
  371. __u32   duplicate; /* random packet dup  (0=none ~0=100%) */
  372. __u32 jitter; /* random jitter in latency (us) */
  373. };
  374. struct tc_netem_corr
  375. {
  376. __u32 delay_corr; /* delay correlation */
  377. __u32 loss_corr; /* packet loss correlation */
  378. __u32 dup_corr; /* duplicate correlation  */
  379. };
  380. struct tc_netem_reorder
  381. {
  382. __u32 probability;
  383. __u32 correlation;
  384. };
  385. #define NETEM_DIST_SCALE 8192
  386. #endif