From: Eric Dumazet Date: Thu, 1 Dec 2011 14:25:59 +0000 (+0100) Subject: red: make burst optional X-Git-Url: https://rtime.felk.cvut.cz/gitweb/lisovros/iproute2_canprio.git/commitdiff_plain/ab15aeacf5a106cfb8e72cd6760e8cf134161ceb red: make burst optional Documentation advises to set burst to (min+min+max)/(3*avpkt) Let tc do this automatically if user doesnt provide burst himself. Signed-off-by: Eric Dumazet --- diff --git a/tc/q_choke.c b/tc/q_choke.c index 04a864f..7816f62 100644 --- a/tc/q_choke.c +++ b/tc/q_choke.c @@ -133,7 +133,7 @@ static int choke_parse_opt(struct qdisc_util *qu, int argc, char **argv, return -1; } if (wlog >= 10) - fprintf(stderr, "CHOKE: WARNING. Burst %d seems to be to large.\n", burst); + fprintf(stderr, "CHOKE: WARNING. Burst %d seems to be too large.\n", burst); opt.Wlog = wlog; wlog = tc_red_eval_P(opt.qth_min*avpkt, opt.qth_max*avpkt, probability); diff --git a/tc/q_gred.c b/tc/q_gred.c index 59651d3..5fa0cc7 100644 --- a/tc/q_gred.c +++ b/tc/q_gred.c @@ -215,19 +215,23 @@ static int gred_parse_opt(struct qdisc_util *qu, int argc, char **argv, struct n if (rate == 0) get_rate(&rate, "10Mbit"); - if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt || + if (!opt.qth_min || !opt.qth_max || !opt.limit || !avpkt || (opt.DP<0)) { - fprintf(stderr, "Required parameter (min, max, burst, limit, " + fprintf(stderr, "Required parameter (min, max, limit, " "avpkt, DP) is missing\n"); return -1; } + if (!burst) { + burst = (2 * opt.qth_min + opt.qth_max) / (3 * avpkt); + fprintf(stderr, "GRED: set burst to %u\n", burst); + } if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) { fprintf(stderr, "GRED: failed to calculate EWMA constant.\n"); return -1; } if (wlog >= 10) - fprintf(stderr, "GRED: WARNING. Burst %d seems to be to " + fprintf(stderr, "GRED: WARNING. Burst %d seems to be too " "large.\n", burst); opt.Wlog = wlog; if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) { diff --git a/tc/q_red.c b/tc/q_red.c index 4b1b889..6e58d7a 100644 --- a/tc/q_red.c +++ b/tc/q_red.c @@ -104,17 +104,20 @@ static int red_parse_opt(struct qdisc_util *qu, int argc, char **argv, struct nl if (rate == 0) get_rate(&rate, "10Mbit"); - if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt) { - fprintf(stderr, "Required parameter (min, max, burst, limit, avpkt) is missing\n"); + if (!opt.qth_min || !opt.qth_max || !opt.limit || !avpkt) { + fprintf(stderr, "RED: Required parameter (min, max, limit, avpkt) is missing\n"); return -1; } - + if (!burst) { + burst = (2 * opt.qth_min + opt.qth_max) / (3 * avpkt); + fprintf(stderr, "RED: set burst to %u\n", burst); + } if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) { fprintf(stderr, "RED: failed to calculate EWMA constant.\n"); return -1; } if (wlog >= 10) - fprintf(stderr, "RED: WARNING. Burst %d seems to be to large.\n", burst); + fprintf(stderr, "RED: WARNING. Burst %d seems to be too large.\n", burst); opt.Wlog = wlog; if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) { fprintf(stderr, "RED: failed to calculate probability.\n");