Searched defs:minburst (Results 1 - 2 of 2) sorted by relevance

/external/iproute2/tc/
H A Dtc_cbq.c45 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);
44 tc_cbq_calc_offtime(unsigned bndw, unsigned rate, unsigned avpkt, int ewma_log, unsigned minburst) argument
H A Dq_cbq.c30 fprintf(stderr, " [ minburst PKTS ] [ bounded ] [ isolated ]\n");
194 unsigned minburst=0, maxburst=0; local
225 } else if (matches(*argv, "minburst") == 0) {
227 if (get_u32(&minburst, *argv, 0)) {
228 explain1("minburst");
375 fprintf(stderr, "CBQ: avpkt is required for max/minburst.\n");
379 fprintf(stderr, "CBQ: bandwidth&rate are required for max/minburst.\n");
403 lss.offtime = tc_cbq_calc_offtime(bndw, r.rate, lss.avpkt, ewma_log, minburst);

Completed in 274 milliseconds