Home | History | Annotate | Download | only in libaltq

Lines Matching defs:maxburst

174 	u_int	maxburst = 0;		/* 0 means default */
242 } else if (EQUAL(*argv, "maxburst")) {
245 maxburst = strtoul(*argv, NULL, 0);
300 maxdelay, maxburst, minburst,
329 u_int maxdelay, u_int maxburst, u_int minburst,
370 maxdelay, maxburst, minburst,
386 maxdelay, maxburst, minburst, av_pkt_size,
406 u_int maxdelay, u_int maxburst, u_int minburst,
419 maxdelay, maxburst, minburst,
524 u_int maxdelay, u_int maxburst, u_int minburst,
590 cbq_clinfo->maxburst = maxburst;
599 bandwidth, maxdelay, maxburst, minburst,
672 u_int maxdelay, u_int maxburst, u_int minburst,
715 cbq_clinfo->maxburst = maxburst;
724 bandwidth, maxdelay, maxburst, minburst,
769 uint64_t bandwidth, u_int maxdelay, u_int maxburst,
803 if (maxburst == 0) { /* use default */
805 maxburst = 4;
807 maxburst = 16;
811 if (minburst > maxburst)
812 minburst = maxburst;
817 "cbq_flowspec: maxburst=%d,minburst=%d,pkt_size=%d",
818 maxburst, minburst, av_pkt_size);
825 if (maxburst * packet_time < 20000) {
827 "warning: maxburst smaller than timer granularity!");
829 " maxburst=%d, packet_time=%d [us]",
830 maxburst, packet_time);
833 gton = pow(g, (double)maxburst);
881 if ((u_int)maxq < maxburst)
883 "warning: maxq (%d) is smaller than maxburst(%d)",
884 (int)maxq, maxburst);