Re: [ovs-dev] Please get back to me its urgent

2018-03-13 Thread Alice Walton
Good Day Dearest, Hope this email find you in good condition, my name is Alice Walton, a citizen of United States of America. I have a profitable proposal for you which I intend to use for charity. I will be very happy to know you, as my instinct directed me to you at this point in time, so do

[ovs-dev] Notification Letter

2018-03-13 Thread Google Inc
Attn: Winner' Your e-mail address has been randomly selected as Google Winner for Google NEW YEAR Promotion. Please view attached file for More DETAIL. Yours faithfully, Sundar Pichai [CEO] Google Inc™ -- Il 5x1000 a Coopselios Aiutaci

Re: [ovs-dev] [PATCH 6/6] ofp-print: Move much of the printing code into message-specific files.

2018-03-13 Thread Justin Pettit
> On Mar 13, 2018, at 4:04 PM, Justin Pettit wrote: > > >> On Feb 16, 2018, at 2:54 PM, Ben Pfaff wrote: > > It looks like this was mostly moving code around, so I didn't pore over the > review, but let me know if you want me to take a closer look. I did

Re: [ovs-dev] [PATCH 6/6] ofp-print: Move much of the printing code into message-specific files.

2018-03-13 Thread Justin Pettit
> On Feb 16, 2018, at 2:54 PM, Ben Pfaff wrote: It looks like this was mostly moving code around, so I didn't pore over the review, but let me know if you want me to take a closer look. I did notice a few smaller things: > diff --git a/lib/ofp-table.c b/lib/ofp-table.c > index

[ovs-dev] Las Reglas de la era Digital

2018-03-13 Thread Servicio al Cliente - Redes Sociales
En línea y en Vivo / Para todo su Equipo con una sola Conexión Servicio al Cliente 4.0 Las Reglas de la era Digital 22 de marzo - Online en Vivo - 10:00 a 13:00 y de 15:00 a 18:00Hrs En los últimos años, la atención al cliente a través de las redes sociales ha comenzado a ganar

Re: [ovs-dev] [PATCH] ovsdb-client.at: Fix ovsdb-client backup test on Win

2018-03-13 Thread aserdean
> -Mesaj original- > De la: ovs-dev-boun...@openvswitch.org boun...@openvswitch.org> În numele Ben Pfaff > Trimis: Thursday, March 8, 2018 8:55 PM > Către: aserd...@ovn.org > Cc: d...@openvswitch.org > Subiect: Re: [ovs-dev] [PATCH] ovsdb-client.at: Fix ovsdb-client backup test > on Win >

Re: [ovs-dev] [PATCH v2] Upcall/Slowpath rate limiter for OVS

