[ovs-dev] [PATCH] Fix the build error caused by flake8 check failure

2016-11-23 Thread Numan Siddique
utilities/ovs-tcpdump.in:21:1: F401 'select' imported but unused Makefile:5645: recipe for target 'flake8-check' failed Fixes: b47d91a74073 ("ovs-tcpdump: should't halt when dumping traffic.") Signed-off-by: Numan Siddique --- utilities/ovs-tcpdump.in | 1 - 1 file changed, 1 deletion(-) diff -

Re: [ovs-dev] [PATCH 2/2] rhel: Add EnvironmentFile for ovn services.

2016-11-23 Thread Numan Siddique
On Tue, Nov 22, 2016 at 2:36 AM, Russell Bryant wrote: > A previous commit documented how you do this using systemd > native interfaces for customizing services. However, it seems > that some people still would rather see environment variables > specified through an old-style sysconfig file. It

Re: [ovs-dev] [PATCH 16/17] dpif-netdev: Centralized threads and queues handling code.

2016-11-23 Thread Bodireddy, Bhanuprakash
>-Original Message- >From: Daniele Di Proietto [mailto:diproiet...@ovn.org] >Sent: Tuesday, November 22, 2016 9:01 PM >To: Bodireddy, Bhanuprakash >Cc: d...@openvswitch.org >Subject: Re: [ovs-dev] [PATCH 16/17] dpif-netdev: Centralized threads and >queues handling code. > > > >2016-11-22 1

Re: [ovs-dev] [PATCH] Fix the build error caused by flake8 check failure

2016-11-23 Thread Numan Siddique
Sorry for the patch. Didn't notice that there's already a patch from Ben to fix this - https://patchwork.ozlabs.org/patch/697945/ Thanks Numan On Wed, Nov 23, 2016 at 2:48 PM, Numan Siddique wrote: > utilities/ovs-tcpdump.in:21:1: F401 'select' imported but unused > Makefile:5645: recipe for

[ovs-dev] GPRS Tunnelling Protocol (GTP)

2016-11-23 Thread Enrique Chirivella Pérez
Hi I wanted to know, if OpenVSwitch supports GPRS Tunnelling Protocol (GTP). Thanks Enrique Chirivella Pérez. ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

[ovs-dev] Microsoft v.net Users list

2016-11-23 Thread Hattie Nguyen
Hi, We would like to learn your interest in acquiring our recently updated Microsoft v.net Users list which helps you to improve your business campaign. We like wise have other organization information also we will provide the your list as per your criteria. Data Fields: - Name,

Re: [ovs-dev] GPRS Tunnelling Protocol (GTP)

2016-11-23 Thread Joe Stringer
On 23 November 2016 at 04:03, Enrique Chirivella Pérez wrote: > Hi I wanted to know, if OpenVSwitch supports GPRS Tunnelling Protocol (GTP). No. It looks like upstream Linux has supported GTP since v4.7: https://osmocom.org/projects/linux-kernel-gtp-u/wiki There have been signs of interest for

Re: [ovs-dev] [PATCH] ovs-tcpdump: Do not import unused "select" module.

2016-11-23 Thread Ben Pfaff
On Tue, Nov 22, 2016 at 09:13:35PM -0800, Joe Stringer wrote: > On 22 November 2016 at 15:32, Ben Pfaff wrote: > > Fixes the following flake8 warning: > > utilities/ovs-tcpdump.in:21:1: F401 'select' imported but unused > > > > Signed-off-by: Ben Pfaff > > Acked-by: Joe Stringer Thanks. A

Re: [ovs-dev] [PATCH] Fix the build error caused by flake8 check failure

2016-11-23 Thread Ben Pfaff
No problem. In any case, it's fixed now. On Wed, Nov 23, 2016 at 05:23:12PM +0530, Numan Siddique wrote: > Sorry for the patch. Didn't notice that there's already a patch from Ben to > fix this - https://patchwork.ozlabs.org/patch/697945/ > > > Thanks > Numan > > > > On Wed, Nov 23, 2016 at

Re: [ovs-dev] [PATCH] Expose sFLOW "Processor information" counters.

2016-11-23 Thread Neil McKee
The OVS sFlow agent already reports its own resource usage: https://github.com/openvswitch/ovs/blob/master/ofproto/ofproto-dpif-sflow.c#L276-L290 Perhaps this is the information you were looking for? The standard sFlow structure it is reporting is the app_resources one described here: http://sflo

[ovs-dev] [PATCH] odp-util: Fix incorrect comment.

2016-11-23 Thread Ben Pfaff
The user_action_cookie was once limited to 8 bytes, but that limitation was eliminated a long time ago. Signed-off-by: Ben Pfaff --- lib/odp-util.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/odp-util.h b/lib/odp-util.h index ccdbf8e..9c8b05f 100644 --- a/lib/odp-ut

