Re: [ovs-dev] Von Mis, Patricia Daniel. !!!

2020-06-27 Thread Mis, Patricia
-- Sehr geehrte Damen und Herren, Ich brauche Ihre Hilfe, um in Ihr Land zu ziehen, Investitionen zu ermöglichen und meine Ausbildung fortzusetzen. Ich brauche Ihre Unterstützung, weil ich die Faktoren nicht kenne, die Ihr Land für ein Investitionsprojekt leiten. Kannst du mich unterstützen?

[ovs-dev] Dr Grace H Admas

2020-06-27 Thread reward reward
Congratulation!!! Dear winner, Please kindly view the mail attachment and contact the Claim Manager with the required details for payment Verification/Release. If this Notification Letter hits your Junk/Spam folder, simply move it from your Spam/Junk folder to your inbox for better viewing and

[ovs-dev] Competencias laborales post Covid-19

2020-06-27 Thread Curso Gratuito
Buenos día Quise aprovechar la oportunidad de hacerte una invitación para tomar nuestro Webinar Gratis: Nombre: Competencias laborales post Covid-19 Horario: 10:00 am a 14:00 pm Formato: En línea con interacción en vivo. Lugar: En Vivo desde su computadora Instructor: Lyz Escalante es experta

Re: [ovs-dev] [PATCH v4 0/7] DPCLS Subtable ISA Optimization

2020-06-27 Thread William Tu
On Thu, Jun 18, 2020 at 9:53 AM Harry van Haaren wrote: > > v4 work done: > - Fixed shared object build link errors (--enable-shared flag) > - Enabled autovalidator to run with unit-tests (--enable-autovalidator flag) > - Address other feedback on v3 > - Improve binutils AVX512 issue detection (in

Re: [ovs-dev] [PATCH v4 4/7] dpdk: enable cpu feature detection.

2020-06-27 Thread William Tu
On Thu, Jun 18, 2020 at 9:53 AM Harry van Haaren wrote: > > This commit implements a method to retrieve the CPU ISA capabilities. > These ISA capabilities can be used in OVS to at runtime select a function > implementation to make the best use of the available ISA on the CPU. > > Signed-off-by: Ha

Re: [ovs-dev] [PATCH v4 2/7] dpif-netdev: add subtable lookup prio set command.

2020-06-27 Thread William Tu
On Thu, Jun 18, 2020 at 9:53 AM Harry van Haaren wrote: > > This commit adds a command for the dpif-netdev to set a specific > lookup function to a particular priority level. The command enables > runtime switching of the dpcls subtable lookup implementation. > > Selection is performed based on a

Re: [ovs-dev] [PATCH v4 7/7] docs/dpdk/bridge: add datapath performance section.

2020-06-27 Thread William Tu
On Thu, Jun 18, 2020 at 9:53 AM Harry van Haaren wrote: > > This commit adds a section to the dpdk/bridge.rst netdev documentation, > detailing the added DPCLS functionality. The newly added commands are > documented, and sample output is provided. > > Running the DPCLS autovalidator with unit tes

Re: [ovs-dev] [PATCH v4 6/7] configure/m4: binutils avx512 configure time check.

2020-06-27 Thread William Tu
On Thu, Jun 18, 2020 at 9:53 AM Harry van Haaren wrote: > > This commit checks at configure time if the assembling in use > has a known bug in assembling AVX512 code. If this bug is present, > all AVX512 code is disabled. > > Checking the version string of the binutils or assembler is not > a good

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

2020-06-27 Thread William Tu
On Thu, Jun 18, 2020 at 9:53 AM Harry van Haaren wrote: > > This commit adds an AVX-512 dpcls lookup implementation. > It uses the AVX-512 SIMD ISA to perform multiple miniflow > operations in parallel. > > To run this implementation, the "avx512f" and "bmi2" ISAs are > required. These ISA checks

Re: [ovs-dev] [PATCH v4 3/7] dpif-netdev: add subtable-lookup-prio-get command.

2020-06-27 Thread William Tu
On Thu, Jun 18, 2020 at 9:53 AM Harry van Haaren wrote: > > This commit adds ia new command, "dpif-netdev/subtable-lookup-prio-get" > which prints the available sutable lookup functions in this OVS binary. > Example output from the command: > > Available lookup functions (priority : name) >

Re: [ovs-dev] [PATCH v4 1/7] dpif-netdev: implement subtable lookup validation.

2020-06-27 Thread William Tu
On Thu, Jun 18, 2020 at 9:53 AM Harry van Haaren wrote: > > This commit refactors the existing dpif subtable function pointer > infrastructure, and implements an autovalidator component. > > The refactoring of the existing dpcls subtable lookup function > handling, making it more generic, and clea

Re: [ovs-dev] [PATCH] bfd: Support overlay BFD

2020-06-27 Thread William Tu
Thanks for the patch. On Wed, Jun 24, 2020 at 1:58 PM Yifeng Sun wrote: > > Current OVS intercepts and processes all BFD packets, thus VM-2-VM > BFD packets get lost and the recipient VM never sees them. Can you explain in more detail the issue? How about this below, if I understand correctly: "

Re: [ovs-dev] [PATCH] bridge: Fix null dereference on ct_timeout_policy record

2020-06-27 Thread William Tu
On Fri, Jun 26, 2020 at 11:21:06AM -0700, Yi-Hung Wei wrote: > Accoridng to vswitch.ovsschema, each CT_Zone record may have > zero or one associcated CT_Timeout_policy. Thus, this patch > checks if ovsrec_ct_timeout_policy exist before accesses the > record. > > VMWare-BZ: 2585825 > Fixes: 453395

Re: [ovs-dev] [ovs-dev v2] datapath-windows, conntrack: Fix conntrack new state

2020-06-27 Thread William Tu
On Tue, Jun 23, 2020 at 06:46:22AM +, Rui Cao wrote: > On windows, if we send a connection setup packet in one direction > twice, it will make the connection to be in established state. The > same issue happened in Linux userspace conntrack module and has > been fixed. > > This patch port the

Re: [ovs-dev] [PATCH] ctags: Include new annotations to ctags ignore list.

2020-06-27 Thread William Tu
On Wed, Jun 10, 2020 at 04:49:45PM -0300, Flavio Leitner wrote: > The annotation OVS_NO_THREAD_SAFETY_ANALYSIS and OVS_LOCKABLE are > not part of the list, so ctags can't find functions using them. > > The annotation list comes from a regex and to include more items > make the regex more difficult

Re: [ovs-dev] [PATCH] bfd: Support overlay BFD

2020-06-27 Thread Yifeng Sun
Thanks for the review. Please check my inline comments. Will fix them in v2. Yifeng On Sat, Jun 27, 2020 at 3:07 PM William Tu wrote: > Thanks for the patch. > > On Wed, Jun 24, 2020 at 1:58 PM Yifeng Sun wrote: > > > > Current OVS intercepts and processes all BFD packets, thus VM-2-VM > > BFD