Re: [ovs-dev] [PATCH v5 2/3] ovsdb-idl: Avoid inconsistent IDL state with OVSDB_MONITOR_V3.

2020-05-28 Thread Han Zhou
On Wed, May 27, 2020 at 2:03 AM Dumitru Ceara wrote: > > On 5/27/20 3:41 AM, Han Zhou wrote: > > Thanks Dumitru. Please see my comments below. > > > > On Thu, May 7, 2020 at 4:21 AM Dumitru Ceara > > wrote: > >> > >> Assuming an ovsdb client connected to a database

Re: [ovs-dev] [PATCH v5 3/3] ovsdb-idl: Force IDL retry when missing updates encountered.

2020-05-28 Thread Han Zhou
Hi Dumitru, please see my comments below. On Thu, May 7, 2020 at 4:21 AM Dumitru Ceara wrote: > > Adds a generic recovery mechanism which triggers an IDL retry with fast > resync disabled in case the IDL has detected that it ended up in an > inconsistent state due to other bugs in the

Re: [ovs-dev] [PATCH ovn v8 1/8] ovn-controller: Store the local port bindings in the runtime data I-P state.

2020-05-28 Thread Numan Siddique
On Wed, May 27, 2020 at 9:15 PM Dumitru Ceara wrote: > On 5/26/20 2:28 PM, num...@ovn.org wrote: > > From: Numan Siddique > > > > This patch adds a new data structure - 'struct local_binding' which > represents > > a probable local port binding. A new object of this structure is creared > for >

Re: [ovs-dev] [PATCH] netdev-offload-dpdk: Support offload of VLAN PUSH/POP actions

2020-05-28 Thread Eli Britstein
On 5/24/2020 10:13 AM, Sriharsha Basavapatna wrote: Parse VLAN PUSH/POP OVS datapath actions and add respective RTE actions. Please add: - Parsing prints of those new actions (dump_flow_action) - NEWS - Documentation/howto/dpdk.rst Signed-off-by: Sriharsha Basavapatna ---

Re: [ovs-dev] [RFC v2 PATCH 4/5] dpif-netdev: Skip encap action during datapath execution

2020-05-28 Thread Sriharsha Basavapatna via dev
On Tue, May 26, 2020 at 7:12 PM Eli Britstein wrote: > > > On 5/18/2020 10:27 PM, Sriharsha Basavapatna wrote: > > In this patch we check if action processing (apart from OUTPUT action), > > should be skipped for a given dp_netdev_flow. Specifically, we check if > > the action is TNL_PUSH and if

[ovs-dev] Android Application to Manage your Employees

2020-05-28 Thread Richard
Dear Sir/ Madam, Greetings from Travelize!!! Reaching out as it seems you oversee digital strategy for your Company. I want to Introduce "Travelize" as a Business Management solution that allows you to keep track of your Field Staff. Travelize has a lot to Offer, 1. Remote

Re: [ovs-dev] [RFC v2 PATCH 3/5] dpif-netdev: Support partial-action-offload of VXLAN encap flow

2020-05-28 Thread Sriharsha Basavapatna via dev
On Tue, May 26, 2020 at 7:12 PM Eli Britstein wrote: > > > On 5/18/2020 10:27 PM, Sriharsha Basavapatna wrote: > > In this patch, we support offloading of VXLAN_ENCAP action for a vhost-user > > port (aka "partial-action-offload"). At the time of offloading the flow, we > > determine if the flow

Re: [ovs-dev] [RFC v2 PATCH 1/5] dpif-netdev: Refactor dp_netdev_flow_offload_put()

2020-05-28 Thread Sriharsha Basavapatna via dev
On Tue, May 26, 2020 at 7:12 PM Eli Britstein wrote: > > > On 5/18/2020 10:27 PM, Sriharsha Basavapatna wrote: > > This patch refactors dp_netdev_flow_offload_put() to prepare for > > more changes to support partial action offload, in subsequent patches. > > > > - Add a wrapper function to

Re: [ovs-dev] [PATCH v5 2/3] ovsdb-idl: Avoid inconsistent IDL state with OVSDB_MONITOR_V3.

2020-05-28 Thread Dumitru Ceara
On 5/28/20 8:55 AM, Han Zhou wrote: > > > On Wed, May 27, 2020 at 2:03 AM Dumitru Ceara > wrote: >> >> On 5/27/20 3:41 AM, Han Zhou wrote: >> > Thanks Dumitru. Please see my comments below. >> > >> > On Thu, May 7, 2020 at 4:21 AM Dumitru Ceara

