netdev-linux: Make htb quantum always no less than mtu.
authorAlex Wang <alexw@nicira.com>
Fri, 27 Mar 2015 18:34:53 +0000 (11:34 -0700)
committerAlex Wang <alexw@nicira.com>
Fri, 27 Mar 2015 20:48:39 +0000 (13:48 -0700)
commit4f631ccd515ffb95dbe3f5c22d74b01c64a7d9b8
tree599a178f77e1fe83991b6e112a6464ab6211a18e
parent618f44f7a406d6c3e90110420a7fd183d40f1bff
netdev-linux: Make htb quantum always no less than mtu.

Currently, ovs uses hardcoded rate2quantum = 10 for each htb qdisc.
When qdisc class's rate is small, the resulting quantum (calculated
by min_rate / rate2quantum) will be smaller than MTU.  This is not
recommended and tc will keep complaining the following in syslog.

localhost kernel: HTB: quantum of class 10003 is small. Consider r2q change.
localhost kernel: HTB: quantum of class 10004 is small. Consider r2q change.
localhost kernel: HTB: quantum of class 10005 is small. Consider r2q change.
localhost kernel: HTB: quantum of class 10006 is small. Consider r2q change.

To fix the issue, this commit makes ovs always use htb quantum no less
than the MTU.

Signed-off-by: Alex Wang <alexw@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
lib/netdev-linux.c