Re: [ovs-dev] [PATCH] utilities: Use FQDN for external_ids:hostname in Openvswitch table

2016-11-23 Thread Russell Bryant
On Wed, Nov 23, 2016 at 1:25 AM, Babu Shanmugam wrote: > > > On Wednesday 23 November 2016 04:01 AM, Ben Pfaff wrote: > >> On Tue, Nov 15, 2016 at 05:27:22PM +0530, bscha...@redhat.com wrote: >> >>> From: Babu Shanmugam >>> >>> Openstack compute manager uses FQDN to check for the hypervisors to

Re: [ovs-dev] [PATCH 2/2] rhel: Add EnvironmentFile for ovn services.

2016-11-23 Thread Russell Bryant
On Wed, Nov 23, 2016 at 5:12 AM, Numan Siddique wrote: > > > On Tue, Nov 22, 2016 at 2:36 AM, Russell Bryant wrote: > >> A previous commit documented how you do this using systemd >> native interfaces for customizing services. However, it seems >> that some people still would rather see environ

[ovs-dev] [PATCH v2 1/2] rhel: Fix Environment for ovn-controller-vtep.

2016-11-23 Thread Russell Bryant
The systemd unit for ovn-controller-vtep incorrectly specified Environment multiple times. Multiple environment variables must be specified separated by a space to a single Environment option. Signed-off-by: Russell Bryant --- rhel/usr_lib_systemd_system_ovn-controller-vtep.service | 4 +--- 1

[ovs-dev] [PATCH v2 2/2] rhel: Add EnvironmentFile for ovn services.

2016-11-23 Thread Russell Bryant
A previous commit documented how you do this using systemd native interfaces for customizing services. However, it seems that some people still would rather see environment variables specified through an old-style sysconfig file. It seems harmless enough to provide, so this patch adds it. The "-

Re: [ovs-dev] [PATCH] utilities: Use FQDN for external_ids:hostname in Openvswitch table

2016-11-23 Thread Ben Pfaff
On Wed, Nov 23, 2016 at 02:56:52PM -0500, Russell Bryant wrote: > On Wed, Nov 23, 2016 at 1:25 AM, Babu Shanmugam wrote: > > > > > > > On Wednesday 23 November 2016 04:01 AM, Ben Pfaff wrote: > > > >> On Tue, Nov 15, 2016 at 05:27:22PM +0530, bscha...@redhat.com wrote: > >> > >>> From: Babu Shanm

[ovs-dev] Taller para el Auxiliar Contable

2016-11-23 Thread cuentas por cobrar y por pagar.
Contribuyendo en la eficiencia de las operaciones contables 4 TALLER PARA EL AUXILIAR CONTABLE 14 de diciembre - Zona Reforma (Ciudad de México) - 9:00 a 20:00 Imparte: C.P. Fernando García Zárate aprenderá a realizar los registros de las operaciones así como entender y controlar las

Re: [ovs-dev] [PATCH v2] datapath-windows: Avoid busy wait in OvsStartIpHelper

2016-11-23 Thread Alin Serdean
Hi Shashank, Thanks a lot for the patch! My only concern is that this issue has already been addresed in one of the multiple port patches: http://patchwork.ozlabs.org/patch/669598/ I plan to respin the series until the end of the week. Thanks, Alin. > -Original Message- > From: ovs-d

Re: [ovs-dev] NEW Outstanding Payment

2016-11-23 Thread sales
Dear sir FYI. Darshana CHEMOSOL INDUSTRIES ADD:7, Nethuji Govind.,2nd Floor.,138/140,V.V. Chandan Street,Vadgadi,Masjid Bunder (W) Mumbai - 43 Telefax. +91 22 23432368 / 66108020 ___ dev mailing list d...@openvswitch.org https://mail.openvswit

[ovs-dev] [PATCH] ofp-actions: Add "ingress" and "egress" options to "sample" action.

2016-11-23 Thread Ben Pfaff
Before Open vSwitch 2.5.90, IPFIX reports from Open vSwitch didn't include whether the packet was ingressing or egressing the switch. Starting in OVS 2.5.90, this information was available but only accurate if the action included a port number that indicated a tunnel. Conflating these two does no

Re: [ovs-dev] Sample action for patch port

2016-11-23 Thread Ben Pfaff
On Tue, Nov 15, 2016 at 01:30:34AM -0800, Ben Pfaff wrote: > On Tue, Nov 15, 2016 at 05:45:06AM +, Daniel Ye wrote: > > As we know, NXAST_RAW_SAMPLE2 was introduced to OVS to make flow-based > > IPFIX to support tunnel information exporting. A field called > > “sampling_port” is added in NXAST

