Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | rename sch -> qdisc | Thomas Graf | 2011-03-21 | 1 | -433/+0 |
| | |||||
* | Unified TC API | Thomas Graf | 2011-03-21 | 1 | -202/+168 |
| | | | | | | | | Finally got rid of all the qdisc/class/cls code duplication in the tc module API. The API takes care of allocation/freeing the tc object specific data. I hope I got it right this time. | ||||
* | provide function to retrieve htb rate | Thomas Graf | 2011-03-17 | 1 | -0/+9 |
| | |||||
* | Rename nl_get_hz() to nl_get_user_hz() to indicate it's not the in-kernel HZ ↵ | Thomas Graf | 2010-11-17 | 1 | -2/+2 |
| | | | | value | ||||
* | Unified TC attributes interface | Thomas Graf | 2010-10-26 | 1 | -107/+29 |
| | | | | | | | | | | | | | | | | | | | | | | | | So far all common tc atttributes were accessed via specific functions, i.e. rtnl_class_set_parent(), rtnl_qdisc_set_parent(), rtnl_cls_set_parent() which implied a lot of code duplication. Since all tc objects are derived from struct rtnl_tc and these common attributes are already stored in there this patch removes all type specific functions and makes rtnl_tc_* attribute functions public. rtnl_qdisc_set_parent(qdisc, 10); becomes: rtnl_tc_set_parent((struct rtnl_tc *) qdisc, 10); This patch also adds the following new attributes to tc objects therefore removing them as tc specific attributes: - mtu - mpu - overhead This allows for the rate table calculations to be unified as well taking into account the new kernel behavior to take care of overhead automatically. | ||||
* | Update include/linux header copies | Thomas Graf | 2010-10-21 | 1 | -18/+8 |
| | | | | | Adapts ratespec code taking into account that the kernel now takes care of overhead calculations. | ||||
* | HTB: Append TCA_OPTIONS even if no options are set | Thomas Graf | 2010-10-19 | 1 | -7/+7 |
| | | | | | The kernel requires the TCA_OPTIONS{TCA_HTB_INIT} attribute to be present even if the default values are to be used. | ||||
* | Remove old line counting while dumping | Thomas Graf | 2008-05-23 | 1 | -33/+26 |
| | |||||
* | Initial import | Thomas Graf | 2007-09-14 | 1 | -0/+553 |