Re: [ovs-dev] [PATCH v2] ovn: OVN Support QoS meter

2017-11-13 Thread Guoshuai Li
On Wed, Sep 20, 2017 at 07:52:34PM +0800, Guoshuai Li wrote: ovn-northd modify: add bandwidth column in NB's QOS table. add QOS_METER stages in Logical switch ingress/egress. add set_meter() action in SB's LFlow table. ovn-controller modify: add meter_table for meter action process openflow

Re: [ovs-dev] [PATCH v2] ovn: OVN Support QoS meter

2017-11-03 Thread Ben Pfaff
On Wed, Sep 20, 2017 at 07:52:34PM +0800, Guoshuai Li wrote: > ovn-northd modify: > add bandwidth column in NB's QOS table. > add QOS_METER stages in Logical switch ingress/egress. > add set_meter() action in SB's LFlow table. > > ovn-controller modify: > add meter_table for meter action process

Re: [ovs-dev] [PATCH v2] ovn: OVN Support QoS meter

2017-09-21 Thread Guoshuai Li
Userspace switch meter implementation has been added to the master and 2.8 https://github.com/openvswitch/ovs/blob/master/lib/dpif-netdev.c#L4262 But kernel meter not implementaton: https://github.com/openvswitch/ovs/blob/master/lib/dpif-netlink.c#L2907 on 2017/9/21 19:03, Miguel Angel Ajo

Re: [ovs-dev] [PATCH v2] ovn: OVN Support QoS meter

2017-09-21 Thread Miguel Angel Ajo Pelayo
I thought we didn't have meters yet in OvS switch implementation (beyond openflow protocol support) as per: http://docs.openvswitch.org/en/latest/faq/qos/ Has this changed in master? On Wed, Sep 20, 2017 at 1:52 PM, Guoshuai Li wrote: > ovn-northd modify: > add bandwidth

[ovs-dev] [PATCH v2] ovn: OVN Support QoS meter

2017-09-20 Thread Guoshuai Li
ovn-northd modify: add bandwidth column in NB's QOS table. add QOS_METER stages in Logical switch ingress/egress. add set_meter() action in SB's LFlow table. ovn-controller modify: add meter_table for meter action process openflow meter table. This feature is only supported in DPDK. --- v2: Fix