Searched refs:qth_max (Results 1 – 8 of 8) sorted by relevance
/external/iproute2/tc/ |
D | q_choke.c | 73 if (get_unsigned(&opt.qth_max, *argv, 0)) { in choke_parse_opt() 115 if (!opt.qth_max) in choke_parse_opt() 116 opt.qth_max = opt.limit / 4; in choke_parse_opt() 118 opt.qth_min = opt.qth_max / 3; in choke_parse_opt() 120 burst = (2 * opt.qth_min + opt.qth_max) / 3; in choke_parse_opt() 122 if (opt.qth_max > opt.limit) { in choke_parse_opt() 127 if (opt.qth_min >= opt.qth_max) { in choke_parse_opt() 141 wlog = tc_red_eval_P(opt.qth_min*avpkt, opt.qth_max*avpkt, probability); in choke_parse_opt() 188 qopt->limit, qopt->qth_min, qopt->qth_max); in choke_print_opt()
|
D | q_sfq.c | 115 if (get_u32(&opt.qth_max, *argv, 0)) { in sfq_parse_opt() 166 if (!opt.qth_max) in sfq_parse_opt() 167 opt.qth_max = opt.limit / 4; in sfq_parse_opt() 169 opt.qth_min = opt.qth_max / 3; in sfq_parse_opt() 171 burst = (2 * opt.qth_min + opt.qth_max) / (3 * avpkt); in sfq_parse_opt() 173 if (opt.qth_max > opt.limit) { in sfq_parse_opt() 178 if (opt.qth_min >= opt.qth_max) { in sfq_parse_opt() 192 wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability); in sfq_parse_opt() 238 sprint_size(qopt_ext->qth_max, b3), in sfq_print_opt()
|
D | q_red.c | 65 if (get_size(&opt.qth_max, *argv)) { in red_parse_opt() 123 if (!opt.qth_max) in red_parse_opt() 124 opt.qth_max = opt.qth_min ? opt.qth_min * 3 : opt.limit / 4; in red_parse_opt() 126 opt.qth_min = opt.qth_max / 3; in red_parse_opt() 128 burst = (2 * opt.qth_min + opt.qth_max) / (3 * avpkt); in red_parse_opt() 136 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) { in red_parse_opt() 184 sprint_size(qopt->qth_max, b3)); in red_print_opt()
|
D | q_gred.c | 157 if (get_size(&opt.qth_max, *argv)) { in gred_parse_opt() 220 if (!opt.qth_min || !opt.qth_max || !opt.limit || !avpkt || in gred_parse_opt() 227 burst = (2 * opt.qth_min + opt.qth_max) / (3 * avpkt); in gred_parse_opt() 239 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) { in gred_parse_opt() 313 sprint_size(qopt->qth_max, b3)); in gred_print_opt()
|
/external/iproute2/include/linux/ |
D | pkt_sched.h | 202 __u32 qth_max; /* Max average length threshold (bytes) */ member 232 __u32 qth_max; /* Max average length threshold (bytes) */ member 267 __u32 qth_max; /* Max average length threshold (bytes) */ member 307 __u32 qth_max; /* Max average threshold (packets) */ member
|
/external/kernel-headers/original/uapi/linux/ |
D | pkt_sched.h | 214 __u32 qth_max; /* Max average length threshold (bytes) */ member 244 __u32 qth_max; /* Max average length threshold (bytes) */ member 279 __u32 qth_max; /* Max average length threshold (bytes) */ member 319 __u32 qth_max; /* Max average threshold (packets) */ member
|
/external/libnl/include/linux/ |
D | pkt_sched.h | 176 __u32 qth_max; /* Max average length threshold (bytes) */ member 212 __u32 qth_max; /* Max average length threshold (bytes) */ member
|
/external/libnl/lib/route/sch/ |
D | red.c | 79 red->qr_qth_max = opts->qth_max; in red_msg_parser()
|