[ovs-dev] [PATCH] tunneling: Avoid recirculation on datapath by computing the recirculate actions at translate time.

2017-03-28 Thread Sugesh Chandran
Openvswitch datapath recirculates packets for tunneling, i.e. the incoming packets are encapsulated at first pass. Further actions are applied on encapsulated packets on the second pass after recirculating. The proposed patch compute and append the post tunnel actions at the time of translation its

Re: [ovs-dev] [PATCH 2/2] conntrack: Add formatting support for IGMP, DCCP, and UDPLITE.

2017-03-28 Thread Jarno Rajahalme
> On Mar 28, 2017, at 3:17 PM, Joe Stringer wrote: > > On 28 March 2017 at 13:43, Jarno Rajahalme wrote: >> Print names for protocols that are supported by (Linux) conntrack >> (DCCP, UDPLITE) and IGMP, which has been seen in logs. >> >> Signed-off-by: Jarno Rajahalme > > Acked-by: Joe Strin

Re: [ovs-dev] [PATCH v2 3/7] dpif-netlink: code to create/destroy tunnel ports via rtnetlink

2017-03-28 Thread Joe Stringer
On 28 March 2017 at 15:44, Eric Garver wrote: > On Mon, Mar 27, 2017 at 06:07:39PM -0700, Joe Stringer wrote: >> On 16 March 2017 at 15:10, Eric Garver wrote: >> > In order to be able to add those tunnels, we need to add code to create >> > the tunnels and add them as NETDEV vports. And when ther

Re: [ovs-dev] [PATCH v2 3/7] dpif-netlink: code to create/destroy tunnel ports via rtnetlink

2017-03-28 Thread Eric Garver
On Mon, Mar 27, 2017 at 06:07:39PM -0700, Joe Stringer wrote: > On 16 March 2017 at 15:10, Eric Garver wrote: > > In order to be able to add those tunnels, we need to add code to create > > the tunnels and add them as NETDEV vports. And when there is no support > > to create them, we need to fallb

Re: [ovs-dev] [PATCH v2 0/7] create tunnel devices using rtnetlink interface

2017-03-28 Thread Eric Garver
On Mon, Mar 27, 2017 at 06:19:02PM -0700, Joe Stringer wrote: > On 16 March 2017 at 15:10, Eric Garver wrote: > > This series adds support for the creation of tunnels using the rtnetlink > > interface. This will open the possibility for new features and flags on > > those > > vports without the n

Re: [ovs-dev] [PATCH 1/2] netlink-conntrack: Change unsupported IPPROTO log to debug.

2017-03-28 Thread Joe Stringer
On 28 March 2017 at 13:43, Jarno Rajahalme wrote: > No point littering the logs with messages on an unsupported protocol, > so change the log to debug level. > > Signed-off-by: Jarno Rajahalme Acked-by: Joe Stringer ___ dev mailing list d...@openvswit

Re: [ovs-dev] [PATCH 2/2] conntrack: Add formatting support for IGMP, DCCP, and UDPLITE.

2017-03-28 Thread Joe Stringer
On 28 March 2017 at 13:43, Jarno Rajahalme wrote: > Print names for protocols that are supported by (Linux) conntrack > (DCCP, UDPLITE) and IGMP, which has been seen in logs. > > Signed-off-by: Jarno Rajahalme Acked-by: Joe Stringer ___ dev mailing li

[ovs-dev] [PATCH 2/2] conntrack: Add formatting support for IGMP, DCCP, and UDPLITE.

2017-03-28 Thread Jarno Rajahalme
Print names for protocols that are supported by (Linux) conntrack (DCCP, UDPLITE) and IGMP, which has been seen in logs. Signed-off-by: Jarno Rajahalme --- lib/ct-dpif.c | 3 +++ lib/packets.h | 12 2 files changed, 15 insertions(+) diff --git a/lib/ct-dpif.c b/lib/ct-dpif.c index

[ovs-dev] [PATCH 1/2] netlink-conntrack: Change unsupported IPPROTO log to debug.

2017-03-28 Thread Jarno Rajahalme
No point littering the logs with messages on an unsupported protocol, so change the log to debug level. Signed-off-by: Jarno Rajahalme --- lib/netlink-conntrack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/netlink-conntrack.c b/lib/netlink-conntrack.c index 8b82d

Re: [ovs-dev] [PATCH v5 1/3] ovn: Fix options:router-port in Gratuitous ARP tests

2017-03-28 Thread Guru Shetty
On 27 March 2017 at 18:34, Mickey Spiegel wrote: > In two of the Gratuitous ARP tests, "options:router-port" > is not set correctly. This does not currently affect > validity of the tests since the next line resets > "options:router-port" to the correct value. > > Reported-by: Guruchuran Shetty

[ovs-dev] Linkedin + 11 Temas

2017-03-28 Thread Calendario del mes de Abril
Estimado Cliente: Le hacemos llegar la programación de Abril para que decida los temas que necesita usted y su equipo de trabajo. - Fórmulas y Atajos para el Manejo Óptimo de Excel -5 de abril - Prevención de Riesgos Psicosociales -6 de abril - Reclutamiento 3.0. Objetivos y Ventajas -7 de abril

[ovs-dev] [PATCH] ovn-nbctl: include db connection options in help

2017-03-28 Thread Lance Richardson
Include db connection options in help text. Signed-off-by: Lance Richardson --- ovn/utilities/ovn-nbctl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ovn/utilities/ovn-nbctl.c b/ovn/utilities/ovn-nbctl.c index 900b088..ebb9349 100644 --- a/ovn/utilities/ovn-nbctl.c +++ b/ovn/utilities/ov

[ovs-dev] [PATCH] ovn-controller: enable ssl config via local ovsdb

2017-03-28 Thread Lance Richardson
Allow ovn-controller to use SSL certificate and key configuration from local ovsdb. With this change, SSL configuration from the vswitchd database will be used if present, otherwise configuration can still be specified from the command line. If SSL configuration is present in both locations, the c

Re: [ovs-dev] [PATCH v3] netdev-dpdk: fix ifindex assignment for DPDK ports

2017-03-28 Thread Lal, PrzemyslawX
Hi, Please ignore this message. Corrected version of this patch is posted here: https://mail.openvswitch.org/pipermail/ovs-dev/2017-March/330263.html Sorry for confusion. Best Regards, Przemyslaw Lal In current implementation port_id is used as an ifindex for all netdev-dpdk interfaces. Fo

[ovs-dev] [PATCH v4] netdev-dpdk: fix ifindex assignment for DPDK ports

2017-03-28 Thread Przemyslaw Lal
In current implementation port_id is used as an ifindex for all netdev-dpdk interfaces. For physical DPDK interfaces using port_id as ifindex causes that '0' is set as ifindex for 'dpdk0' interface, '1' for 'dpdk1' and so on. For the DPDK vHost interfaces ifindexes are not even assigned (0 is used

[ovs-dev] [PATCH v3] netdev-dpdk: fix ifindex assignment for DPDK ports

2017-03-28 Thread Przemyslaw Lal
In current implementation port_id is used as an ifindex for all netdev-dpdk interfaces. For physical DPDK interfaces using port_id as ifindex causes that '0' is set as ifindex for 'dpdk0' interface, '1' for 'dpdk1' and so on. For the DPDK vHost interfaces ifindexes are not even assigned (0 is used