Lines Matching full:bandwidth
34 * This node permits simple traffic shaping by emulating bandwidth
110 if (hinfo->cfg.wfq && hinfo->cfg.bandwidth) { \
113 8000000 / hinfo->cfg.bandwidth; \
360 if (cfg->upstream.bandwidth ==
361 cfg->downstream.bandwidth) {
362 cfg->bandwidth = cfg->upstream.bandwidth;
363 cfg->upstream.bandwidth = 0;
364 cfg->downstream.bandwidth = 0;
366 cfg->bandwidth = 0;
380 if (cfg->bandwidth == -1) {
381 priv->upper.cfg.bandwidth = 0;
382 priv->lower.cfg.bandwidth = 0;
384 } else if (cfg->bandwidth >= 100 &&
385 cfg->bandwidth <= 1000000000) {
386 priv->upper.cfg.bandwidth = cfg->bandwidth;
387 priv->lower.cfg.bandwidth = cfg->bandwidth;
388 if (cfg->bandwidth >= 10000000)
543 if (new->bandwidth == -1) {
544 current->bandwidth = 0;
548 } else if (new->bandwidth >= 100 && new->bandwidth <= 1000000000)
549 current->bandwidth = new->bandwidth;
551 if (current->bandwidth | priv->delay |
602 * bandwidth, delay, BER or duplication probability is
725 * 1) Try to extract the frame from the inbound (bandwidth) queue;
729 * 4) Loop to 2) until bandwidth quota for this timeslice is reached, or
753 /* Bandwidth queue processing */
806 if (hinfo->cfg.bandwidth) {
809 8000000 / hinfo->cfg.bandwidth;