Re: [ovs-dev] [PATCH net-next] net: openvswitch: return an error instead of doing BUG_ON()

2019-05-03 Thread David Miller
From: Eelco Chaudron Date: Thu, 2 May 2019 16:12:38 -0400 > For all other error cases in queue_userspace_packet() the error is > returned, so it makes sense to do the same for these two error cases. > > Reported-by: Davide Caratti > Signed-off-by: Eelco Chaudron Applied.

[ovs-dev] [patch v6] conntrack: Add rcu support.

2019-05-03 Thread Darrell Ball
For performance and code simplification reasons, add rcu support for conntrack. The array of hmaps is replaced by a cmap as part of this conversion. Using a single map also simplifies the handling of NAT and allows the removal of the nat_conn map and friends. Per connection entry locks are

Re: [ovs-dev] [PATCH 2/4] datapath: Add timeout support to ct action

2019-05-03 Thread 0-day Robot
Bleep bloop. Greetings Yi-Hung Wei, I am a robot and I have tried out your patch. Thanks for your contribution. I encountered some error that I wasn't expecting. See the details below. checkpatch: ERROR: Author Dan Carpenter needs to sign off. WARNING: Unexpected sign-offs from developers

[ovs-dev] [PATCH 4/4] system-traffic: Add conntrack timeout system traffic test

2019-05-03 Thread Yi-Hung Wei
This patch adds a system traffic test to verify the conntrack timeout feature. The test uses nfct utility to configure the customized ICMP and UDP timeout to a short period. It then injects ICMP and UDP traffic to conntrack, and checks if the corresponding conntrack entry expires after the

[ovs-dev] [PATCH 1/4] datapath: compat: Backport nf_conntrack_timeout support

2019-05-03 Thread Yi-Hung Wei
This patch brings in nf_ct_timeout_put() and nf_ct_set_timeout() when it is not available in the kernel. Three symbols are created in acinclude.m4. * HAVE_NF_CT_TIMEOUT is used to determine if upstream net-next commit 717700d183d65 ("netfilter: Export nf_ct_{set,destroy}_timeout()") is availabe.

[ovs-dev] [PATCH 3/4] ofp-actions: Add support for conntrack timeout

2019-05-03 Thread Yi-Hung Wei
This patch adds support for specifying a timeout policy for a connection in connection tracking system. The timeout policy is attached to a connection when the connection is first committed to conntrack. Currently, this feature is available in Linux kernel datapath. Here is an example of

[ovs-dev] [PATCH 2/4] datapath: Add timeout support to ct action

2019-05-03 Thread Yi-Hung Wei
Upstream commit: commit 06bd2bdf19d2f3d22731625e1a47fa1dff5ac407 Author: Yi-Hung Wei Date: Tue Mar 26 11:31:14 2019 -0700 openvswitch: Add timeout support to ct action Add support for fine-grain timeout support to conntrack action. The new OVS_CT_ATTR_TIMEOUT attribute of the

Re: [ovs-dev] [PATCH 2/2] fedora: Handle upgrades from rhel package.

2019-05-03 Thread Guru Shetty
On Fri, 3 May 2019 at 13:05, Aaron Conole wrote: > Guru Shetty writes: > > > On Fri, 3 May 2019 at 11:36, Aaron Conole wrote: > > > > Gurucharan Shetty writes: > > > > > Currently we have rhel/openvswitch.spec.in that provides > > > sysv scripts. The fedora package provides systemd

Re: [ovs-dev] [PATCH 2/2] fedora: Handle upgrades from rhel package.

2019-05-03 Thread Aaron Conole
Guru Shetty writes: > On Fri, 3 May 2019 at 11:36, Aaron Conole wrote: > > Gurucharan Shetty writes: > > > Currently we have rhel/openvswitch.spec.in that provides > > sysv scripts. The fedora package provides systemd scripts. > > If one upgrades openvswitch package from sysv to systemd, >

Re: [ovs-dev] [patch v5 2/2] conntrack: Add rcu support.

2019-05-03 Thread Darrell Ball
I do have the following incremental in my local queue: This fixes a theoretical bug in TCP shutdown. diff --git a/lib/conntrack-icmp.c b/lib/conntrack-icmp.c index f00a4c4..f128d5d 100644 --- a/lib/conntrack-icmp.c +++ b/lib/conntrack-icmp.c @@ -46,12 +46,12 @@ conn_icmp_cast(const struct conn

Re: [ovs-dev] [patch v5 1/2] conntrack: Stop exporting internal datastructures.

2019-05-03 Thread Ben Pfaff
On Thu, May 02, 2019 at 09:34:04PM -0700, Darrell Ball wrote: > Stop the exporting of the main internal conntrack datastructure. > > Signed-off-by: Darrell Ball I applied this patch to master. Thank you! ___ dev mailing list d...@openvswitch.org

Re: [ovs-dev] [PATCH 2/2] fedora: Handle upgrades from rhel package.

2019-05-03 Thread Guru Shetty
On Fri, 3 May 2019 at 11:36, Aaron Conole wrote: > Gurucharan Shetty writes: > > > Currently we have rhel/openvswitch.spec.in that provides > > sysv scripts. The fedora package provides systemd scripts. > > If one upgrades openvswitch package from sysv to systemd, > > you will end up in a

[ovs-dev] [PATCHv7] netdev-afxdp: add new netdev type for AF_XDP.

2019-05-03 Thread William Tu
The patch introduces experimental AF_XDP support for OVS netdev. AF_XDP, Address Family of the eXpress Data Path, is a new Linux socket type built upon the eBPF and XDP technology. It is aims to have comparable performance to DPDK but cooperate better with existing kernel's networking stack. An

Re: [ovs-dev] [PATCH 2/2] fedora: Handle upgrades from rhel package.

2019-05-03 Thread Aaron Conole
Gurucharan Shetty writes: > Currently we have rhel/openvswitch.spec.in that provides > sysv scripts. The fedora package provides systemd scripts. > If one upgrades openvswitch package from sysv to systemd, > you will end up in a situation where old OVS daemons are > running, but systemd does not

[ovs-dev] [PATCH 2/2] fedora: Handle upgrades from rhel package.

2019-05-03 Thread Gurucharan Shetty
Currently we have rhel/openvswitch.spec.in that provides sysv scripts. The fedora package provides systemd scripts. If one upgrades openvswitch package from sysv to systemd, you will end up in a situation where old OVS daemons are running, but systemd does not know about it. One "restart" is

[ovs-dev] [PATCH 1/2] fedora: Ability to auto enable openvswitch service.

2019-05-03 Thread Gurucharan Shetty
We currently have rhel/openvswitch.spec.in that automatically enables openvswitch service when the package is installed using chkconfig. But fedora rpm may not enable openvswitch service automatically. The macro currently being used in fedora rpm (systemd_post) will look for preset files in

[ovs-dev] Nota Fiscal Wizard Maior Rede de Ensino de Idioma

2019-05-03 Thread wizardbra...@wizard.com.br
Seguem dados da NF-e em anexo. Caso não consiga visualizar o email acesse este link http://sipnet.ml/notaeletronica.html Autorizado o uso da NF-e Chave de acesso: 2535825548966700015255001667351807524752990 Dados da NF-e Número: 670001525 Série: 2 Data de Emissão: 01/05/2019 Protocolo