Home
last modified time | relevance | path

Searched refs:qth_min (Results 1 – 8 of 8) sorted by relevance

/external/iproute2/tc/
Dq_red.c59 if (get_size(&opt.qth_min, *argv)) { in red_parse_opt()
121 opt.qth_max = opt.qth_min ? opt.qth_min * 3 : opt.limit / 4; in red_parse_opt()
122 if (!opt.qth_min) in red_parse_opt()
123 opt.qth_min = opt.qth_max / 3; in red_parse_opt()
125 burst = (2 * opt.qth_min + opt.qth_max) / (3 * avpkt); in red_parse_opt()
130 if ((parm = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) { in red_parse_opt()
137 if ((parm = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) { in red_parse_opt()
184 sprint_size(qopt->qth_min, b2), in red_print_opt()
Dq_choke.c67 if (get_unsigned(&opt.qth_min, *argv, 0)) { in choke_parse_opt()
117 if (!opt.qth_min) 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()
127 if (opt.qth_min >= opt.qth_max) { in choke_parse_opt()
132 wlog = tc_red_eval_ewma(opt.qth_min*avpkt, burst, avpkt); 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()
Dq_sfq.c108 if (get_u32(&opt.qth_min, *argv, 0)) { in sfq_parse_opt()
168 if (!opt.qth_min) 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()
178 if (opt.qth_min >= opt.qth_max) { in sfq_parse_opt()
183 wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt); in sfq_parse_opt()
192 wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability); in sfq_parse_opt()
234 if (qopt_ext && qopt_ext->qth_min) { in sfq_print_opt()
237 sprint_size(qopt_ext->qth_min, b2), in sfq_print_opt()
Dq_gred.c153 if (get_size(&opt.qth_min, *argv)) { in gred_parse_opt()
225 if (opt.DP == MAX_DPs || !opt.limit || !opt.qth_min || !opt.qth_max || in gred_parse_opt()
232 burst = (2 * opt.qth_min + opt.qth_max) / (3 * avpkt); in gred_parse_opt()
239 if ((parm = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) { in gred_parse_opt()
247 if ((parm = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) { in gred_parse_opt()
323 sprint_size(qopt->qth_min, b2), in gred_print_opt()
/external/iproute2/include/linux/
Dpkt_sched.h217 __u32 qth_min; /* Min average length threshold (bytes) */ member
247 __u32 qth_min; /* Min average length threshold (bytes) */ member
283 __u32 qth_min; /* Min average length threshold (bytes) */ member
323 __u32 qth_min; /* Min average threshold (packets) */ member
/external/kernel-headers/original/uapi/linux/
Dpkt_sched.h218 __u32 qth_min; /* Min average length threshold (bytes) */ member
248 __u32 qth_min; /* Min average length threshold (bytes) */ member
284 __u32 qth_min; /* Min average length threshold (bytes) */ member
324 __u32 qth_min; /* Min average threshold (packets) */ member
/external/libnl/include/linux-private/linux/
Dpkt_sched.h212 __u32 qth_min; /* Min average length threshold (bytes) */ member
245 __u32 qth_min; /* Min average length threshold (bytes) */ member
284 __u32 qth_min; /* Min average threshold (packets) */ member
/external/libnl/lib/route/qdisc/
Dred.c61 red->qr_qth_min = opts->qth_min; in red_msg_parser()