[ovs-dev] Processing of openvswitch_2.6.1+git20161123-1_i386.changes

2016-11-23 Thread Debian FTP Masters
openvswitch_2.6.1+git20161123-1_i386.changes uploaded successfully to localhost along with the files: openvswitch_2.6.1+git20161123-1.dsc openvswitch_2.6.1+git20161123.orig.tar.xz openvswitch_2.6.1+git20161123-1.debian.tar.xz openvswitch-common_2.6.1+git20161123-1_i386.deb openvswitch-dbg

[ovs-dev] presupuesto, reportes variables y escenarios

2016-11-23 Thread Excel - presupuestos y proyecciones de rentabilidad
En línea y en Vivo / Para todo su Equipo con una sola Conexión Cómo hacer presupuestos y proyecciones de rentabilidad en Excel 08 de diciembre - Online en Vivo - 10:00 a 13:00 y de 15:00 a 18:00 Hrs Conozca temas tales como el uso de presupuestos para medir el rendimiento del person

[ovs-dev] openvswitch_2.6.1+git20161123-1_i386.changes is NEW

2016-11-23 Thread Debian FTP Masters
binary:openvswitch-dev is NEW. binary:ovn-central is NEW. binary:ovn-common is NEW. binary:ovn-controller-vtep is NEW. binary:ovn-docker is NEW. binary:ovn-host is NEW. binary:ovn-common is NEW. binary:ovn-host is NEW. binary:ovn-docker is NEW. binary:openvswitch-dev is NEW. binary:ovn-central is N

Re: [ovs-dev] [PATCH 2/5] lib/dp-packet: copy additional packet info when do packet copy

2016-11-23 Thread Michael Qiu
在 2016/11/15 0:05, Kavanagh, Mark B 写道: 2016/10/28 17:47, Kavanagh, Mark B : Currently, when doing packet copy, lots of DPDK mbuf's info will be missed, like packet type, ol_flags, etc. Those information is very important for DPDK to do packets processing. Signed-off-by: Michael Qiu Signed

[ovs-dev] Personal Assitant and Administrative officer needed*

2016-11-23 Thread adni11
Hello, I'm looking for someone who can handle my business & personal errands at his/her spare time as I keep traveling a lot. Someone who can offer me these services mentioned below: * Mail services (Receive my mails and drop them off at UPS or USPS) * Shop for Gifts * Bill payment (pay my bills

[ovs-dev] Personal Assitant and Administrative officer needed*

2016-11-23 Thread adni11
Hello, I'm looking for someone who can handle my business & personal errands at his/her spare time as I keep traveling a lot. Someone who can offer me these services mentioned below: * Mail services (Receive my mails and drop them off at UPS or USPS) * Shop for Gifts * Bill payment (pay my bills

Re: [ovs-dev] [PATCH] ofp-actions: Add "ingress" and "egress" options to "sample" action.

2016-11-23 Thread Daniel Ye
Hi Ben, Thanks for this fix. I applied your patch and verified from end to end. The patch looks good to me. One comment inline. Acked-by: Benli Ye Bests, Daniel -Original Message- From: Ben Pfaff [mailto:b...@ovn.org] Sent: Thursday, November 24, 2016 6:56 AM To: d...@openvswitch.or

[ovs-dev] [PATCH v2] ofp-actions: Add "ingress" and "egress" options to "sample" action.

2016-11-23 Thread Ben Pfaff
Before Open vSwitch 2.5.90, IPFIX reports from Open vSwitch didn't include whether the packet was ingressing or egressing the switch. Starting in OVS 2.5.90, this information was available but only accurate if the action included a port number that indicated a tunnel. Conflating these two does no

Re: [ovs-dev] [PATCH] ofp-actions: Add "ingress" and "egress" options to "sample" action.

2016-11-23 Thread Ben Pfaff
Thanks, I posted a v2 and added a Tested-by from you, which in this case is more valuable than an Acked-by since it's harder to get. I'm going to give until at least Monday to get other reviews since Thursday and Friday are holidays here. On Thu, Nov 24, 2016 at 07:09:22AM +, Daniel Ye wrote:

Re: [ovs-dev] GPRS Tunnelling Protocol (GTP)

2016-11-23 Thread Enrique Chirivella Pérez
Thanks for the information Joe. Enrique Chirivella Pérez. On 23 November 2016 at 19:39, Joe Stringer wrote: > On 23 November 2016 at 04:03, Enrique Chirivella Pérez > wrote: > > Hi I wanted to know, if OpenVSwitch supports GPRS Tunnelling Protocol > (GTP). > > No. > > It looks like upstream