[ovs-git] [openvswitch/ovs] 4f631c: netdev-linux: Make htb quantum always no less than...

GitHub noreply at github.com
Fri Mar 27 20:47:13 UTC 2015


  Branch: refs/heads/master
  Home:   https://github.com/openvswitch/ovs
  Commit: 4f631ccd515ffb95dbe3f5c22d74b01c64a7d9b8
      https://github.com/openvswitch/ovs/commit/4f631ccd515ffb95dbe3f5c22d74b01c64a7d9b8
  Author: Alex Wang <alexw at nicira.com>
  Date:   2015-03-27 (Fri, 27 Mar 2015)

  Changed paths:
    M lib/netdev-linux.c

  Log Message:
  -----------
  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 at nicira.com>
Acked-by: Ben Pfaff <blp at nicira.com>




More information about the git mailing list