| Submitter | stephen hemminger |
|---|---|
| Date | May 15, 2010, 12:38 a.m. |
| Message ID | <20100514173859.30a85875@nehalam> |
| Download | mbox | patch |
| Permalink | /patch/52694/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
Patch
--- a/net/sched/sch_tbf.c 2010-05-14 15:04:56.297095729 -0700 +++ b/net/sched/sch_tbf.c 2010-05-14 15:09:57.296733332 -0700 @@ -273,7 +273,11 @@ static int tbf_change(struct Qdisc* sch, if (max_size < 0) goto done; - if (qopt->limit > 0) { + if (q->qdisc != &noop_qdisc) { + err = fifo_set_limit(q->qdisc, qopt->limit); + if (err) + goto done; + } else if (qopt->limit > 0) { child = fifo_create_dflt(sch, &bfifo_qdisc_ops, qopt->limit); if (IS_ERR(child)) { err = PTR_ERR(child);
Several netem users use TBF for rate control. But every time the parameters of TBF are changed it destroys the child qdisc, requiring reconfigation. Better to just keep child qdisc and just notify it of changed limit. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html