Re: [ovs-dev] [PATCH ovs V5 00/24] Introducing HW offload support for openvswitch

2017-04-05 Thread Joe Stringer
On 4 April 2017 at 21:18, Roi Dayan wrote: > > > On 04/04/2017 23:53, Joe Stringer wrote: >> >> On 3 April 2017 at 10:53, Joe Stringer wrote: >>> >>> On 3 April 2017 at 03:27, Roi Dayan wrote: On 29/03/2017 20:13, Joe

Re: [ovs-dev] [PATCH v2] ovsdb: Expose openvswitch run directory through ovsdb

2017-04-05 Thread Robert Wojciechowicz
On Thu, Mar 09, 2017 at 01:59:51PM +, Robert Wojciechowicz wrote: > When using vhost-user client or server mode with openstack, > neutron needs to be able to construct the fully qualified socket path > and pass it to nova. > While the relative vhost-user socket directory is exposed via > the

Re: [ovs-dev] [PATCH ovs V6 00/24] Introducing HW offload support for openvswitch

2017-04-05 Thread Paul Blakey
On 04/04/2017 21:40, Joe Stringer wrote: On 4 April 2017 at 06:21, Paul Blakey wrote: On 03/04/2017 21:00, Joe Stringer wrote: On 1 April 2017 at 20:50, Roi Dayan wrote: On 31/03/2017 01:11, Marcelo Ricardo Leitner wrote: On Thu, Mar 30,

Re: [ovs-dev] [PATCH v2] netdev-dpdk: Create separate memory pool for each port

2017-04-05 Thread Kevin Traynor
On 02/24/2017 11:27 AM, Robert Wojciechowicz wrote: > Since it's possible to delete memory pool in DPDK > we can try to estimate better required memory size > when port is reconfigured, e.g. with different number > of rx queues. > Hi Robert, The patch does not apply on master. I think this is

Re: [ovs-dev] [PATCH 3/3] netdev-dpdk: Use uint8_t for port_id.

2017-04-05 Thread Darrell Ball
On 4/3/17, 8:04 AM, "ovs-dev-boun...@openvswitch.org on behalf of Ilya Maximets" wrote: Currently, signed integer is used for 'port_id' variable and '-1' as identifier of bad or uninitialized 'port_id'.

Re: [ovs-dev] [PATCH] m4: Add hard requirements for python in "configure"

2017-04-05 Thread Ben Pfaff
On Wed, Mar 29, 2017 at 01:49:42PM +0200, Timothy Redaelli wrote: > Since Python 2.7 and python-six are needed to build Open vSwitch, > ./configure should return an error if they are missing or if they are too old > > Signed-off-by: Timothy Redaelli Thanks for the patch.

[ovs-dev] [PATCH] Documentation: Add a new topic document about ofproto/trace

2017-04-05 Thread Timothy Redaelli
Add a new document "Tracing packets inside Open vSwitch" that explains how to use "ofproto/trace" to debug flows inside the vswitch. Signed-off-by: Timothy Redaelli --- Documentation/topics/index.rst | 1 + Documentation/topics/tracing.rst | 128

Re: [ovs-dev] [PATCH] lib: Fix typos in db-ctl-base.{man,xml}

2017-04-05 Thread Ben Pfaff
On Mon, Apr 03, 2017 at 12:17:36PM +0200, Timothy Redaelli wrote: > s/exmaple/example/ > > Signed-off-by: Timothy Redaelli Thanks, applied to master. ___ dev mailing list d...@openvswitch.org

Re: [ovs-dev] [PATCH] Documentation: Add a new topic document about ofproto/trace

2017-04-05 Thread Ben Pfaff
On Wed, Apr 05, 2017 at 01:10:47PM +0200, Timothy Redaelli wrote: > Add a new document "Tracing packets inside Open vSwitch" that explains > how to use "ofproto/trace" to debug flows inside the vswitch. > > Signed-off-by: Timothy Redaelli Thank you for working on the