[ovs-dev] [RFC v3 PATCH 5/5] dpif-netdev: Support partial-action-offload of VXLAN encap flow

2020-05-28 Thread Sriharsha Basavapatna via dev
In this patch, we support offloading of VXLAN_ENCAP action for a vhost-user port (aka "partial-action-offload"). At the time of offloading the flow, we determine if the flow can be offloaded to an egress device, if the input port is not offload capable such as a vhost-user port. We then offload

[ovs-dev] [RFC v3 PATCH 1/5] dpif-netdev: Refactor dp_netdev_flow_offload_put()

2020-05-28 Thread Sriharsha Basavapatna via dev
This patch refactors dp_netdev_flow_offload_put() to prepare for changes to support partial action offload, in subsequent patches. - Move mark allocation code into a separate wrapper function, outside of dp_netdev_flow_offload_put() to improve readability and to facilitate more changes in

[ovs-dev] [RFC v3 PATCH 2/5] netdev-dpdk: provide a function to identify dpdk-vhost netdevs

2020-05-28 Thread Sriharsha Basavapatna via dev
This patch adds a function to determine if a given netdev belongs to the dpdk-vhost class, using the netdev_class specific data. Signed-off-by: Sriharsha Basavapatna --- lib/netdev-dpdk.c | 5 + lib/netdev-dpdk.h | 1 + 2 files changed, 6 insertions(+) diff --git a/lib/netdev-dpdk.c

[ovs-dev] [RFC v3 PATCH 0/5] RFC for Partial action offload

2020-05-28 Thread Sriharsha Basavapatna via dev
Hi, This RFC patchset extends the "Partial HW acceleration" mode to offload part of the action processing to HW, instead of offloading just lookup (MARK/RSS), for "vhost-user" ports. This is referred to as "Partial Action Offload". This mode does not require SRIOV/switchdev configuration. In this

[ovs-dev] [RFC v3 PATCH 3/5] dpif-netdev: Skip encap action during datapath execution

2020-05-28 Thread Sriharsha Basavapatna via dev
In this patch we check if action processing (apart from OUTPUT action), should be skipped for a given dp_netdev_flow. Specifically, we check if the action is TNL_PUSH and if it has been offloaded to HW, then we do not push the tunnel header in SW. The datapath only executes the OUTPUT action. The

[ovs-dev] [RFC v3 PATCH 4/5] dpif-netdev: Support flow_get() with partial-action-offload

2020-05-28 Thread Sriharsha Basavapatna via dev
For flows that offload partial actions in egress direction, provide the right netdev to fetch statistics. Signed-off-by: Sriharsha Basavapatna --- lib/dpif-netdev.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/dpif-netdev.c b/lib/dpif-netdev.c index

Re: [ovs-dev] [PATCH v5 3/3] ovsdb-idl: Force IDL retry when missing updates encountered.

2020-05-28 Thread Dumitru Ceara
On 5/28/20 9:08 AM, Han Zhou wrote: > Hi Dumitru, please see my comments below. > > On Thu, May 7, 2020 at 4:21 AM Dumitru Ceara > wrote: >> >> Adds a generic recovery mechanism which triggers an IDL retry with fast >> resync disabled in case the IDL has detected that

Re: [ovs-dev] [PATCH ovn] controller: fix ip buffering with static routes

2020-05-28 Thread Lorenzo Bianconi
> On Fri, May 22, 2020 at 1:19 PM Lorenzo Bianconi < > lorenzo.bianc...@redhat.com> wrote: > > > > Hi Lorenzo, > > > > Hi Ankur, > > > > > > > > Good catch. > > > > > > a. If not already considered, then i think it is a candidate for 20.06 > > > b. Need not be done in this patch, but it will be

Re: [ovs-dev] OVS-DPDK public meeting

2020-05-28 Thread Kevin Traynor
Next meeting June 24th 1600 UTC Attendees: Flavio, Harsha, Marcelo, William, Ilya, Ian, Malvika, Aaron, Ameerm, Eli, Ravi, Roni, John Mangan, Simon, Johann, Ajit, David Minutes -OVS 2.14 feature freeze/release dates (Ian) --

