pkt_sched.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式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. #ifdef __KERNEL__
  35. spinlock_t *lock;
  36. #endif
  37. };
  38. struct tc_estimator
  39. {
  40. char interval;
  41. unsigned char ewma_log;
  42. };
  43. /* "Handles"
  44.    ---------
  45.     All the traffic control objects have 32bit identifiers, or "handles".
  46.     They can be considered as opaque numbers from user API viewpoint,
  47.     but actually they always consist of two fields: major and
  48.     minor numbers, which are interpreted by kernel specially,
  49.     that may be used by applications, though not recommended.
  50.     F.e. qdisc handles always have minor number equal to zero,
  51.     classes (or flows) have major equal to parent qdisc major, and
  52.     minor uniquely identifying class inside qdisc.
  53.     Macros to manipulate handles:
  54.  */
  55. #define TC_H_MAJ_MASK (0xFFFF0000U)
  56. #define TC_H_MIN_MASK (0x0000FFFFU)
  57. #define TC_H_MAJ(h) ((h)&TC_H_MAJ_MASK)
  58. #define TC_H_MIN(h) ((h)&TC_H_MIN_MASK)
  59. #define TC_H_MAKE(maj,min) (((maj)&TC_H_MAJ_MASK)|((min)&TC_H_MIN_MASK))
  60. #define TC_H_UNSPEC (0U)
  61. #define TC_H_ROOT (0xFFFFFFFFU)
  62. #define TC_H_INGRESS    (0xFFFFFFF1U)
  63. struct tc_ratespec
  64. {
  65. unsigned char cell_log;
  66. unsigned char __reserved;
  67. unsigned short feature;
  68. short addend;
  69. unsigned short mpu;
  70. __u32 rate;
  71. };
  72. /* FIFO section */
  73. struct tc_fifo_qopt
  74. {
  75. __u32 limit; /* Queue length: bytes for bfifo, packets for pfifo */
  76. };
  77. /* PRIO section */
  78. #define TCQ_PRIO_BANDS 16
  79. struct tc_prio_qopt
  80. {
  81. int bands; /* Number of bands */
  82. __u8 priomap[TC_PRIO_MAX+1]; /* Map: logical priority -> PRIO band */
  83. };
  84. /* CSZ section */
  85. struct tc_csz_qopt
  86. {
  87. int flows; /* Maximal number of guaranteed flows */
  88. unsigned char R_log; /* Fixed point position for round number */
  89. unsigned char delta_log; /* Log of maximal managed time interval */
  90. __u8 priomap[TC_PRIO_MAX+1]; /* Map: logical priority -> CSZ band */
  91. };
  92. struct tc_csz_copt
  93. {
  94. struct tc_ratespec slice;
  95. struct tc_ratespec rate;
  96. struct tc_ratespec peakrate;
  97. __u32 limit;
  98. __u32 buffer;
  99. __u32 mtu;
  100. };
  101. enum
  102. {
  103. TCA_CSZ_UNSPEC,
  104. TCA_CSZ_PARMS,
  105. TCA_CSZ_RTAB,
  106. TCA_CSZ_PTAB,
  107. };
  108. /* TBF section */
  109. struct tc_tbf_qopt
  110. {
  111. struct tc_ratespec rate;
  112. struct tc_ratespec peakrate;
  113. __u32 limit;
  114. __u32 buffer;
  115. __u32 mtu;
  116. };
  117. enum
  118. {
  119. TCA_TBF_UNSPEC,
  120. TCA_TBF_PARMS,
  121. TCA_TBF_RTAB,
  122. TCA_TBF_PTAB,
  123. };
  124. /* TEQL section */
  125. /* TEQL does not require any parameters */
  126. /* SFQ section */
  127. struct tc_sfq_qopt
  128. {
  129. unsigned quantum; /* Bytes per round allocated to flow */
  130. int perturb_period; /* Period of hash perturbation */
  131. __u32 limit; /* Maximal packets in queue */
  132. unsigned divisor; /* Hash divisor  */
  133. unsigned flows; /* Maximal number of flows  */
  134. };
  135. /*
  136.  *  NOTE: limit, divisor and flows are hardwired to code at the moment.
  137.  *
  138.  * limit=flows=128, divisor=1024;
  139.  *
  140.  * The only reason for this is efficiency, it is possible
  141.  * to change these parameters in compile time.
  142.  */
  143. /* RED section */
  144. enum
  145. {
  146. TCA_RED_UNSPEC,
  147. TCA_RED_PARMS,
  148. TCA_RED_STAB,
  149. };
  150. struct tc_red_qopt
  151. {
  152. __u32 limit; /* HARD maximal queue length (bytes) */
  153. __u32 qth_min; /* Min average length threshold (bytes) */
  154. __u32 qth_max; /* Max average length threshold (bytes) */
  155. unsigned char   Wlog; /* log(W) */
  156. unsigned char   Plog; /* log(P_max/(qth_max-qth_min)) */
  157. unsigned char   Scell_log; /* cell size for idle damping */
  158. unsigned char flags;
  159. #define TC_RED_ECN 1
  160. };
  161. struct tc_red_xstats
  162. {
  163. __u32           early;          /* Early drops */
  164. __u32           pdrop;          /* Drops due to queue limits */
  165. __u32           other;          /* Drops due to drop() calls */
  166. __u32           marked;         /* Marked packets */
  167. };
  168. /* GRED section */
  169. #define MAX_DPs 16
  170. enum
  171. {
  172.        TCA_GRED_UNSPEC,
  173.        TCA_GRED_PARMS,
  174.        TCA_GRED_STAB,
  175.        TCA_GRED_DPS,
  176. };
  177. #define TCA_SET_OFF TCA_GRED_PARMS
  178. struct tc_gred_qopt
  179. {
  180.        __u32           limit;          /* HARD maximal queue length (bytes)    
  181. */
  182.        __u32           qth_min;        /* Min average length threshold (bytes) 
  183. */
  184.        __u32           qth_max;        /* Max average length threshold (bytes) 
  185. */
  186.        __u32           DP;             /* upto 2^32 DPs */
  187.        __u32           backlog;        
  188.        __u32           qave;   
  189.        __u32           forced; 
  190.        __u32           early;  
  191.        __u32           other;  
  192.        __u32           pdrop;  
  193.        unsigned char   Wlog;           /* log(W)               */
  194.        unsigned char   Plog;           /* log(P_max/(qth_max-qth_min)) */
  195.        unsigned char   Scell_log;      /* cell size for idle damping */
  196.        __u8            prio; /* prio of this VQ */
  197.        __u32 packets;
  198.        __u32 bytesin;
  199. };
  200. /* gred setup */
  201. struct tc_gred_sopt
  202. {
  203.        __u32           DPs;
  204.        __u32           def_DP;
  205.        __u8            grio;
  206. };
  207. /* CBQ section */
  208. #define TC_CBQ_MAXPRIO 8
  209. #define TC_CBQ_MAXLEVEL 8
  210. #define TC_CBQ_DEF_EWMA 5
  211. struct tc_cbq_lssopt
  212. {
  213. unsigned char change;
  214. unsigned char flags;
  215. #define TCF_CBQ_LSS_BOUNDED 1
  216. #define TCF_CBQ_LSS_ISOLATED 2
  217. unsigned char   ewma_log;
  218. unsigned char   level;
  219. #define TCF_CBQ_LSS_FLAGS 1
  220. #define TCF_CBQ_LSS_EWMA 2
  221. #define TCF_CBQ_LSS_MAXIDLE 4
  222. #define TCF_CBQ_LSS_MINIDLE 8
  223. #define TCF_CBQ_LSS_OFFTIME 0x10
  224. #define TCF_CBQ_LSS_AVPKT 0x20
  225. __u32 maxidle;
  226. __u32 minidle;
  227. __u32 offtime;
  228. __u32 avpkt;
  229. };
  230. struct tc_cbq_wrropt
  231. {
  232. unsigned char flags;
  233. unsigned char priority;
  234. unsigned char cpriority;
  235. unsigned char __reserved;
  236. __u32 allot;
  237. __u32 weight;
  238. };
  239. struct tc_cbq_ovl
  240. {
  241. unsigned char strategy;
  242. #define TC_CBQ_OVL_CLASSIC 0
  243. #define TC_CBQ_OVL_DELAY 1
  244. #define TC_CBQ_OVL_LOWPRIO 2
  245. #define TC_CBQ_OVL_DROP 3
  246. #define TC_CBQ_OVL_RCLASSIC 4
  247. unsigned char priority2;
  248. __u32 penalty;
  249. };
  250. struct tc_cbq_police
  251. {
  252. unsigned char police;
  253. unsigned char __res1;
  254. unsigned short __res2;
  255. };
  256. struct tc_cbq_fopt
  257. {
  258. __u32 split;
  259. __u32 defmap;
  260. __u32 defchange;
  261. };
  262. struct tc_cbq_xstats
  263. {
  264. __u32 borrows;
  265. __u32 overactions;
  266. __s32 avgidle;
  267. __s32 undertime;
  268. };
  269. enum
  270. {
  271. TCA_CBQ_UNSPEC,
  272. TCA_CBQ_LSSOPT,
  273. TCA_CBQ_WRROPT,
  274. TCA_CBQ_FOPT,
  275. TCA_CBQ_OVL_STRATEGY,
  276. TCA_CBQ_RATE,
  277. TCA_CBQ_RTAB,
  278. TCA_CBQ_POLICE,
  279. };
  280. #define TCA_CBQ_MAX TCA_CBQ_POLICE
  281. /* dsmark section */
  282. enum {
  283. TCA_DSMARK_UNSPEC,
  284. TCA_DSMARK_INDICES,
  285. TCA_DSMARK_DEFAULT_INDEX,
  286. TCA_DSMARK_SET_TC_INDEX,
  287. TCA_DSMARK_MASK,
  288. TCA_DSMARK_VALUE
  289. };
  290. #define TCA_DSMARK_MAX TCA_DSMARK_VALUE
  291. /* ATM  section */
  292. enum {
  293. TCA_ATM_UNSPEC,
  294. TCA_ATM_FD, /* file/socket descriptor */
  295. TCA_ATM_PTR, /* pointer to descriptor - later */
  296. TCA_ATM_HDR, /* LL header */
  297. TCA_ATM_EXCESS, /* excess traffic class (0 for CLP)  */
  298. TCA_ATM_ADDR, /* PVC address (for output only) */
  299. TCA_ATM_STATE /* VC state (ATM_VS_*; for output only) */
  300. };
  301. #define TCA_ATM_MAX TCA_ATM_STATE
  302. #endif