Lines Matching refs:bandwidth

173 			printf("bandwidth %u%% ", bw->bw_percent);
175 printf("bandwidth %s ", rate2str((double)a->ifbandwidth));
197 printf("bandwidth %u%% ", bw->bw_percent);
199 printf("bandwidth %s ", rate2str((double)a->bandwidth));
231 fprintf(stderr, "interface %s does not know its bandwidth, "
232 "please specify an absolute bandwidth\n",
330 pa->bandwidth = eval_bwspec(bw,
331 parent == NULL ? 0 : parent->bandwidth);
333 if (pa->bandwidth > pa->ifbandwidth) {
334 fprintf(stderr, "bandwidth for %s higher than "
338 /* check the sum of the child bandwidth is under parent's */
340 if (pa->bandwidth > parent->bandwidth) {
341 warnx("bandwidth for %s higher than parent",
352 bwsum += altq->bandwidth;
354 bwsum += pa->bandwidth;
355 if (bwsum > parent->bandwidth) {
356 warnx("the sum of the child bandwidth higher"
362 if (eval_queue_opts(pa, opts, parent == NULL? 0 : parent->bandwidth))
439 if (pa->bandwidth == 0)
442 f = ((double) pa->bandwidth / (double) pa->ifbandwidth);
451 * (bandwidth < 6Kbps when max_pkt_size=1500)
453 if (pa->bandwidth != 0 && (pf->opts & PF_OPT_QUIET) == 0) {
454 warnx("queue bandwidth must be larger than %s",
679 /* if link_share is not specified, use bandwidth */
681 opts->lssc_m2 = pa->bandwidth;
700 * should not exceed 80% of the interface bandwidth. 20% is reserved
701 * not to over-commit the actual interface bandwidth.
704 * for the upper-limit service curve, the assigned bandwidth should
705 * be smaller than the interface bandwidth, and the upper-limit should
751 "bandwidth (%s)", rate2str((double)sc.m2));
777 warnx("upper-limit larger than interface bandwidth");
852 (opts->lssc_m2 != 0 && (opts->lssc_m2 != a->bandwidth ||
868 if (opts->lssc_m2 != 0 && (opts->lssc_m2 != a->bandwidth ||