[ovs-dev] [PATCH ovn v9 6/8] ovn-controller: Handle runtime data changes in flow output engine

2020-05-28 Thread numans
From: Numan Siddique In order to handle runtime data changes incrementally, the flow outut runtime data handle should know the changed runtime data. Runtime data now tracks the changed data for any OVS interface and SB port binding changes. The tracked data contains a hmap of tracked datapaths

[ovs-dev] [PATCH branch-2.12] cirrus: Don't install py27 packages.

2020-05-28 Thread Ilya Maximets
py27 packages are no longer available on FreeBSD. Removing these packages along with python2 itself to avoid CI failures: pkg: No packages available to install matching 'py27-sphinx' have been found in the repositories Exit status: 70 Signed-off-by: Ilya Maximets --- We already

[ovs-dev] [PATCH ovn v9 4/8] I-P engine: Provide the option for an engine to store changed data

2020-05-28 Thread numans
From: Numan Siddique With this patch, an engine node which is an input to another engine node can provide the tracked data. The parent of this engine node can handle this tracked data incrementally. At the end of the engine_run(), the tracked data of the nodes are cleared. Acked-by: Mark

[ovs-dev] [PATCH ovn v9 0/8] Incremental processing improvements.

2020-05-28 Thread numans
From: Numan Siddique This patch series handles port binding, datapath binding, ovs interface changes, runtime data changes, sb chassis changes incrementally. (These patches can also be found here - https://github.com/numansiddique/ovn/tree/IP_improvements_v5) Below are the results of some

[ovs-dev] [PATCH ovn v9 1/8] ovn-controller: Store the local port bindings in the runtime data I-P state.

2020-05-28 Thread numans
From: Numan Siddique This patch adds a new data structure - 'struct local_binding' which represents a probable local port binding. A new object of this structure is creared for each interface present in the integration bridge (br-int) with the external_ids:iface-id set. This struct has 2 main

Re: [ovs-dev] [PATCH ovn] controller: fix ip buffering with static routes

2020-05-28 Thread Numan Siddique
On Fri, May 22, 2020 at 1:19 PM Lorenzo Bianconi < lorenzo.bianc...@redhat.com> wrote: > > Hi Lorenzo, > > Hi Ankur, > > > > > Good catch. > > > > a. If not already considered, then i think it is a candidate for 20.06 > > b. Need not be done in this patch, but it will be good to have a > testcase

[ovs-dev] [PATCH ovn v9 7/8] ovn-controller: Use the tracked runtime data changes for flow calculation.

2020-05-28 Thread numans
From: Venkata Anil This patch processes the logical flows of tracked datapaths and tracked logical ports. To handle the tracked logical port changes, reference of logical flows to port bindings is maintained. Acked-by: Mark Michelson Co-Authored-by: Numan Siddique Signed-off-by: Venkata Anil

[ovs-dev] [PATCH ovn v9 2/8] ovn-controller: I-P for SB port binding and OVS interface in runtime_data.

2020-05-28 Thread numans
From: Numan Siddique This patch handles SB port binding changes and OVS interface changes incrementally in the runtime_data stage which otherwise would have resulted in calls to binding_run(). Prior to this patch, port binding changes were handled differently. The changes were only evaluated to

[ovs-dev] [PATCH ovn v9 5/8] ovn-controller: I-P for ct zone and OVS interface changes in flow output stage.

2020-05-28 Thread numans
From: Numan Siddique This patch handles ct zone changes and OVS interface changes incrementally in the flow output stage. Any changes to ct zone can be handled by running physical_run() instead of running flow_output_run(). And any changes to OVS interfaces can be either handled incrementally

[ovs-dev] [PATCH ovn v9 8/8] ovn-controller: Handle sbrec_chassis changes incrementally.

2020-05-28 Thread numans
From: Numan Siddique When ovn-controller updates the nb_cfg column of its chassis, this results in full recomputation on all the nodes. This results in wastage of CPU cycles. To address this, this patch handles sbrec_chassis changes incrementally. We don't need to handle any sbrec_chassis

[ovs-dev] [PATCH ovn v9 3/8] ovn-controller: I-P for datapath binding

2020-05-28 Thread numans
From: Numan Siddique This patch adds partial support of incremental processing of datapath binding. If a datapath is deleted, then a full recompute is triggered if that datapath is present in the 'local_datapaths' hmap of runtime data. Acked-by: Mark Michelson Acked-by: Han Zhou

Re: [ovs-dev] [PATCH ovn] controller: fix ip buffering with static routes

2020-05-28 Thread Numan Siddique
On Thu, May 28, 2020 at 5:45 PM Lorenzo Bianconi < lorenzo.bianc...@redhat.com> wrote: > > On Fri, May 22, 2020 at 1:19 PM Lorenzo Bianconi < > > lorenzo.bianc...@redhat.com> wrote: > > > > > > Hi Lorenzo, > > > > > > Hi Ankur, > > > > > > > > > > > Good catch. > > > > > > > > a. If not already

[ovs-dev] [PATCH v6 3/3] ovsdb-idl: Force IDL retry when missing updates encountered.

2020-05-28 Thread Dumitru Ceara
Adds a generic recovery mechanism which triggers an IDL retry with fast resync disabled in case the IDL has detected that it ended up in an inconsistent state due to other bugs in the ovsdb-server/ovsdb-idl implementation. CC: Andy Zhou Fixes: db2b5757328c ("lib: add monitor2 support in

[ovs-dev] [PATCH v6 2/3] ovsdb-idl: Avoid inconsistent IDL state with OVSDB_MONITOR_V3.

2020-05-28 Thread Dumitru Ceara
Assuming an ovsdb client connected to a database using OVSDB_MONITOR_V3 (i.e., "monitor_cond_since" method) with the initial monitor condition MC1. Assuming the following two transactions are executed on the ovsdb-server: TXN1: "insert record R1 in table T1" TXN2: "insert record R2 in table T2"

[ovs-dev] [PATCH v6 0/3] Avoid ovsdb-idl IDL inconsistencies.

2020-05-28 Thread Dumitru Ceara
This series contains: - patch1: update to the monitor_cond_change documentation in ovsdb-server to reflect what updates are sent when monitor_cond_since method is used. - patch2: fix for a bug that could cause client IDLs to end up in inconsistent states when using OVSDB_MONITOR_V3. - patch3:

[ovs-dev] [PATCH v6 1/3] ovsdb-server.7: Mention update3 as replies to monitor_cond_change.

2020-05-28 Thread Dumitru Ceara
Monitor_cond_change might trigger updates to be sent to clients as results to condition changes. These updates can be either update2 (for monitor_cond monitors) or update3 (for monitor_cond_since monitors). The documentation used to mention only update2. Signed-off-by: Dumitru Ceara Acked-by:

Re: [ovs-dev] [PATCH ovn] controller: fix ip buffering with static routes

2020-05-28 Thread Lorenzo Bianconi
> On Thu, May 28, 2020 at 5:45 PM Lorenzo Bianconi < > lorenzo.bianc...@redhat.com> wrote: > > > > On Fri, May 22, 2020 at 1:19 PM Lorenzo Bianconi < > > > lorenzo.bianc...@redhat.com> wrote: > > > > > > > > Hi Lorenzo, > > > > > > > > Hi Ankur, > > > > > > > > > > > > > > Good catch. > > > > > >

Re: [ovs-dev] [PATCH ovn] northd: add connection-status command for ovn{nb, sb}_idl

2020-05-28 Thread Numan Siddique
On Fri, May 8, 2020 at 3:52 AM Lorenzo Bianconi wrote: > Move ovn_controller_conn_show in ovn-util.c and rename it in > ovn_conn_show in order to be reused adding connection-status command for > ovn-northd > > Signed-off-by: Lorenzo Bianconi > Hi Lorenzo, I applied this patch to master with

Re: [ovs-dev] [PATCH v2 ovn] Add support for DHCP options - Domain Search List (119) and TFTP server (66).

2020-05-28 Thread Numan Siddique
On Thu, May 7, 2020 at 11:27 PM Ankur Sharma wrote: > From: Dhathri Purohith > > 1. Add support for DHCP domain search option (119) >Domain search list is encoded according to the specifications in RFC > 1035, >section 4.1.4. > > 2. Fix the data type for DHCP option tftp_server (66) >

Re: [ovs-dev] [PATCH branch-2.12] cirrus: Don't install py27 packages.

2020-05-28 Thread Aaron Conole
Ilya Maximets writes: > py27 packages are no longer available on FreeBSD. > Removing these packages along with python2 itself to avoid CI failures: > > pkg: No packages available to install matching 'py27-sphinx' have >been found in the repositories > Exit status: 70 > >

Re: [ovs-dev] [PATCH v4] Bareudp Tunnel Support

2020-05-28 Thread Gregory Rose
On 5/25/2020 8:31 PM, Martin Varghese wrote: From: Martin Varghese There are various L3 encapsulation standards using UDP being discussed to leverage the UDP based load balancing capability of different networks. MPLSoUDP (__ https://tools.ietf.org/html/rfc7510) is one among them. The

Re: [ovs-dev] [PATCH v6 2/3] ovsdb-idl: Avoid inconsistent IDL state with OVSDB_MONITOR_V3.

2020-05-28 Thread Han Zhou
On Thu, May 28, 2020 at 5:32 AM Dumitru Ceara wrote: > > Assuming an ovsdb client connected to a database using OVSDB_MONITOR_V3 > (i.e., "monitor_cond_since" method) with the initial monitor condition > MC1. > > Assuming the following two transactions are executed on the > ovsdb-server: > TXN1:

Re: [ovs-dev] [PATCH v2] datapath: Add hash info to upcall.

2020-05-28 Thread Ilya Maximets
On 5/27/20 8:56 AM, aginwala wrote: > Thanks Han for backporting it for lower kernels. I tested this patch with > some running workloads with old  3.13* kernels (ovs 2.11*) and it works fine. > In addition I am also considering the discussion [1],  and for ecmp workloads > I see all packets are

Re: [ovs-dev] [PATCH v6 3/3] ovsdb-idl: Force IDL retry when missing updates encountered.

2020-05-28 Thread Han Zhou
On Thu, May 28, 2020 at 5:32 AM Dumitru Ceara wrote: > > Adds a generic recovery mechanism which triggers an IDL retry with fast > resync disabled in case the IDL has detected that it ended up in an > inconsistent state due to other bugs in the ovsdb-server/ovsdb-idl > implementation. > > CC:

Re: [ovs-dev] [PATCH] ovsdb-server: Fix schema leak while reading db.

2020-05-28 Thread Ilya Maximets
On 5/27/20 1:52 AM, Han Zhou wrote: > > > On Fri, May 15, 2020 at 9:25 AM Ilya Maximets > wrote: >> >> parse_txn() function doesn't always take ownership of the 'schema' >> passed.  So, if the schema of the clustered db has same version as the >> one that already in

[ovs-dev] Spende

2020-05-28 Thread Bill Lawrence
Hallo Bin Bill Lawrence, ich habe am 16. Dezember 2019 die Powerball-Lotterie in Höhe von 150 Millionen US-Dollar gewonnen und mich freiwillig entschlossen, die Summe von 20 Millionen US-Dollar für wohltätige Zwecke zu spenden. Ich versuche, Menschen aus verschiedenen Quellen und Modi zufällig

Re: [ovs-dev] [PATCH] ovsdb-idl: Add function to reset min_index.

2020-05-28 Thread Ilya Maximets
On 5/4/20 6:17 PM, Han Zhou wrote: > On Fri, May 1, 2020 at 12:13 PM Mark Michelson wrote: >> >> If an administrator removes all of the databases in a cluster from >> disk, then ovsdb IDL clients will have a problem. The databases will all >> reset their stored indexes to 0, so The IDL client's

Re: [ovs-dev] [PATCH] raft: Avoid sending equal snapshots.

2020-05-28 Thread Ilya Maximets
On 5/23/20 8:36 PM, Han Zhou wrote: > > > On Sat, May 23, 2020 at 10:34 AM Ilya Maximets > wrote: >> >> Snapshots are huge.  In some cases we could receive several outdated >> append replies from the remote server.  This could happen in high >> scale cases if the

Re: [ovs-dev] [PATCH branch-2.12] cirrus: Don't install py27 packages.

2020-05-28 Thread Ilya Maximets
On 5/28/20 3:20 PM, Aaron Conole wrote: > Ilya Maximets writes: > >> py27 packages are no longer available on FreeBSD. >> Removing these packages along with python2 itself to avoid CI failures: >> >> pkg: No packages available to install matching 'py27-sphinx' have >>been found in the

Re: [ovs-dev] [PATCH v4] classifier: Prevent tries vs n_tries race leading to NULL dereference.

2020-05-28 Thread Ilya Maximets
On 5/28/20 1:22 AM, Eiichi Tsukata wrote: > Hello Ilya > >> On May 28, 2020, at 7:28, Ilya Maximets wrote: >> >> On 5/27/20 4:13 AM, Eiichi Tsukata wrote: >>> Currently classifier tries and n_tries can be updated not atomically, >>> there is a race condition which can lead to NULL dereference.

Re: [ovs-dev] [PATCH ovn v9 4/8] I-P engine: Provide the option for an engine to store changed data

2020-05-28 Thread Numan Siddique
On Fri, May 29, 2020 at 1:31 AM Han Zhou wrote: > On Thu, May 28, 2020 at 12:15 PM Numan Siddique wrote: > > > > > > > > On Fri, May 29, 2020 at 12:29 AM Han Zhou wrote: > >> > >> On Thu, May 28, 2020 at 11:29 AM Dumitru Ceara > wrote: > >> > > >> > On 5/28/20 1:04 PM, num...@ovn.org wrote: >

Re: [ovs-dev] [PATCH ovn v9 4/8] I-P engine: Provide the option for an engine to store changed data

2020-05-28 Thread Han Zhou
On Thu, May 28, 2020 at 1:13 PM Numan Siddique wrote: > > > > On Fri, May 29, 2020 at 1:31 AM Han Zhou wrote: >> >> On Thu, May 28, 2020 at 12:15 PM Numan Siddique wrote: >> > >> > >> > >> > On Fri, May 29, 2020 at 12:29 AM Han Zhou wrote: >> >> >> >> On Thu, May 28, 2020 at 11:29 AM Dumitru

[ovs-dev] OVN Meeting Logs 28 May, 2020

2020-05-28 Thread Mark Michelson
Here is the IRC log for the OVN meeting for 28 May, 2020 http://eavesdrop.openstack.org/meetings/ovn_community_development_discussion/2020/ovn_community_development_discussion.2020-05-28-17.16.log.html If you are interested in attending this meeting, it happens every Thursday at 13:15 EDT

Re: [ovs-dev] [PATCH ovn v9 4/8] I-P engine: Provide the option for an engine to store changed data

2020-05-28 Thread Dumitru Ceara
On 5/28/20 1:04 PM, num...@ovn.org wrote: > From: Numan Siddique > > With this patch, an engine node which is an input to another engine node > can provide the tracked data. The parent of this engine node can handle > this tracked data incrementally. > > At the end of the engine_run(), the

Re: [ovs-dev] [PATCH ovn v9 4/8] I-P engine: Provide the option for an engine to store changed data

2020-05-28 Thread Han Zhou
On Thu, May 28, 2020 at 11:29 AM Dumitru Ceara wrote: > > On 5/28/20 1:04 PM, num...@ovn.org wrote: > > From: Numan Siddique > > > > With this patch, an engine node which is an input to another engine node > > can provide the tracked data. The parent of this engine node can handle > > this

[ovs-dev] OVN 20.06 branch created

2020-05-28 Thread Mark Michelson
Hi, The ovn "branch-20.06" branch has now been created. The only feature slotted to go into this branch prior to release is Numan's I-P improvements which is still receiving review. The release of 20.06.0 should be doable by the end of next week, provided we do not encounter any critical

Re: [ovs-dev] [PATCH ovn v9 4/8] I-P engine: Provide the option for an engine to store changed data

2020-05-28 Thread Han Zhou
On Thu, May 28, 2020 at 12:15 PM Numan Siddique wrote: > > > > On Fri, May 29, 2020 at 12:29 AM Han Zhou wrote: >> >> On Thu, May 28, 2020 at 11:29 AM Dumitru Ceara wrote: >> > >> > On 5/28/20 1:04 PM, num...@ovn.org wrote: >> > > From: Numan Siddique >> > > >> > > With this patch, an engine

Re: [ovs-dev] [PATCH] ovsdb: Fix timeout type for wait operation.

2020-05-28 Thread Han Zhou
On Mon, May 25, 2020 at 10:07 AM Ilya Maximets wrote: > > According to RFC 7047, 'timeout' is an integer field: > > 5.2.6. Wait >The "wait" object contains the following members: > "op": "wait"required > "timeout": optional > ... > >

Re: [ovs-dev] [PATCH ovn v9 4/8] I-P engine: Provide the option for an engine to store changed data

2020-05-28 Thread Numan Siddique
On Fri, May 29, 2020 at 12:29 AM Han Zhou wrote: > On Thu, May 28, 2020 at 11:29 AM Dumitru Ceara wrote: > > > > On 5/28/20 1:04 PM, num...@ovn.org wrote: > > > From: Numan Siddique > > > > > > With this patch, an engine node which is an input to another engine > node > > > can provide the

Re: [ovs-dev] [PATCH] odp-util.c: Fix dp_hash execution with slowpath actions.

2020-05-28 Thread aginwala
Thanks Han for the fix: I verified it in the internal ecmp environment and Ping works fine with no more drop recirc action error messages as per example above. Maybe it would be good to show if R3 has a VIF too in the diagram and tweak the commit message a bit stating VIFs under R3 can ping R3

Re: [ovs-dev] [PATCH v2 5/5] dpif-lookup: add avx512 gather implementation

2020-05-28 Thread William Tu
On Wed, May 27, 2020 at 12:21:43PM +, Van Haaren, Harry wrote: > > -Original Message- > > From: dev On Behalf Of Van Haaren, Harry > > Sent: Tuesday, May 26, 2020 3:52 PM > > To: William Tu > > Cc: ovs-dev@openvswitch.org; i.maxim...@ovn.org > > Subject: Re: [ovs-dev] [PATCH v2 5/5]

[ovs-dev] Surviving 2020 & beyond: A Global Health War, Environmental Catastrophe, a looming global Recession/Depression? Let BookConcierge quell your anxiety & gloom with intellectual calmness and lo

2020-05-28 Thread BookConcierge Australia
BookConcierge is the worlds biggest online bookstore & lowest-price determinator in 23 countries. Price. Speed. Variety: only the Best & Cheapest & F  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ 

Re: [ovs-dev] [PATCH v2 ovn] Add support for DHCP options - Domain Search List (119) and TFTP server (66).

2020-05-28 Thread Dhathri Purohith
Hi Numan, Thanks a lot for taking a look. Will rebase, split the patch and submit v3. Thanks, Dhathri From: Numan Siddique Date: Thursday, May 28, 2020 at 5:52 AM To: "svc.mail.git" Cc: ovs-dev , Dhathri Purohith Subject: Re: [ovs-dev] [PATCH v2 ovn] Add support for DHCP options - Domain

[ovs-dev] Acciones preventivas y de negociación

2020-05-28 Thread Conflictos y demandas laborales
Miércoles 17 de Junio | Horario de 10:00 a 14:00 hrs. | (hora del centro de México) - Mediación de conflictos y prevención de demandas laborales. - Curso en Línea ¿De qué hablaremos? Nuestro webinar interactivo le brindará herramientas que le ayudarán para mejorar los procesos en la

Re: [ovs-dev] [PATCH] meta-flow: Document that constituents of conjunctive flows may overlap.

2020-05-28 Thread William Tu
On Wed, May 27, 2020 at 12:24:31PM -0700, Ben Pfaff wrote: > Suggested-by: Antonin Bas > Signed-off-by: Ben Pfaff > --- > lib/meta-flow.xml | 2 ++ > manpages.mk | 3 --- > 2 files changed, 2 insertions(+), 3 deletions(-) > > diff --git a/lib/meta-flow.xml b/lib/meta-flow.xml > index

Re: [ovs-dev] [PATCH ovn] controller: fix ip buffering with static routes

2020-05-28 Thread Ankur Sharma
Hi Lorenzo, Numan, Thanks a lot for the followup. I went through the tests added in: fda9a1dd3c995f25cad9e828e701f8b41d347bbb Only missing scenario in the added testcase is to validate draining of buffered ICMP packets. Regarding applying to 20.03, i think we should, otherwise buffering is not

Re: [ovs-dev] OVS-DPDK public meeting

2020-05-28 Thread Sriharsha Basavapatna via dev
On Thu, May 28, 2020 at 4:25 PM Kevin Traynor wrote: > > Next meeting June 24th 1600 UTC > > Attendees: Flavio, Harsha, Marcelo, William, Ilya, Ian, Malvika, Aaron, > Ameerm, Eli, Ravi, Roni, John Mangan, Simon, Johann, Ajit, David > > Minutes > > -OVS 2.14 feature freeze/release dates (Ian) > --