[ovs-dev] Support for classless QoS configuration

2015-03-02 Thread impClaw
I have implemented support for classless qdiscs fq_codel, codel, sfq and red in open vswitch. However, there is a line of code in 'vswitchd/bridge.c' that forbids configuring a qos without at least one queue (qos->n_queues < 1): 3671 if (!qos || qos->type[0] == '\0' || qos->n_queues < 1) { Wh

Re: [ovs-dev] Support for classless QoS configuration

2015-03-03 Thread impClaw
te my changes to the Open vSwitch project. 2015-03-02 17:28 GMT+01:00 Ben Pfaff : > On Mon, Mar 02, 2015 at 04:04:30PM +0100, impClaw wrote: >> I have implemented support for classless qdiscs fq_codel, codel, sfq >> and red in open vswitch. However, there is a line of code in >>