2018-03-13 Thread Manohar Krishnappa Chidambaraswamy
Ben, Could you please let me know your views? Like other meters, OFPM_SLOWPATH is also local to each bridge and tied to USERSPACE action. So OFPM_SLOWPATH cannot be used as is for rate-limiting upcalls. We need to have a global/OVS-vswitchd level meter (either overload OFPM_SLOWPATH semantics

[ovs-dev] [PATCH] utilities: Make ovs-pipegen.py Python 3 friendly

2018-03-13 Thread Timothy Redaelli
Replace "print f" with "print(f)" and "xrange" with "range". The changes are backward compatibile with Python 2. Signed-off-by: Timothy Redaelli --- utilities/ovs-pipegen.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utilities/ovs-pipegen.py

Re: [ovs-dev] [PATCH] odp-util: Fix ofproto/trace with odp flow

2018-03-13 Thread Darrell Ball
On Tue, Mar 13, 2018 at 1:24 AM, Jiri Benc wrote: > Darell, please fix your email client configuration to conform to > RFC 3676 (https://tools.ietf.org/html/rfc3676#section-4.5). Your > replies are unreadable. In particular, the text you're replying to must > be quoted by ">"

Re: [ovs-dev] [PATCH 4/4] doc: Update configure section with prefetchwt1 details.

2018-03-13 Thread Bodireddy, Bhanuprakash
>> -Original Message- >> From: ovs-dev-boun...@openvswitch.org [mailto:ovs-dev- >> boun...@openvswitch.org] On Behalf Of Bhanuprakash Bodireddy >> Sent: Friday, January 12, 2018 5:41 PM >> To: d...@openvswitch.org >> Subject: [ovs-dev] [PATCH 4/4] doc: Update configure section with >>

Re: [ovs-dev] [PATCH v3] tests: Add system-dpdk-testsuite

2018-03-13 Thread Stokes, Ian
> -Original Message- > From: ovs-dev-boun...@openvswitch.org [mailto:ovs-dev- > boun...@openvswitch.org] On Behalf Of Marcin Rybka > Sent: Tuesday, February 13, 2018 2:43 PM > To: d...@openvswitch.org > Cc: Rybka, MarcinX > Subject: [ovs-dev] [PATCH v3] tests: Add

[ovs-dev] [RFC 2/2] OVN: add tcp_reset action to ovn acl reject support

2018-03-13 Thread Lorenzo Bianconi
Whenever the acl reject rule is hit by a TCP segment send back a TCP RST packet to close the connection using the tcp_reset action. Moreover add add tcp_reset test case to 'ACL reject rule test' Signed-off-by: Lorenzo Bianconi --- ovn/northd/ovn-northd.c | 14

[ovs-dev] [RFC 1/2] OVN: add tcp_reset{} action support

2018-03-13 Thread Lorenzo Bianconi
tcp_reset action transforms the current TCP segment according to the following pseudocode: if (tcp.ack) { tcp.seq = tcp.ack; } else { tcp.ack = tcp.seq + length(tcp.payload); tcp.seq = 0; } tcp.flags = RST; Then, the action drops all TCP options and payload data, and

[ovs-dev] [RFC 0/2] add tcp reset support to ovn acl framework

2018-03-13 Thread Lorenzo Bianconi
Lorenzo Bianconi (2): OVN: add tcp_reset{} action support OVN: add tcp_reset action to ovn acl reject support include/ovn/actions.h | 7 ++ ovn/controller/pinctrl.c | 64 +++ ovn/lib/actions.c | 22

Re: [ovs-dev] [PATCH] ovsdb: Fix database compaction check

2018-03-13 Thread Mark Michelson
Thanks Daniel Acked-by: Mark Michelson On 03/10/2018 07:48 AM, Daniel Alvarez wrote: We want to compact database file if it has been over 24 hours since we last compacted it and there's more than 100 commits regardless of the size of the database. This patch fixes the

Re: [ovs-dev] [PATCH 1/4] compiler: Introduce OVS_PREFETCH variants.

2018-03-13 Thread Bodireddy, Bhanuprakash
> >> -Original Message- >> From: ovs-dev-boun...@openvswitch.org [mailto:ovs-dev- >> boun...@openvswitch.org] On Behalf Of Bhanuprakash Bodireddy >> Sent: Friday, January 12, 2018 5:41 PM >> To: d...@openvswitch.org >> Subject: [ovs-dev] [PATCH 1/4] compiler: Introduce OVS_PREFETCH

[ovs-dev] [PATCH v2] tests: Add some Python3 test variants on ovsdb-idl.at

2018-03-13 Thread Timothy Redaelli
Execute the "passive tcp", "fetch columns", "idl notify", "idl notify SSL" and "simple idl disable monitor-cond" tests also using Python3 (when available). Signed-off-by: Timothy Redaelli --- v1 -> v2 * Add Python3 variant for OVSDB_CHECK_IDL_WO_MONITOR_COND_PY too Note:

[ovs-dev] USB drives with your logo

2018-03-13 Thread Stacey
Hi, I wanted to send a quick follow up to my previous email. I would like to contact the person that does your buying of custom logo products for your company? We manufacture USB Flash Drives, printed with your logo. The perfect marketing tool for your business or organization. We can

Re: [ovs-dev] [PATCH 4/4] doc: Update configure section with prefetchwt1 details.

2018-03-13 Thread Stokes, Ian
> -Original Message- > From: ovs-dev-boun...@openvswitch.org [mailto:ovs-dev- > boun...@openvswitch.org] On Behalf Of Bhanuprakash Bodireddy > Sent: Friday, January 12, 2018 5:41 PM > To: d...@openvswitch.org > Subject: [ovs-dev] [PATCH 4/4] doc: Update configure section with > prefetchwt1

Re: [ovs-dev] [PATCH 2/4] util: Extend ovs_prefetch_range to include prefetch type.

2018-03-13 Thread Stokes, Ian
> -Original Message- > From: ovs-dev-boun...@openvswitch.org [mailto:ovs-dev- > boun...@openvswitch.org] On Behalf Of Bhanuprakash Bodireddy > Sent: Friday, January 12, 2018 5:41 PM > To: d...@openvswitch.org > Subject: [ovs-dev] [PATCH 2/4] util: Extend ovs_prefetch_range to include >

Re: [ovs-dev] [PATCH 1/4] compiler: Introduce OVS_PREFETCH variants.

2018-03-13 Thread Stokes, Ian
> -Original Message- > From: ovs-dev-boun...@openvswitch.org [mailto:ovs-dev- > boun...@openvswitch.org] On Behalf Of Bhanuprakash Bodireddy > Sent: Friday, January 12, 2018 5:41 PM > To: d...@openvswitch.org > Subject: [ovs-dev] [PATCH 1/4] compiler: Introduce OVS_PREFETCH variants. > >

Re: [ovs-dev] [PATCH v7 0/6] OVS-DPDK flow offload with rte_flow

2018-03-13 Thread Shahaf Shuler
Wednesday, February 7, 2018 4:12 AM, Yuanhan Liu: > On Tue, Feb 06, 2018 at 09:34:36PM +, Stokes, Ian wrote: > > > Subject: Re: [ovs-dev] [PATCH v7 0/6] OVS-DPDK flow offload with > > > rte_flow Hi, Just to inform I am taking over this patchset for integration in ovs 2.10 release.

Re: [ovs-dev] [PATCH] odp-util: Fix ofproto/trace with odp flow

2018-03-13 Thread Jiri Benc
Darell, please fix your email client configuration to conform to RFC 3676 (https://tools.ietf.org/html/rfc3676#section-4.5). Your replies are unreadable. In particular, the text you're replying to must be quoted by ">" character, clearly separating your reply from the original email. Also, wrap