Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 1 | /**************************************************************************** |
| 2 | **************************************************************************** |
| 3 | *** |
| 4 | *** This header was automatically generated from a Linux kernel header |
| 5 | *** of the same name, to make information necessary for userspace to |
| 6 | *** call into the kernel available to libc. It contains only constants, |
| 7 | *** structures, and macros generated from the original header, and thus, |
| 8 | *** contains no copyrightable information. |
| 9 | *** |
| 10 | *** To edit the content of this header, modify the corresponding |
| 11 | *** source file (e.g. under external/kernel-headers/original/) then |
| 12 | *** run bionic/libc/kernel/tools/update_all.py |
| 13 | *** |
| 14 | *** Any manual change here will be lost the next time this script will |
| 15 | *** be run. You've been warned! |
| 16 | *** |
| 17 | **************************************************************************** |
| 18 | ****************************************************************************/ |
| 19 | #ifndef __LINUX_PKT_SCHED_H |
| 20 | #define __LINUX_PKT_SCHED_H |
Christopher Ferris | b8a95e2 | 2019-10-02 18:29:20 -0700 | [diff] [blame] | 21 | #include <linux/const.h> |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 22 | #include <linux/types.h> |
| 23 | #define TC_PRIO_BESTEFFORT 0 |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 24 | #define TC_PRIO_FILLER 1 |
| 25 | #define TC_PRIO_BULK 2 |
| 26 | #define TC_PRIO_INTERACTIVE_BULK 4 |
| 27 | #define TC_PRIO_INTERACTIVE 6 |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 28 | #define TC_PRIO_CONTROL 7 |
| 29 | #define TC_PRIO_MAX 15 |
| 30 | struct tc_stats { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 31 | __u64 bytes; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 32 | __u32 packets; |
| 33 | __u32 drops; |
| 34 | __u32 overlimits; |
| 35 | __u32 bps; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 36 | __u32 pps; |
| 37 | __u32 qlen; |
| 38 | __u32 backlog; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 39 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 40 | struct tc_estimator { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 41 | signed char interval; |
| 42 | unsigned char ewma_log; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 43 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 44 | #define TC_H_MAJ_MASK (0xFFFF0000U) |
| 45 | #define TC_H_MIN_MASK (0x0000FFFFU) |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 46 | #define TC_H_MAJ(h) ((h) & TC_H_MAJ_MASK) |
| 47 | #define TC_H_MIN(h) ((h) & TC_H_MIN_MASK) |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 48 | #define TC_H_MAKE(maj,min) (((maj) & TC_H_MAJ_MASK) | ((min) & TC_H_MIN_MASK)) |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 49 | #define TC_H_UNSPEC (0U) |
| 50 | #define TC_H_ROOT (0xFFFFFFFFU) |
| 51 | #define TC_H_INGRESS (0xFFFFFFF1U) |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 52 | #define TC_H_CLSACT TC_H_INGRESS |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 53 | #define TC_H_MIN_PRIORITY 0xFFE0U |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 54 | #define TC_H_MIN_INGRESS 0xFFF2U |
| 55 | #define TC_H_MIN_EGRESS 0xFFF3U |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 56 | enum tc_link_layer { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 57 | TC_LINKLAYER_UNAWARE, |
| 58 | TC_LINKLAYER_ETHERNET, |
| 59 | TC_LINKLAYER_ATM, |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 60 | }; |
| 61 | #define TC_LINKLAYER_MASK 0x0F |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 62 | struct tc_ratespec { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 63 | unsigned char cell_log; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 64 | __u8 linklayer; |
| 65 | unsigned short overhead; |
| 66 | short cell_align; |
| 67 | unsigned short mpu; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 68 | __u32 rate; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 69 | }; |
| 70 | #define TC_RTAB_SIZE 1024 |
| 71 | struct tc_sizespec { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 72 | unsigned char cell_log; |
| 73 | unsigned char size_log; |
| 74 | short cell_align; |
| 75 | int overhead; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 76 | unsigned int linklayer; |
| 77 | unsigned int mpu; |
| 78 | unsigned int mtu; |
| 79 | unsigned int tsize; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 80 | }; |
| 81 | enum { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 82 | TCA_STAB_UNSPEC, |
| 83 | TCA_STAB_BASE, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 84 | TCA_STAB_DATA, |
| 85 | __TCA_STAB_MAX |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 86 | }; |
| 87 | #define TCA_STAB_MAX (__TCA_STAB_MAX - 1) |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 88 | struct tc_fifo_qopt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 89 | __u32 limit; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 90 | }; |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 91 | #define SKBPRIO_MAX_PRIORITY 64 |
| 92 | struct tc_skbprio_qopt { |
| 93 | __u32 limit; |
| 94 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 95 | #define TCQ_PRIO_BANDS 16 |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 96 | #define TCQ_MIN_PRIO_BANDS 2 |
| 97 | struct tc_prio_qopt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 98 | int bands; |
| 99 | __u8 priomap[TC_PRIO_MAX + 1]; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 100 | }; |
| 101 | struct tc_multiq_qopt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 102 | __u16 bands; |
| 103 | __u16 max_bands; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 104 | }; |
| 105 | #define TCQ_PLUG_BUFFER 0 |
| 106 | #define TCQ_PLUG_RELEASE_ONE 1 |
| 107 | #define TCQ_PLUG_RELEASE_INDEFINITE 2 |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 108 | #define TCQ_PLUG_LIMIT 3 |
| 109 | struct tc_plug_qopt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 110 | int action; |
| 111 | __u32 limit; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 112 | }; |
| 113 | struct tc_tbf_qopt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 114 | struct tc_ratespec rate; |
| 115 | struct tc_ratespec peakrate; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 116 | __u32 limit; |
| 117 | __u32 buffer; |
| 118 | __u32 mtu; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 119 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 120 | enum { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 121 | TCA_TBF_UNSPEC, |
| 122 | TCA_TBF_PARMS, |
| 123 | TCA_TBF_RTAB, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 124 | TCA_TBF_PTAB, |
| 125 | TCA_TBF_RATE64, |
| 126 | TCA_TBF_PRATE64, |
| 127 | TCA_TBF_BURST, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 128 | TCA_TBF_PBURST, |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 129 | TCA_TBF_PAD, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 130 | __TCA_TBF_MAX, |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 131 | }; |
| 132 | #define TCA_TBF_MAX (__TCA_TBF_MAX - 1) |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 133 | struct tc_sfq_qopt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 134 | unsigned quantum; |
| 135 | int perturb_period; |
| 136 | __u32 limit; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 137 | unsigned divisor; |
| 138 | unsigned flows; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 139 | }; |
| 140 | struct tc_sfqred_stats { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 141 | __u32 prob_drop; |
| 142 | __u32 forced_drop; |
| 143 | __u32 prob_mark; |
| 144 | __u32 forced_mark; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 145 | __u32 prob_mark_head; |
| 146 | __u32 forced_mark_head; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 147 | }; |
| 148 | struct tc_sfq_qopt_v1 { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 149 | struct tc_sfq_qopt v0; |
| 150 | unsigned int depth; |
| 151 | unsigned int headdrop; |
| 152 | __u32 limit; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 153 | __u32 qth_min; |
| 154 | __u32 qth_max; |
| 155 | unsigned char Wlog; |
| 156 | unsigned char Plog; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 157 | unsigned char Scell_log; |
| 158 | unsigned char flags; |
| 159 | __u32 max_P; |
| 160 | struct tc_sfqred_stats stats; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 161 | }; |
| 162 | struct tc_sfq_xstats { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 163 | __s32 allot; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 164 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 165 | enum { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 166 | TCA_RED_UNSPEC, |
| 167 | TCA_RED_PARMS, |
| 168 | TCA_RED_STAB, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 169 | TCA_RED_MAX_P, |
Christopher Ferris | af09c70 | 2020-06-01 20:29:29 -0700 | [diff] [blame] | 170 | TCA_RED_FLAGS, |
Christopher Ferris | 25c18d4 | 2020-10-14 17:42:58 -0700 | [diff] [blame] | 171 | TCA_RED_EARLY_DROP_BLOCK, |
| 172 | TCA_RED_MARK_BLOCK, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 173 | __TCA_RED_MAX, |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 174 | }; |
| 175 | #define TCA_RED_MAX (__TCA_RED_MAX - 1) |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 176 | struct tc_red_qopt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 177 | __u32 limit; |
| 178 | __u32 qth_min; |
| 179 | __u32 qth_max; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 180 | unsigned char Wlog; |
| 181 | unsigned char Plog; |
| 182 | unsigned char Scell_log; |
| 183 | unsigned char flags; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 184 | #define TC_RED_ECN 1 |
| 185 | #define TC_RED_HARDDROP 2 |
| 186 | #define TC_RED_ADAPTATIVE 4 |
Christopher Ferris | af09c70 | 2020-06-01 20:29:29 -0700 | [diff] [blame] | 187 | #define TC_RED_NODROP 8 |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 188 | }; |
Christopher Ferris | af09c70 | 2020-06-01 20:29:29 -0700 | [diff] [blame] | 189 | #define TC_RED_HISTORIC_FLAGS (TC_RED_ECN | TC_RED_HARDDROP | TC_RED_ADAPTATIVE) |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 190 | struct tc_red_xstats { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 191 | __u32 early; |
| 192 | __u32 pdrop; |
| 193 | __u32 other; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 194 | __u32 marked; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 195 | }; |
| 196 | #define MAX_DPs 16 |
| 197 | enum { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 198 | TCA_GRED_UNSPEC, |
| 199 | TCA_GRED_PARMS, |
| 200 | TCA_GRED_STAB, |
| 201 | TCA_GRED_DPS, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 202 | TCA_GRED_MAX_P, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 203 | TCA_GRED_LIMIT, |
Christopher Ferris | d842e43 | 2019-03-07 10:21:59 -0800 | [diff] [blame] | 204 | TCA_GRED_VQ_LIST, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 205 | __TCA_GRED_MAX, |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 206 | }; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 207 | #define TCA_GRED_MAX (__TCA_GRED_MAX - 1) |
Christopher Ferris | d842e43 | 2019-03-07 10:21:59 -0800 | [diff] [blame] | 208 | enum { |
| 209 | TCA_GRED_VQ_ENTRY_UNSPEC, |
| 210 | TCA_GRED_VQ_ENTRY, |
| 211 | __TCA_GRED_VQ_ENTRY_MAX, |
| 212 | }; |
| 213 | #define TCA_GRED_VQ_ENTRY_MAX (__TCA_GRED_VQ_ENTRY_MAX - 1) |
| 214 | enum { |
| 215 | TCA_GRED_VQ_UNSPEC, |
| 216 | TCA_GRED_VQ_PAD, |
| 217 | TCA_GRED_VQ_DP, |
| 218 | TCA_GRED_VQ_STAT_BYTES, |
| 219 | TCA_GRED_VQ_STAT_PACKETS, |
| 220 | TCA_GRED_VQ_STAT_BACKLOG, |
| 221 | TCA_GRED_VQ_STAT_PROB_DROP, |
| 222 | TCA_GRED_VQ_STAT_PROB_MARK, |
| 223 | TCA_GRED_VQ_STAT_FORCED_DROP, |
| 224 | TCA_GRED_VQ_STAT_FORCED_MARK, |
| 225 | TCA_GRED_VQ_STAT_PDROP, |
| 226 | TCA_GRED_VQ_STAT_OTHER, |
| 227 | TCA_GRED_VQ_FLAGS, |
| 228 | __TCA_GRED_VQ_MAX |
| 229 | }; |
| 230 | #define TCA_GRED_VQ_MAX (__TCA_GRED_VQ_MAX - 1) |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 231 | struct tc_gred_qopt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 232 | __u32 limit; |
| 233 | __u32 qth_min; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 234 | __u32 qth_max; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 235 | __u32 DP; |
| 236 | __u32 backlog; |
| 237 | __u32 qave; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 238 | __u32 forced; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 239 | __u32 early; |
| 240 | __u32 other; |
| 241 | __u32 pdrop; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 242 | __u8 Wlog; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 243 | __u8 Plog; |
| 244 | __u8 Scell_log; |
| 245 | __u8 prio; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 246 | __u32 packets; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 247 | __u32 bytesin; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 248 | }; |
| 249 | struct tc_gred_sopt { |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 250 | __u32 DPs; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 251 | __u32 def_DP; |
| 252 | __u8 grio; |
| 253 | __u8 flags; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 254 | __u16 pad1; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 255 | }; |
| 256 | enum { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 257 | TCA_CHOKE_UNSPEC, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 258 | TCA_CHOKE_PARMS, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 259 | TCA_CHOKE_STAB, |
| 260 | TCA_CHOKE_MAX_P, |
| 261 | __TCA_CHOKE_MAX, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 262 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 263 | #define TCA_CHOKE_MAX (__TCA_CHOKE_MAX - 1) |
| 264 | struct tc_choke_qopt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 265 | __u32 limit; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 266 | __u32 qth_min; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 267 | __u32 qth_max; |
| 268 | unsigned char Wlog; |
| 269 | unsigned char Plog; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 270 | unsigned char Scell_log; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 271 | unsigned char flags; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 272 | }; |
| 273 | struct tc_choke_xstats { |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 274 | __u32 early; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 275 | __u32 pdrop; |
| 276 | __u32 other; |
| 277 | __u32 marked; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 278 | __u32 matched; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 279 | }; |
| 280 | #define TC_HTB_NUMPRIO 8 |
| 281 | #define TC_HTB_MAXDEPTH 8 |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 282 | #define TC_HTB_PROTOVER 3 |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 283 | struct tc_htb_opt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 284 | struct tc_ratespec rate; |
| 285 | struct tc_ratespec ceil; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 286 | __u32 buffer; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 287 | __u32 cbuffer; |
| 288 | __u32 quantum; |
| 289 | __u32 level; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 290 | __u32 prio; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 291 | }; |
| 292 | struct tc_htb_glob { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 293 | __u32 version; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 294 | __u32 rate2quantum; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 295 | __u32 defcls; |
| 296 | __u32 debug; |
| 297 | __u32 direct_pkts; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 298 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 299 | enum { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 300 | TCA_HTB_UNSPEC, |
| 301 | TCA_HTB_PARMS, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 302 | TCA_HTB_INIT, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 303 | TCA_HTB_CTAB, |
| 304 | TCA_HTB_RTAB, |
| 305 | TCA_HTB_DIRECT_QLEN, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 306 | TCA_HTB_RATE64, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 307 | TCA_HTB_CEIL64, |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 308 | TCA_HTB_PAD, |
Christopher Ferris | a9750ed | 2021-05-03 14:02:49 -0700 | [diff] [blame] | 309 | TCA_HTB_OFFLOAD, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 310 | __TCA_HTB_MAX, |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 311 | }; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 312 | #define TCA_HTB_MAX (__TCA_HTB_MAX - 1) |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 313 | struct tc_htb_xstats { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 314 | __u32 lends; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 315 | __u32 borrows; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 316 | __u32 giants; |
Christopher Ferris | 86a4837 | 2019-01-10 14:14:59 -0800 | [diff] [blame] | 317 | __s32 tokens; |
| 318 | __s32 ctokens; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 319 | }; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 320 | struct tc_hfsc_qopt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 321 | __u16 defcls; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 322 | }; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 323 | struct tc_service_curve { |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 324 | __u32 m1; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 325 | __u32 d; |
| 326 | __u32 m2; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 327 | }; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 328 | struct tc_hfsc_stats { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 329 | __u64 work; |
| 330 | __u64 rtwork; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 331 | __u32 period; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 332 | __u32 level; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 333 | }; |
| 334 | enum { |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 335 | TCA_HFSC_UNSPEC, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 336 | TCA_HFSC_RSC, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 337 | TCA_HFSC_FSC, |
| 338 | TCA_HFSC_USC, |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 339 | __TCA_HFSC_MAX, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 340 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 341 | #define TCA_HFSC_MAX (__TCA_HFSC_MAX - 1) |
| 342 | #define TC_CBQ_MAXPRIO 8 |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 343 | #define TC_CBQ_MAXLEVEL 8 |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 344 | #define TC_CBQ_DEF_EWMA 5 |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 345 | struct tc_cbq_lssopt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 346 | unsigned char change; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 347 | unsigned char flags; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 348 | #define TCF_CBQ_LSS_BOUNDED 1 |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 349 | #define TCF_CBQ_LSS_ISOLATED 2 |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 350 | unsigned char ewma_log; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 351 | unsigned char level; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 352 | #define TCF_CBQ_LSS_FLAGS 1 |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 353 | #define TCF_CBQ_LSS_EWMA 2 |
| 354 | #define TCF_CBQ_LSS_MAXIDLE 4 |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 355 | #define TCF_CBQ_LSS_MINIDLE 8 |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 356 | #define TCF_CBQ_LSS_OFFTIME 0x10 |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 357 | #define TCF_CBQ_LSS_AVPKT 0x20 |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 358 | __u32 maxidle; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 359 | __u32 minidle; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 360 | __u32 offtime; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 361 | __u32 avpkt; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 362 | }; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 363 | struct tc_cbq_wrropt { |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 364 | unsigned char flags; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 365 | unsigned char priority; |
| 366 | unsigned char cpriority; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 367 | unsigned char __reserved; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 368 | __u32 allot; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 369 | __u32 weight; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 370 | }; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 371 | struct tc_cbq_ovl { |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 372 | unsigned char strategy; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 373 | #define TC_CBQ_OVL_CLASSIC 0 |
| 374 | #define TC_CBQ_OVL_DELAY 1 |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 375 | #define TC_CBQ_OVL_LOWPRIO 2 |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 376 | #define TC_CBQ_OVL_DROP 3 |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 377 | #define TC_CBQ_OVL_RCLASSIC 4 |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 378 | unsigned char priority2; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 379 | __u16 pad; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 380 | __u32 penalty; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 381 | }; |
| 382 | struct tc_cbq_police { |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 383 | unsigned char police; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 384 | unsigned char __res1; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 385 | unsigned short __res2; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 386 | }; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 387 | struct tc_cbq_fopt { |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 388 | __u32 split; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 389 | __u32 defmap; |
| 390 | __u32 defchange; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 391 | }; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 392 | struct tc_cbq_xstats { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 393 | __u32 borrows; |
| 394 | __u32 overactions; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 395 | __s32 avgidle; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 396 | __s32 undertime; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 397 | }; |
| 398 | enum { |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 399 | TCA_CBQ_UNSPEC, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 400 | TCA_CBQ_LSSOPT, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 401 | TCA_CBQ_WRROPT, |
| 402 | TCA_CBQ_FOPT, |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 403 | TCA_CBQ_OVL_STRATEGY, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 404 | TCA_CBQ_RATE, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 405 | TCA_CBQ_RTAB, |
| 406 | TCA_CBQ_POLICE, |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 407 | __TCA_CBQ_MAX, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 408 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 409 | #define TCA_CBQ_MAX (__TCA_CBQ_MAX - 1) |
| 410 | enum { |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 411 | TCA_DSMARK_UNSPEC, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 412 | TCA_DSMARK_INDICES, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 413 | TCA_DSMARK_DEFAULT_INDEX, |
| 414 | TCA_DSMARK_SET_TC_INDEX, |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 415 | TCA_DSMARK_MASK, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 416 | TCA_DSMARK_VALUE, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 417 | __TCA_DSMARK_MAX, |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 418 | }; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 419 | #define TCA_DSMARK_MAX (__TCA_DSMARK_MAX - 1) |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 420 | enum { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 421 | TCA_ATM_UNSPEC, |
| 422 | TCA_ATM_FD, |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 423 | TCA_ATM_PTR, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 424 | TCA_ATM_HDR, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 425 | TCA_ATM_EXCESS, |
| 426 | TCA_ATM_ADDR, |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 427 | TCA_ATM_STATE, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 428 | __TCA_ATM_MAX, |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 429 | }; |
| 430 | #define TCA_ATM_MAX (__TCA_ATM_MAX - 1) |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 431 | enum { |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 432 | TCA_NETEM_UNSPEC, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 433 | TCA_NETEM_CORR, |
| 434 | TCA_NETEM_DELAY_DIST, |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 435 | TCA_NETEM_REORDER, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 436 | TCA_NETEM_CORRUPT, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 437 | TCA_NETEM_LOSS, |
| 438 | TCA_NETEM_RATE, |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 439 | TCA_NETEM_ECN, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 440 | TCA_NETEM_RATE64, |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 441 | TCA_NETEM_PAD, |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 442 | TCA_NETEM_LATENCY64, |
| 443 | TCA_NETEM_JITTER64, |
| 444 | TCA_NETEM_SLOT, |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 445 | TCA_NETEM_SLOT_DIST, |
Christopher Ferris | 67d1e5e | 2023-10-31 13:36:37 -0700 | [diff] [blame^] | 446 | TCA_NETEM_PRNG_SEED, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 447 | __TCA_NETEM_MAX, |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 448 | }; |
| 449 | #define TCA_NETEM_MAX (__TCA_NETEM_MAX - 1) |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 450 | struct tc_netem_qopt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 451 | __u32 latency; |
| 452 | __u32 limit; |
| 453 | __u32 loss; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 454 | __u32 gap; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 455 | __u32 duplicate; |
| 456 | __u32 jitter; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 457 | }; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 458 | struct tc_netem_corr { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 459 | __u32 delay_corr; |
| 460 | __u32 loss_corr; |
| 461 | __u32 dup_corr; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 462 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 463 | struct tc_netem_reorder { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 464 | __u32 probability; |
| 465 | __u32 correlation; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 466 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 467 | struct tc_netem_corrupt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 468 | __u32 probability; |
| 469 | __u32 correlation; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 470 | }; |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 471 | struct tc_netem_rate { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 472 | __u32 rate; |
| 473 | __s32 packet_overhead; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 474 | __u32 cell_size; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 475 | __s32 cell_overhead; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 476 | }; |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 477 | struct tc_netem_slot { |
| 478 | __s64 min_delay; |
| 479 | __s64 max_delay; |
| 480 | __s32 max_packets; |
| 481 | __s32 max_bytes; |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 482 | __s64 dist_delay; |
| 483 | __s64 dist_jitter; |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 484 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 485 | enum { |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 486 | NETEM_LOSS_UNSPEC, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 487 | NETEM_LOSS_GI, |
| 488 | NETEM_LOSS_GE, |
| 489 | __NETEM_LOSS_MAX |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 490 | }; |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 491 | #define NETEM_LOSS_MAX (__NETEM_LOSS_MAX - 1) |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 492 | struct tc_netem_gimodel { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 493 | __u32 p13; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 494 | __u32 p31; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 495 | __u32 p32; |
| 496 | __u32 p14; |
| 497 | __u32 p23; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 498 | }; |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 499 | struct tc_netem_gemodel { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 500 | __u32 p; |
| 501 | __u32 r; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 502 | __u32 h; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 503 | __u32 k1; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 504 | }; |
| 505 | #define NETEM_DIST_SCALE 8192 |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 506 | #define NETEM_DIST_MAX 16384 |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 507 | enum { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 508 | TCA_DRR_UNSPEC, |
| 509 | TCA_DRR_QUANTUM, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 510 | __TCA_DRR_MAX |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 511 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 512 | #define TCA_DRR_MAX (__TCA_DRR_MAX - 1) |
| 513 | struct tc_drr_stats { |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 514 | __u32 deficit; |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 515 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 516 | #define TC_QOPT_BITMASK 15 |
| 517 | #define TC_QOPT_MAX_QUEUE 16 |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 518 | enum { |
| 519 | TC_MQPRIO_HW_OFFLOAD_NONE, |
| 520 | TC_MQPRIO_HW_OFFLOAD_TCS, |
| 521 | __TC_MQPRIO_HW_OFFLOAD_MAX |
| 522 | }; |
| 523 | #define TC_MQPRIO_HW_OFFLOAD_MAX (__TC_MQPRIO_HW_OFFLOAD_MAX - 1) |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 524 | enum { |
| 525 | TC_MQPRIO_MODE_DCB, |
| 526 | TC_MQPRIO_MODE_CHANNEL, |
| 527 | __TC_MQPRIO_MODE_MAX |
| 528 | }; |
| 529 | #define __TC_MQPRIO_MODE_MAX (__TC_MQPRIO_MODE_MAX - 1) |
| 530 | enum { |
| 531 | TC_MQPRIO_SHAPER_DCB, |
| 532 | TC_MQPRIO_SHAPER_BW_RATE, |
| 533 | __TC_MQPRIO_SHAPER_MAX |
| 534 | }; |
| 535 | #define __TC_MQPRIO_SHAPER_MAX (__TC_MQPRIO_SHAPER_MAX - 1) |
Christopher Ferris | 37c3f3c | 2023-07-10 10:59:05 -0700 | [diff] [blame] | 536 | enum { |
| 537 | TC_FP_EXPRESS = 1, |
| 538 | TC_FP_PREEMPTIBLE = 2, |
| 539 | }; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 540 | struct tc_mqprio_qopt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 541 | __u8 num_tc; |
| 542 | __u8 prio_tc_map[TC_QOPT_BITMASK + 1]; |
| 543 | __u8 hw; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 544 | __u16 count[TC_QOPT_MAX_QUEUE]; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 545 | __u16 offset[TC_QOPT_MAX_QUEUE]; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 546 | }; |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 547 | #define TC_MQPRIO_F_MODE 0x1 |
| 548 | #define TC_MQPRIO_F_SHAPER 0x2 |
| 549 | #define TC_MQPRIO_F_MIN_RATE 0x4 |
| 550 | #define TC_MQPRIO_F_MAX_RATE 0x8 |
| 551 | enum { |
Christopher Ferris | 37c3f3c | 2023-07-10 10:59:05 -0700 | [diff] [blame] | 552 | TCA_MQPRIO_TC_ENTRY_UNSPEC, |
| 553 | TCA_MQPRIO_TC_ENTRY_INDEX, |
| 554 | TCA_MQPRIO_TC_ENTRY_FP, |
| 555 | __TCA_MQPRIO_TC_ENTRY_CNT, |
| 556 | TCA_MQPRIO_TC_ENTRY_MAX = (__TCA_MQPRIO_TC_ENTRY_CNT - 1) |
| 557 | }; |
| 558 | enum { |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 559 | TCA_MQPRIO_UNSPEC, |
| 560 | TCA_MQPRIO_MODE, |
| 561 | TCA_MQPRIO_SHAPER, |
| 562 | TCA_MQPRIO_MIN_RATE64, |
| 563 | TCA_MQPRIO_MAX_RATE64, |
Christopher Ferris | 37c3f3c | 2023-07-10 10:59:05 -0700 | [diff] [blame] | 564 | TCA_MQPRIO_TC_ENTRY, |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 565 | __TCA_MQPRIO_MAX, |
| 566 | }; |
| 567 | #define TCA_MQPRIO_MAX (__TCA_MQPRIO_MAX - 1) |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 568 | enum { |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 569 | TCA_SFB_UNSPEC, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 570 | TCA_SFB_PARMS, |
| 571 | __TCA_SFB_MAX, |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 572 | }; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 573 | #define TCA_SFB_MAX (__TCA_SFB_MAX - 1) |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 574 | struct tc_sfb_qopt { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 575 | __u32 rehash_interval; |
| 576 | __u32 warmup_time; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 577 | __u32 max; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 578 | __u32 bin_size; |
| 579 | __u32 increment; |
| 580 | __u32 decrement; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 581 | __u32 limit; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 582 | __u32 penalty_rate; |
| 583 | __u32 penalty_burst; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 584 | }; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 585 | struct tc_sfb_xstats { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 586 | __u32 earlydrop; |
| 587 | __u32 penaltydrop; |
| 588 | __u32 bucketdrop; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 589 | __u32 queuedrop; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 590 | __u32 childdrop; |
| 591 | __u32 marked; |
| 592 | __u32 maxqlen; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 593 | __u32 maxprob; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 594 | __u32 avgprob; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 595 | }; |
| 596 | #define SFB_MAX_PROB 0xFFFF |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 597 | enum { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 598 | TCA_QFQ_UNSPEC, |
| 599 | TCA_QFQ_WEIGHT, |
| 600 | TCA_QFQ_LMAX, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 601 | __TCA_QFQ_MAX |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 602 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 603 | #define TCA_QFQ_MAX (__TCA_QFQ_MAX - 1) |
| 604 | struct tc_qfq_stats { |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 605 | __u32 weight; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 606 | __u32 lmax; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 607 | }; |
| 608 | enum { |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 609 | TCA_CODEL_UNSPEC, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 610 | TCA_CODEL_TARGET, |
| 611 | TCA_CODEL_LIMIT, |
| 612 | TCA_CODEL_INTERVAL, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 613 | TCA_CODEL_ECN, |
| 614 | TCA_CODEL_CE_THRESHOLD, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 615 | __TCA_CODEL_MAX |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 616 | }; |
| 617 | #define TCA_CODEL_MAX (__TCA_CODEL_MAX - 1) |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 618 | struct tc_codel_xstats { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 619 | __u32 maxpacket; |
| 620 | __u32 count; |
| 621 | __u32 lastcount; |
| 622 | __u32 ldelay; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 623 | __s32 drop_next; |
| 624 | __u32 drop_overlimit; |
| 625 | __u32 ecn_mark; |
| 626 | __u32 dropping; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 627 | __u32 ce_mark; |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 628 | }; |
Christopher Ferris | 2abfa9e | 2021-11-01 16:26:06 -0700 | [diff] [blame] | 629 | #define FQ_CODEL_QUANTUM_MAX (1 << 20) |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 630 | enum { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 631 | TCA_FQ_CODEL_UNSPEC, |
| 632 | TCA_FQ_CODEL_TARGET, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 633 | TCA_FQ_CODEL_LIMIT, |
| 634 | TCA_FQ_CODEL_INTERVAL, |
| 635 | TCA_FQ_CODEL_ECN, |
| 636 | TCA_FQ_CODEL_FLOWS, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 637 | TCA_FQ_CODEL_QUANTUM, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 638 | TCA_FQ_CODEL_CE_THRESHOLD, |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 639 | TCA_FQ_CODEL_DROP_BATCH_SIZE, |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 640 | TCA_FQ_CODEL_MEMORY_LIMIT, |
Christopher Ferris | a479261 | 2022-01-10 13:51:15 -0800 | [diff] [blame] | 641 | TCA_FQ_CODEL_CE_THRESHOLD_SELECTOR, |
| 642 | TCA_FQ_CODEL_CE_THRESHOLD_MASK, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 643 | __TCA_FQ_CODEL_MAX |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 644 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 645 | #define TCA_FQ_CODEL_MAX (__TCA_FQ_CODEL_MAX - 1) |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 646 | enum { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 647 | TCA_FQ_CODEL_XSTATS_QDISC, |
| 648 | TCA_FQ_CODEL_XSTATS_CLASS, |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 649 | }; |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 650 | struct tc_fq_codel_qd_stats { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 651 | __u32 maxpacket; |
| 652 | __u32 drop_overlimit; |
| 653 | __u32 ecn_mark; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 654 | __u32 new_flow_count; |
| 655 | __u32 new_flows_len; |
| 656 | __u32 old_flows_len; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 657 | __u32 ce_mark; |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 658 | __u32 memory_usage; |
| 659 | __u32 drop_overmemory; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 660 | }; |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 661 | struct tc_fq_codel_cl_stats { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 662 | __s32 deficit; |
| 663 | __u32 ldelay; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 664 | __u32 count; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 665 | __u32 lastcount; |
| 666 | __u32 dropping; |
| 667 | __s32 drop_next; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 668 | }; |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 669 | struct tc_fq_codel_xstats { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 670 | __u32 type; |
| 671 | union { |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 672 | struct tc_fq_codel_qd_stats qdisc_stats; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 673 | struct tc_fq_codel_cl_stats class_stats; |
| 674 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 675 | }; |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 676 | enum { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 677 | TCA_FQ_UNSPEC, |
| 678 | TCA_FQ_PLIMIT, |
| 679 | TCA_FQ_FLOW_PLIMIT, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 680 | TCA_FQ_QUANTUM, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 681 | TCA_FQ_INITIAL_QUANTUM, |
| 682 | TCA_FQ_RATE_ENABLE, |
| 683 | TCA_FQ_FLOW_DEFAULT_RATE, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 684 | TCA_FQ_FLOW_MAX_RATE, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 685 | TCA_FQ_BUCKETS_LOG, |
| 686 | TCA_FQ_FLOW_REFILL_DELAY, |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 687 | TCA_FQ_ORPHAN_MASK, |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 688 | TCA_FQ_LOW_RATE_THRESHOLD, |
Christopher Ferris | d842e43 | 2019-03-07 10:21:59 -0800 | [diff] [blame] | 689 | TCA_FQ_CE_THRESHOLD, |
Christopher Ferris | af09c70 | 2020-06-01 20:29:29 -0700 | [diff] [blame] | 690 | TCA_FQ_TIMER_SLACK, |
Christopher Ferris | 8177cdf | 2020-08-03 11:53:55 -0700 | [diff] [blame] | 691 | TCA_FQ_HORIZON, |
| 692 | TCA_FQ_HORIZON_DROP, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 693 | __TCA_FQ_MAX |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 694 | }; |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 695 | #define TCA_FQ_MAX (__TCA_FQ_MAX - 1) |
| 696 | struct tc_fq_qd_stats { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 697 | __u64 gc_flows; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 698 | __u64 highprio_packets; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 699 | __u64 tcp_retrans; |
| 700 | __u64 throttled; |
| 701 | __u64 flows_plimit; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 702 | __u64 pkts_too_long; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 703 | __u64 allocation_errors; |
| 704 | __s64 time_next_delayed_flow; |
| 705 | __u32 flows; |
| 706 | __u32 inactive_flows; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 707 | __u32 throttled_flows; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 708 | __u32 unthrottle_latency_ns; |
Christopher Ferris | d842e43 | 2019-03-07 10:21:59 -0800 | [diff] [blame] | 709 | __u64 ce_mark; |
Christopher Ferris | 8177cdf | 2020-08-03 11:53:55 -0700 | [diff] [blame] | 710 | __u64 horizon_drops; |
| 711 | __u64 horizon_caps; |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 712 | }; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 713 | enum { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 714 | TCA_HHF_UNSPEC, |
| 715 | TCA_HHF_BACKLOG_LIMIT, |
| 716 | TCA_HHF_QUANTUM, |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 717 | TCA_HHF_HH_FLOWS_LIMIT, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 718 | TCA_HHF_RESET_TIMEOUT, |
| 719 | TCA_HHF_ADMIT_BYTES, |
| 720 | TCA_HHF_EVICT_TIMEOUT, |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 721 | TCA_HHF_NON_HH_WEIGHT, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 722 | __TCA_HHF_MAX |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 723 | }; |
| 724 | #define TCA_HHF_MAX (__TCA_HHF_MAX - 1) |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 725 | struct tc_hhf_xstats { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 726 | __u32 drop_overlimit; |
| 727 | __u32 hh_overlimit; |
| 728 | __u32 hh_tot_count; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 729 | __u32 hh_cur_count; |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 730 | }; |
| 731 | enum { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 732 | TCA_PIE_UNSPEC, |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 733 | TCA_PIE_TARGET, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 734 | TCA_PIE_LIMIT, |
| 735 | TCA_PIE_TUPDATE, |
| 736 | TCA_PIE_ALPHA, |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 737 | TCA_PIE_BETA, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 738 | TCA_PIE_ECN, |
| 739 | TCA_PIE_BYTEMODE, |
Christopher Ferris | d32ca14 | 2020-02-04 16:16:51 -0800 | [diff] [blame] | 740 | TCA_PIE_DQ_RATE_ESTIMATOR, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 741 | __TCA_PIE_MAX |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 742 | }; |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 743 | #define TCA_PIE_MAX (__TCA_PIE_MAX - 1) |
| 744 | struct tc_pie_xstats { |
Christopher Ferris | 24f97eb | 2019-05-20 12:58:13 -0700 | [diff] [blame] | 745 | __u64 prob; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 746 | __u32 delay; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 747 | __u32 avg_dq_rate; |
Christopher Ferris | d32ca14 | 2020-02-04 16:16:51 -0800 | [diff] [blame] | 748 | __u32 dq_rate_estimating; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 749 | __u32 packets_in; |
| 750 | __u32 dropped; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 751 | __u32 overlimit; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 752 | __u32 maxq; |
| 753 | __u32 ecn_mark; |
Christopher Ferris | 38062f9 | 2014-07-09 15:33:25 -0700 | [diff] [blame] | 754 | }; |
Christopher Ferris | bb9fcb4 | 2020-04-06 11:38:04 -0700 | [diff] [blame] | 755 | enum { |
| 756 | TCA_FQ_PIE_UNSPEC, |
| 757 | TCA_FQ_PIE_LIMIT, |
| 758 | TCA_FQ_PIE_FLOWS, |
| 759 | TCA_FQ_PIE_TARGET, |
| 760 | TCA_FQ_PIE_TUPDATE, |
| 761 | TCA_FQ_PIE_ALPHA, |
| 762 | TCA_FQ_PIE_BETA, |
| 763 | TCA_FQ_PIE_QUANTUM, |
| 764 | TCA_FQ_PIE_MEMORY_LIMIT, |
| 765 | TCA_FQ_PIE_ECN_PROB, |
| 766 | TCA_FQ_PIE_ECN, |
| 767 | TCA_FQ_PIE_BYTEMODE, |
| 768 | TCA_FQ_PIE_DQ_RATE_ESTIMATOR, |
| 769 | __TCA_FQ_PIE_MAX |
| 770 | }; |
| 771 | #define TCA_FQ_PIE_MAX (__TCA_FQ_PIE_MAX - 1) |
| 772 | struct tc_fq_pie_xstats { |
| 773 | __u32 packets_in; |
| 774 | __u32 dropped; |
| 775 | __u32 overlimit; |
| 776 | __u32 overmemory; |
| 777 | __u32 ecn_mark; |
| 778 | __u32 new_flow_count; |
| 779 | __u32 new_flows_len; |
| 780 | __u32 old_flows_len; |
| 781 | __u32 memory_usage; |
| 782 | }; |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 783 | struct tc_cbs_qopt { |
| 784 | __u8 offload; |
| 785 | __u8 _pad[3]; |
| 786 | __s32 hicredit; |
| 787 | __s32 locredit; |
| 788 | __s32 idleslope; |
| 789 | __s32 sendslope; |
| 790 | }; |
| 791 | enum { |
| 792 | TCA_CBS_UNSPEC, |
| 793 | TCA_CBS_PARMS, |
| 794 | __TCA_CBS_MAX, |
| 795 | }; |
| 796 | #define TCA_CBS_MAX (__TCA_CBS_MAX - 1) |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 797 | struct tc_etf_qopt { |
| 798 | __s32 delta; |
| 799 | __s32 clockid; |
| 800 | __u32 flags; |
Christopher Ferris | b8a95e2 | 2019-10-02 18:29:20 -0700 | [diff] [blame] | 801 | #define TC_ETF_DEADLINE_MODE_ON _BITUL(0) |
| 802 | #define TC_ETF_OFFLOAD_ON _BITUL(1) |
| 803 | #define TC_ETF_SKIP_SOCK_CHECK _BITUL(2) |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 804 | }; |
| 805 | enum { |
| 806 | TCA_ETF_UNSPEC, |
| 807 | TCA_ETF_PARMS, |
| 808 | __TCA_ETF_MAX, |
| 809 | }; |
| 810 | #define TCA_ETF_MAX (__TCA_ETF_MAX - 1) |
| 811 | enum { |
| 812 | TCA_CAKE_UNSPEC, |
| 813 | TCA_CAKE_PAD, |
| 814 | TCA_CAKE_BASE_RATE64, |
| 815 | TCA_CAKE_DIFFSERV_MODE, |
| 816 | TCA_CAKE_ATM, |
| 817 | TCA_CAKE_FLOW_MODE, |
| 818 | TCA_CAKE_OVERHEAD, |
| 819 | TCA_CAKE_RTT, |
| 820 | TCA_CAKE_TARGET, |
| 821 | TCA_CAKE_AUTORATE, |
| 822 | TCA_CAKE_MEMORY, |
| 823 | TCA_CAKE_NAT, |
| 824 | TCA_CAKE_RAW, |
| 825 | TCA_CAKE_WASH, |
| 826 | TCA_CAKE_MPU, |
| 827 | TCA_CAKE_INGRESS, |
| 828 | TCA_CAKE_ACK_FILTER, |
| 829 | TCA_CAKE_SPLIT_GSO, |
Christopher Ferris | 24f97eb | 2019-05-20 12:58:13 -0700 | [diff] [blame] | 830 | TCA_CAKE_FWMARK, |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 831 | __TCA_CAKE_MAX |
| 832 | }; |
| 833 | #define TCA_CAKE_MAX (__TCA_CAKE_MAX - 1) |
| 834 | enum { |
| 835 | __TCA_CAKE_STATS_INVALID, |
| 836 | TCA_CAKE_STATS_PAD, |
| 837 | TCA_CAKE_STATS_CAPACITY_ESTIMATE64, |
| 838 | TCA_CAKE_STATS_MEMORY_LIMIT, |
| 839 | TCA_CAKE_STATS_MEMORY_USED, |
| 840 | TCA_CAKE_STATS_AVG_NETOFF, |
| 841 | TCA_CAKE_STATS_MIN_NETLEN, |
| 842 | TCA_CAKE_STATS_MAX_NETLEN, |
| 843 | TCA_CAKE_STATS_MIN_ADJLEN, |
| 844 | TCA_CAKE_STATS_MAX_ADJLEN, |
| 845 | TCA_CAKE_STATS_TIN_STATS, |
| 846 | TCA_CAKE_STATS_DEFICIT, |
| 847 | TCA_CAKE_STATS_COBALT_COUNT, |
| 848 | TCA_CAKE_STATS_DROPPING, |
| 849 | TCA_CAKE_STATS_DROP_NEXT_US, |
| 850 | TCA_CAKE_STATS_P_DROP, |
| 851 | TCA_CAKE_STATS_BLUE_TIMER_US, |
| 852 | __TCA_CAKE_STATS_MAX |
| 853 | }; |
| 854 | #define TCA_CAKE_STATS_MAX (__TCA_CAKE_STATS_MAX - 1) |
| 855 | enum { |
| 856 | __TCA_CAKE_TIN_STATS_INVALID, |
| 857 | TCA_CAKE_TIN_STATS_PAD, |
| 858 | TCA_CAKE_TIN_STATS_SENT_PACKETS, |
| 859 | TCA_CAKE_TIN_STATS_SENT_BYTES64, |
| 860 | TCA_CAKE_TIN_STATS_DROPPED_PACKETS, |
| 861 | TCA_CAKE_TIN_STATS_DROPPED_BYTES64, |
| 862 | TCA_CAKE_TIN_STATS_ACKS_DROPPED_PACKETS, |
| 863 | TCA_CAKE_TIN_STATS_ACKS_DROPPED_BYTES64, |
| 864 | TCA_CAKE_TIN_STATS_ECN_MARKED_PACKETS, |
| 865 | TCA_CAKE_TIN_STATS_ECN_MARKED_BYTES64, |
| 866 | TCA_CAKE_TIN_STATS_BACKLOG_PACKETS, |
| 867 | TCA_CAKE_TIN_STATS_BACKLOG_BYTES, |
| 868 | TCA_CAKE_TIN_STATS_THRESHOLD_RATE64, |
| 869 | TCA_CAKE_TIN_STATS_TARGET_US, |
| 870 | TCA_CAKE_TIN_STATS_INTERVAL_US, |
| 871 | TCA_CAKE_TIN_STATS_WAY_INDIRECT_HITS, |
| 872 | TCA_CAKE_TIN_STATS_WAY_MISSES, |
| 873 | TCA_CAKE_TIN_STATS_WAY_COLLISIONS, |
| 874 | TCA_CAKE_TIN_STATS_PEAK_DELAY_US, |
| 875 | TCA_CAKE_TIN_STATS_AVG_DELAY_US, |
| 876 | TCA_CAKE_TIN_STATS_BASE_DELAY_US, |
| 877 | TCA_CAKE_TIN_STATS_SPARSE_FLOWS, |
| 878 | TCA_CAKE_TIN_STATS_BULK_FLOWS, |
| 879 | TCA_CAKE_TIN_STATS_UNRESPONSIVE_FLOWS, |
| 880 | TCA_CAKE_TIN_STATS_MAX_SKBLEN, |
| 881 | TCA_CAKE_TIN_STATS_FLOW_QUANTUM, |
| 882 | __TCA_CAKE_TIN_STATS_MAX |
| 883 | }; |
| 884 | #define TCA_CAKE_TIN_STATS_MAX (__TCA_CAKE_TIN_STATS_MAX - 1) |
| 885 | #define TC_CAKE_MAX_TINS (8) |
| 886 | enum { |
| 887 | CAKE_FLOW_NONE = 0, |
| 888 | CAKE_FLOW_SRC_IP, |
| 889 | CAKE_FLOW_DST_IP, |
| 890 | CAKE_FLOW_HOSTS, |
| 891 | CAKE_FLOW_FLOWS, |
| 892 | CAKE_FLOW_DUAL_SRC, |
| 893 | CAKE_FLOW_DUAL_DST, |
| 894 | CAKE_FLOW_TRIPLE, |
| 895 | CAKE_FLOW_MAX, |
| 896 | }; |
| 897 | enum { |
| 898 | CAKE_DIFFSERV_DIFFSERV3 = 0, |
| 899 | CAKE_DIFFSERV_DIFFSERV4, |
| 900 | CAKE_DIFFSERV_DIFFSERV8, |
| 901 | CAKE_DIFFSERV_BESTEFFORT, |
| 902 | CAKE_DIFFSERV_PRECEDENCE, |
| 903 | CAKE_DIFFSERV_MAX |
| 904 | }; |
| 905 | enum { |
| 906 | CAKE_ACK_NONE = 0, |
| 907 | CAKE_ACK_FILTER, |
| 908 | CAKE_ACK_AGGRESSIVE, |
| 909 | CAKE_ACK_MAX |
| 910 | }; |
| 911 | enum { |
| 912 | CAKE_ATM_NONE = 0, |
| 913 | CAKE_ATM_ATM, |
| 914 | CAKE_ATM_PTM, |
| 915 | CAKE_ATM_MAX |
| 916 | }; |
Christopher Ferris | 86a4837 | 2019-01-10 14:14:59 -0800 | [diff] [blame] | 917 | enum { |
| 918 | TC_TAPRIO_CMD_SET_GATES = 0x00, |
| 919 | TC_TAPRIO_CMD_SET_AND_HOLD = 0x01, |
| 920 | TC_TAPRIO_CMD_SET_AND_RELEASE = 0x02, |
| 921 | }; |
| 922 | enum { |
| 923 | TCA_TAPRIO_SCHED_ENTRY_UNSPEC, |
| 924 | TCA_TAPRIO_SCHED_ENTRY_INDEX, |
| 925 | TCA_TAPRIO_SCHED_ENTRY_CMD, |
| 926 | TCA_TAPRIO_SCHED_ENTRY_GATE_MASK, |
| 927 | TCA_TAPRIO_SCHED_ENTRY_INTERVAL, |
| 928 | __TCA_TAPRIO_SCHED_ENTRY_MAX, |
| 929 | }; |
| 930 | #define TCA_TAPRIO_SCHED_ENTRY_MAX (__TCA_TAPRIO_SCHED_ENTRY_MAX - 1) |
| 931 | enum { |
| 932 | TCA_TAPRIO_SCHED_UNSPEC, |
| 933 | TCA_TAPRIO_SCHED_ENTRY, |
| 934 | __TCA_TAPRIO_SCHED_MAX, |
| 935 | }; |
| 936 | #define TCA_TAPRIO_SCHED_MAX (__TCA_TAPRIO_SCHED_MAX - 1) |
Christopher Ferris | af09c70 | 2020-06-01 20:29:29 -0700 | [diff] [blame] | 937 | #define TCA_TAPRIO_ATTR_FLAG_TXTIME_ASSIST _BITUL(0) |
| 938 | #define TCA_TAPRIO_ATTR_FLAG_FULL_OFFLOAD _BITUL(1) |
Christopher Ferris | 86a4837 | 2019-01-10 14:14:59 -0800 | [diff] [blame] | 939 | enum { |
Christopher Ferris | 6cd53a5 | 2022-12-12 23:39:16 +0000 | [diff] [blame] | 940 | TCA_TAPRIO_TC_ENTRY_UNSPEC, |
| 941 | TCA_TAPRIO_TC_ENTRY_INDEX, |
| 942 | TCA_TAPRIO_TC_ENTRY_MAX_SDU, |
Christopher Ferris | 37c3f3c | 2023-07-10 10:59:05 -0700 | [diff] [blame] | 943 | TCA_TAPRIO_TC_ENTRY_FP, |
Christopher Ferris | 6cd53a5 | 2022-12-12 23:39:16 +0000 | [diff] [blame] | 944 | __TCA_TAPRIO_TC_ENTRY_CNT, |
| 945 | TCA_TAPRIO_TC_ENTRY_MAX = (__TCA_TAPRIO_TC_ENTRY_CNT - 1) |
| 946 | }; |
| 947 | enum { |
Christopher Ferris | 8666d04 | 2023-09-06 14:55:31 -0700 | [diff] [blame] | 948 | TCA_TAPRIO_OFFLOAD_STATS_PAD = 1, |
| 949 | TCA_TAPRIO_OFFLOAD_STATS_WINDOW_DROPS, |
| 950 | TCA_TAPRIO_OFFLOAD_STATS_TX_OVERRUNS, |
| 951 | __TCA_TAPRIO_OFFLOAD_STATS_CNT, |
| 952 | TCA_TAPRIO_OFFLOAD_STATS_MAX = (__TCA_TAPRIO_OFFLOAD_STATS_CNT - 1) |
| 953 | }; |
| 954 | enum { |
Christopher Ferris | 86a4837 | 2019-01-10 14:14:59 -0800 | [diff] [blame] | 955 | TCA_TAPRIO_ATTR_UNSPEC, |
| 956 | TCA_TAPRIO_ATTR_PRIOMAP, |
| 957 | TCA_TAPRIO_ATTR_SCHED_ENTRY_LIST, |
| 958 | TCA_TAPRIO_ATTR_SCHED_BASE_TIME, |
| 959 | TCA_TAPRIO_ATTR_SCHED_SINGLE_ENTRY, |
| 960 | TCA_TAPRIO_ATTR_SCHED_CLOCKID, |
| 961 | TCA_TAPRIO_PAD, |
Christopher Ferris | aeddbcf | 2019-07-08 12:45:46 -0700 | [diff] [blame] | 962 | TCA_TAPRIO_ATTR_ADMIN_SCHED, |
| 963 | TCA_TAPRIO_ATTR_SCHED_CYCLE_TIME, |
| 964 | TCA_TAPRIO_ATTR_SCHED_CYCLE_TIME_EXTENSION, |
Christopher Ferris | b8a95e2 | 2019-10-02 18:29:20 -0700 | [diff] [blame] | 965 | TCA_TAPRIO_ATTR_FLAGS, |
| 966 | TCA_TAPRIO_ATTR_TXTIME_DELAY, |
Christopher Ferris | 6cd53a5 | 2022-12-12 23:39:16 +0000 | [diff] [blame] | 967 | TCA_TAPRIO_ATTR_TC_ENTRY, |
Christopher Ferris | 86a4837 | 2019-01-10 14:14:59 -0800 | [diff] [blame] | 968 | __TCA_TAPRIO_ATTR_MAX, |
| 969 | }; |
| 970 | #define TCA_TAPRIO_ATTR_MAX (__TCA_TAPRIO_ATTR_MAX - 1) |
Christopher Ferris | bb9fcb4 | 2020-04-06 11:38:04 -0700 | [diff] [blame] | 971 | #define TCQ_ETS_MAX_BANDS 16 |
| 972 | enum { |
| 973 | TCA_ETS_UNSPEC, |
| 974 | TCA_ETS_NBANDS, |
| 975 | TCA_ETS_NSTRICT, |
| 976 | TCA_ETS_QUANTA, |
| 977 | TCA_ETS_QUANTA_BAND, |
| 978 | TCA_ETS_PRIOMAP, |
| 979 | TCA_ETS_PRIOMAP_BAND, |
| 980 | __TCA_ETS_MAX, |
| 981 | }; |
| 982 | #define TCA_ETS_MAX (__TCA_ETS_MAX - 1) |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 983 | #endif |