Searched refs:qth_min (Results 1 - 25 of 32) sorted by relevance

12

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iproute2-3.x/tc/
H A Dq_choke.c65 if (get_unsigned(&opt.qth_min, *argv, 0)) {
115 if (!opt.qth_min)
116 opt.qth_min = opt.qth_max / 3;
118 burst = (2 * opt.qth_min + opt.qth_max) / 3;
125 if (opt.qth_min >= opt.qth_max) {
130 wlog = tc_red_eval_ewma(opt.qth_min*avpkt, burst, avpkt);
139 wlog = tc_red_eval_P(opt.qth_min*avpkt, opt.qth_max*avpkt, probability);
180 qopt->limit, qopt->qth_min, qopt->qth_max);
H A Dq_red.c57 if (get_size(&opt.qth_min, *argv)) {
107 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt) {
112 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
119 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
166 sprint_size(qopt->qth_min, b2),
H A Dq_gred.c148 if (get_size(&opt.qth_min, *argv)) {
218 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt ||
225 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
233 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
299 sprint_size(qopt->qth_min, b2),
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/iproute2-3.x/tc/
H A Dq_choke.c65 if (get_unsigned(&opt.qth_min, *argv, 0)) {
115 if (!opt.qth_min)
116 opt.qth_min = opt.qth_max / 3;
118 burst = (2 * opt.qth_min + opt.qth_max) / 3;
125 if (opt.qth_min >= opt.qth_max) {
130 wlog = tc_red_eval_ewma(opt.qth_min*avpkt, burst, avpkt);
139 wlog = tc_red_eval_P(opt.qth_min*avpkt, opt.qth_max*avpkt, probability);
180 qopt->limit, qopt->qth_min, qopt->qth_max);
H A Dq_red.c57 if (get_size(&opt.qth_min, *argv)) {
107 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt) {
112 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
119 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
166 sprint_size(qopt->qth_min, b2),
H A Dq_gred.c148 if (get_size(&opt.qth_min, *argv)) {
218 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt ||
225 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
233 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
299 sprint_size(qopt->qth_min, b2),
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/iproute2-3.x/tc/
H A Dq_choke.c65 if (get_unsigned(&opt.qth_min, *argv, 0)) {
115 if (!opt.qth_min)
116 opt.qth_min = opt.qth_max / 3;
118 burst = (2 * opt.qth_min + opt.qth_max) / 3;
125 if (opt.qth_min >= opt.qth_max) {
130 wlog = tc_red_eval_ewma(opt.qth_min*avpkt, burst, avpkt);
139 wlog = tc_red_eval_P(opt.qth_min*avpkt, opt.qth_max*avpkt, probability);
180 qopt->limit, qopt->qth_min, qopt->qth_max);
H A Dq_red.c57 if (get_size(&opt.qth_min, *argv)) {
107 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt) {
112 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
119 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
166 sprint_size(qopt->qth_min, b2),
H A Dq_gred.c148 if (get_size(&opt.qth_min, *argv)) {
218 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt ||
225 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
233 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
299 sprint_size(qopt->qth_min, b2),
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/net/
H A Dred.h47 qth_min - bytes (should be < qth_max/2)
48 qth_max - bytes (should be at least 2*qth_min and less limit)
54 max_P = (qth_max-qth_min)/2^Plog;
56 F.e. if qth_max=128K and qth_min=32K, then Plog=22
105 u32 qth_min; /* Min avg length threshold: A scaled */ member in struct:red_parms
129 u32 qth_min, u32 qth_max, u8 Wlog, u8 Plog,
139 p->qth_min = qth_min << Wlog;
262 max_P = (qth_max-qth_min)/2^Plog; two lines
265 max_P*(qavg - qth_min)/(qth_ma
128 red_set_parms(struct red_parms *p, u32 qth_min, u32 qth_max, u8 Wlog, u8 Plog, u8 Scell_log, u8 *stab) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/net/
H A Dred.h47 qth_min - bytes (should be < qth_max/2)
48 qth_max - bytes (should be at least 2*qth_min and less limit)
54 max_P = (qth_max-qth_min)/2^Plog;
56 F.e. if qth_max=128K and qth_min=32K, then Plog=22
105 u32 qth_min; /* Min avg length threshold: A scaled */ member in struct:red_parms
129 u32 qth_min, u32 qth_max, u8 Wlog, u8 Plog,
139 p->qth_min = qth_min << Wlog;
262 max_P = (qth_max-qth_min)/2^Plog; two lines
265 max_P*(qavg - qth_min)/(qth_ma
128 red_set_parms(struct red_parms *p, u32 qth_min, u32 qth_max, u8 Wlog, u8 Plog, u8 Scell_log, u8 *stab) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iproute2/tc/
H A Dq_red.c61 if (get_size(&opt.qth_min, *argv)) {
121 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt) {
126 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
133 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
180 sprint_size(qopt->qth_min, b2),
H A Dq_gred.c146 if (get_size(&opt.qth_min, *argv)) {
219 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt ||
226 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
234 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
300 sprint_size(qopt->qth_min, b2),
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/iproute2/tc/
H A Dq_red.c61 if (get_size(&opt.qth_min, *argv)) {
121 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt) {
126 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
133 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
180 sprint_size(qopt->qth_min, b2),
H A Dq_gred.c146 if (get_size(&opt.qth_min, *argv)) {
219 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt ||
226 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
234 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
300 sprint_size(qopt->qth_min, b2),
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/iproute2/tc/
H A Dq_red.c61 if (get_size(&opt.qth_min, *argv)) {
121 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt) {
126 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
133 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
180 sprint_size(qopt->qth_min, b2),
H A Dq_gred.c146 if (get_size(&opt.qth_min, *argv)) {
219 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt ||
226 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
234 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
300 sprint_size(qopt->qth_min, b2),
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iproute2-3.x/include/linux/
H A Dpkt_sched.h221 __u32 qth_min; /* Min average length threshold (bytes) */ member in struct:tc_red_qopt
224 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
254 __u32 qth_min; /* Min average length threshold (bytes) */ member in struct:tc_gred_qopt
264 __u8 Plog; /* log(P_max/(qth_max-qth_min)) */
293 __u32 qth_min; /* Min average threshold (packets) */ member in struct:tc_choke_qopt
296 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/net/sched/
H A Dsch_red.c209 red_set_parms(&q->parms, ctl->qth_min, ctl->qth_max, ctl->Wlog,
235 .qth_min = q->parms.qth_min >> q->parms.Wlog,
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/net/sched/
H A Dsch_red.c209 red_set_parms(&q->parms, ctl->qth_min, ctl->qth_max, ctl->Wlog,
235 .qth_min = q->parms.qth_min >> q->parms.Wlog,
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/iproute2-3.x/include/linux/
H A Dpkt_sched.h221 __u32 qth_min; /* Min average length threshold (bytes) */ member in struct:tc_red_qopt
224 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
254 __u32 qth_min; /* Min average length threshold (bytes) */ member in struct:tc_gred_qopt
264 __u8 Plog; /* log(P_max/(qth_max-qth_min)) */
293 __u32 qth_min; /* Min average threshold (packets) */ member in struct:tc_choke_qopt
296 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/iproute2-3.x/include/linux/
H A Dpkt_sched.h221 __u32 qth_min; /* Min average length threshold (bytes) */ member in struct:tc_red_qopt
224 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
254 __u32 qth_min; /* Min average length threshold (bytes) */ member in struct:tc_gred_qopt
264 __u8 Plog; /* log(P_max/(qth_max-qth_min)) */
293 __u32 qth_min; /* Min average threshold (packets) */ member in struct:tc_choke_qopt
296 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iproute2/include/linux/
H A Dpkt_sched.h196 __u32 qth_min; /* Min average length threshold (bytes) */ member in struct:tc_red_qopt
199 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
232 __u32 qth_min; /* Min average length threshold (bytes) */ member in struct:tc_gred_qopt
242 __u8 Plog; /* log(P_max/(qth_max-qth_min)) */
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/linux/
H A Dpkt_sched.h191 __u32 qth_min; /* Min average length threshold (bytes) */ member in struct:tc_red_qopt
194 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
224 __u32 qth_min; /* Min average length threshold (bytes) */ member in struct:tc_gred_qopt
234 __u8 Plog; /* log(P_max/(qth_max-qth_min)) */
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/linux/
H A Dpkt_sched.h191 __u32 qth_min; /* Min average length threshold (bytes) */ member in struct:tc_red_qopt
194 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
224 __u32 qth_min; /* Min average length threshold (bytes) */ member in struct:tc_gred_qopt
234 __u8 Plog; /* log(P_max/(qth_max-qth_min)) */

Completed in 113 milliseconds

12