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() 120 if (!opt.qth_max) in red_parse_opt() 121 opt.qth_max = opt.qth_min ? opt.qth_min * 3 : opt.limit / 4; 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() 137 if ((parm = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) { in red_parse_opt() 185 sprint_size(qopt->qth_max, b3)); in red_print_opt()
|
D | q_gred.c | 160 if (get_size(&opt.qth_max, *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() 247 if ((parm = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) { in gred_parse_opt() 324 sprint_size(qopt->qth_max, b3)); in gred_print_opt()
|
/external/iproute2/include/linux/ |
D | pkt_sched.h | 218 __u32 qth_max; /* Max average length threshold (bytes) */ member 248 __u32 qth_max; /* Max average length threshold (bytes) */ member 284 __u32 qth_max; /* Max average length threshold (bytes) */ member 324 __u32 qth_max; /* Max average threshold (packets) */ member
|
/external/kernel-headers/original/uapi/linux/ |
D | pkt_sched.h | 219 __u32 qth_max; /* Max average length threshold (bytes) */ member 249 __u32 qth_max; /* Max average length threshold (bytes) */ member 285 __u32 qth_max; /* Max average length threshold (bytes) */ member 325 __u32 qth_max; /* Max average threshold (packets) */ member
|
/external/libnl/include/linux-private/linux/ |
D | pkt_sched.h | 213 __u32 qth_max; /* Max average length threshold (bytes) */ member 246 __u32 qth_max; /* Max average length threshold (bytes) */ member 285 __u32 qth_max; /* Max average threshold (packets) */ member
|
/external/libnl/lib/route/qdisc/ |
D | red.c | 62 red->qr_qth_max = opts->qth_max; in red_msg_parser()
|