[ovs-dev] Urgent Attention: NetBank Debit Alert

2018-02-22 Thread COMMONWEALTH BANK ALERT VERIFICATION
-- SPECIAL ATTENTION AND NOTICE!! DEAR OUR VALUED COSTUMER, THIS IS TO LET YOU KNOW WE NOTICE'S SOME SUSPICIOUS ATTEMPTS TRYING TO WITHDRAW OR MAKE PAYMENT FROM YOUR ACCOUNT FROM DIFFERENT LOCATION, AND WE ARE NOW CURRENTLY UPDATING AND MAINTAINING NETBANK SERVER AND SYSTEM DATABASE

[ovs-dev] Cómo Evaluar y Medir a sus Empleados

2018-02-22 Thread Remuneración justa y equitativa
En línea y en Vivo / Para todo su Equipo con una sola Conexión Cómo evaluar y medir COMPETENCIAS DE LOS EMPLEADOS 09 de marzo - Online en Vivo - 10:00 a 13:00 y de 15:00 a 18:00 Hrs Aprenda a Evaluar y Medir a sus empleados, y desarrolle estrategias para obtener de ellos todo su potencial.

[ovs-dev] [PATCH] Use the correct logical datapath UUID as input for logical flow hash.

2018-02-22 Thread Jakub Sitnicki
Use the logical switch/router UUID as hash input, instead of the UUID of the Datapath_Binding row, when calculating the hash value for lflows in the SBDB. Otherwise the hash value will never match the one computed from NBDB contents, which will force ovn-northd to constantly drop and attempt to

Re: [ovs-dev] [patch v5 00/11] Userspace datapath: Add fragmentation support.

2018-02-22 Thread Aaron Conole
Darrell Ball writes: > On Fri, Feb 9, 2018 at 1:35 PM, Aaron Conole wrote: > > Hi Darrell, > > Darrell Ball writes: > > > Fragmentation support for userspace datapath conntrack is added; both > > v4 and v6 are supported. See the

Re: [ovs-dev] [PATCH 4/4] ovn-northd: Reduce amount of flow hashing.

2018-02-22 Thread Jakub Sitnicki
Hi Ben, On Wed, Feb 14, 2018 at 09:54 PM GMT, Ben Pfaff wrote: > Jakub Sitnicki demonstrated that repeatedly calculating row hashes is > expensive, so this should improve ovn-northd performance. > > Reported-by: Jakub Sitnicki > Reported-at: >

Re: [ovs-dev] [PATCH v3] OF1.5/EXT-334 OXS/Extensible Flow Entry Statistics Support

2018-02-22 Thread Satyavalli Rama
Hi Ben and Jan, Much Thanks to both of your for you valuable inputs, we've addressed almost all the modifications you both mentioned. Consolidating all the Inputs below are the quick updates and clarifications required. >> JAN and BEN Comment - 1) ovs-ofctl dump-flows" should provide similar

[ovs-dev] Greetings

2018-02-22 Thread Kathryn Meyrick
Good day. Kindly message me back if you are still using this email. Regards. Kathryn Meyrick. ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

[ovs-dev] [PATCH] rhel: Avoid losing bridge configuration after adding DPDK ports

2018-02-22 Thread Vishal Deep Ajmera
Whenever a DPDK port is added to or deleted from an OVS bridge, the bridge interface is reconfigured with the lowest MAC address among the connected DPDK ports. When changing the MAC address, OVS performs a sequences of events UP -> DOWN -> UP on the bridge interface. In deployments of OVS in RHEL

[ovs-dev] [PATCH branch-2.8 4/4] ovsdb: ovsdb-dot.in: Replace sys.maxint with sys.maxsize for Python3

2018-02-22 Thread Markos Chandras
There is no sys.maxint anymore on python3. However, sys.maxsize can be used as an integer larger than any practical list or string index. Link: https://docs.python.org/3.1/whatsnew/3.0.html#integers Signed-off-by: Markos Chandras --- ovsdb/ovsdb-dot.in | 4 ++-- 1 file

[ovs-dev] [PATCH branch-2.8 2/4] ovsdb: ovsdb-dot.in: Use print function for Python3

2018-02-22 Thread Markos Chandras
The python2 print statement no longer works in python3 since the latter uses a print function. As such, replace all instances of 'print' with 'print()'. This fixes the following build problem with python3 > ovsdb/ovsdb-client.1.tmp File "./ovsdb/ovsdb-dot.in", line 34 print "\t%s -> %s [%s];"

[ovs-dev] [PATCH branch-2.8 3/4] ovsdb: ovsdb-dot.in: Change exception semantics for Python3

2018-02-22 Thread Markos Chandras
PEP-3110 changes the semantics for capturing exceptions in Python3 from 'except E,N' to 'except E as N'. This fixes the following problem when building with python3 SyntaxError: invalid syntax File "./ovsdb/ovsdb-dot.in", line 106 except ovs.db.error.Error, e: ^

[ovs-dev] [PATCH branch-2.8 1/4] ovsdb: Use items() instead of iteritems() for Python3

2018-02-22 Thread Markos Chandras
Python3 removed the iteritems() iterator and replaced it with items() which should also work in Python2. This fixes the following build problem on Python3: Traceback (most recent call last): File "./ovsdb/ovsdb-idlc.in", line 1436, in func(*args[1:]) File "./ovsdb/ovsdb-idlc.in", line

[ovs-dev] [PATCH branch-2.8 0/4] ovsdb-dot python3 fixes

2018-02-22 Thread Markos Chandras
Hello, This patchset is a backport of the following python-3 fixes https://mail.openvswitch.org/pipermail/ovs-dev/2017-December/342460.html for branch 2.8 Markos Chandras (4): ovsdb: Use items() instead of iteritems() for Python3 ovsdb: ovsdb-dot.in: Use print function for Python3 ovsdb: