HomeSort by relevance Sort by last modified time
    Searched refs:minburst (Results 1 - 3 of 3) sorted by null

  /external/iproute2/tc/
tc_cbq.h 7 int ewma_log, unsigned minburst);
tc_cbq.c 45 int ewma_log, unsigned minburst)
50 if (minburst == 0)
52 if (minburst == 1)
53 offtime *= pow(g, -(double)minburst) - 1;
55 offtime *= 1 + (pow(g, -(double)(minburst-1)) - 1)/(1-g);
q_cbq.c 30 fprintf(stderr, " [ minburst PKTS ] [ bounded ] [ isolated ]\n");
195 unsigned minburst=0, maxburst=0; local
226 } else if (matches(*argv, "minburst") == 0) {
228 if (get_u32(&minburst, *argv, 0)) {
229 explain1("minburst");
376 fprintf(stderr, "CBQ: avpkt is required for max/minburst.\n");
380 fprintf(stderr, "CBQ: bandwidth&rate are required for max/minburst.\n");
404 lss.offtime = tc_cbq_calc_offtime(bndw, r.rate, lss.avpkt, ewma_log, minburst);

Completed in 92 milliseconds