Searched refs:qth_min (Results 1 – 8 of 8) sorted by relevance
/external/iproute2/tc/ |
D | q_red.c | 59 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()
|
D | q_choke.c | 67 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()
|
D | q_sfq.c | 108 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()
|
D | q_gred.c | 153 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/kernel-headers/original/uapi/linux/ |
D | pkt_sched.h | 213 __u32 qth_min; /* Min average length threshold (bytes) */ member 243 __u32 qth_min; /* Min average length threshold (bytes) */ member 279 __u32 qth_min; /* Min average length threshold (bytes) */ member 319 __u32 qth_min; /* Min average threshold (packets) */ member
|
/external/iproute2/include/linux/ |
D | pkt_sched.h | 217 __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/libnl/include/linux/ |
D | pkt_sched.h | 175 __u32 qth_min; /* Min average length threshold (bytes) */ member 211 __u32 qth_min; /* Min average length threshold (bytes) */ member
|
/external/libnl/lib/route/sch/ |
D | red.c | 78 red->qr_qth_min = opts->qth_min; in red_msg_parser()
|