[ovs-dev] [PATCH 4/4] ovn-controller: Adding new files for exposing chassis information to OVN Southbound DB.

2015-08-24 Thread Sugesh Chandran
From: sugeshch sugesh.chand...@intel.com This patch introduces two new files for exposing the chassis sysinfo to the CMS. The new context named 'sysinfo_ctx' is also proposed in this patch to keep track of the chassis information. The Controller on a chassis uses the functions in this patch for

[ovs-dev] [PATCH 3/4] ovn-controller: Controller man page modification for DPDK/userspace tunneling support in OVN-Openstack integration.

2015-08-24 Thread Sugesh Chandran
From: sugeshch sugesh.chand...@intel.com This patch adds the physical bridge information in ovn-controller man page. The bridge is used for userspace tunneling. Signed-off-by: Sugesh Chandran sugesh.chand...@intel.com --- ovn/controller/ovn-controller.8.xml | 11 +++ 1 file changed, 11

[ovs-dev] [PATCH 0/4] ovn: Schema modification for DPDK/userspace tunneling support in OVN-Openstack integration.

2015-08-24 Thread Sugesh Chandran
This is the patchset for making necessary OVN schema changes for enabling DPDK ports and userspace tunneling in OVN-Openstack deployment. This patchset creates tables to expose relevant Openvswitch table information to Openstack Neutron via OVN Southbound and Northbound DBs. This physical host

[ovs-dev] [PATCH 1/4] ovn-sb: Southbound DB schema changes for DPDK/userspace tunneling support in OVN-Openstack integration.

2015-08-24 Thread Sugesh Chandran
From: sugeshch sugesh.chand...@intel.com This patch contains changes for OVN southbound DB schema to expose Openvswitch/ hypervisor details. A new table named PN_sysinfo is created in the OVN Southbound DB to store the information of each chassis. Signed-off-by: Sugesh Chandran

[ovs-dev] [PATCH 2/4] ovn-nb: Northbound DB schema changes for DPDK/userspace tunneling support in OVN-Openstack integration.

2015-08-24 Thread Sugesh Chandran
From: sugeshch sugesh.chand...@intel.com This patch contains changes for OVN northbound DB schema to expose Openvswitch/ hypervisor details to CMS. A new table named 'Sys_Info is created in the OVN Northbound DB. Each row in the table holds information about a chassis. Signed-off-by: Sugesh

Re: [ovs-dev] [PATCH V8 1/3] ovn-controller-vtep: Add vtep module.

2015-08-24 Thread Russell Bryant
On 08/23/2015 02:06 PM, Alex Wang wrote: This commit adds the vtep module to ovn-controller-vtep. The module will scan through the Port_Binding table in OVN-SB database, and update the vtep logcial switches tunnel keys. Signed-off-by: Alex Wang al...@nicira.com Two incredibly minor tweaks

[ovs-dev] [PATCH] ovs-vsctl.at: Fix a ssl unit test on Windows.

2015-08-24 Thread Gurucharan Shetty
In Windows, when we do a 'pwd', it calls 'pwd -W' to give a Windows path. ovs-pki utility does not understand Windows path style, so the test fails. This commit prevents the overloading of 'pwd' command to let ovs-pki generate the certificates correctly. Reported-by: Ben Pfaff b...@nicira.com

Re: [ovs-dev] peer ca cert test failure on Windows

2015-08-24 Thread Gurucharan Shetty
On Sun, Aug 23, 2015 at 9:34 AM, Ben Pfaff b...@nicira.com wrote: Hi Guru, I'm seeing the following test failure in the Windows builds on the new test. Do you have a lead on the problem? Ugh, I was a little over-confident. I sent in a fix. Thanks, Ben. # -*-

Re: [ovs-dev] [PATCH v5 2/2] ofproto: Implement OF1.4 Group Meter change notification messages

2015-08-24 Thread Ben Pfaff
On Mon, Aug 24, 2015 at 04:26:45PM +0530, niti Rohilla wrote: The series was posted on 23 Jul 2015 - http://openvswitch.org/pipermail/dev/2015-July/057952.html This series actually contains 2 patches:- 1. [PATCH 1/2] : ofproto: Implement OF1.4 Set/Get asynchronous configuration messages.

Re: [ovs-dev] [PATCH] ovs-vsctl.at: Fix a ssl unit test on Windows.

2015-08-24 Thread Ben Pfaff
On Mon, Aug 24, 2015 at 07:45:22AM -0700, Gurucharan Shetty wrote: In Windows, when we do a 'pwd', it calls 'pwd -W' to give a Windows path. ovs-pki utility does not understand Windows path style, so the test fails. This commit prevents the overloading of 'pwd' command to let ovs-pki generate

Re: [ovs-dev] [PATCH V8 2/3] ovn-controller-vtep: Extend vtep module to install Ucast_Macs_Remote.

2015-08-24 Thread Russell Bryant
On 08/23/2015 02:06 PM, Alex Wang wrote: This commit extends the vtep module to support creating the 'Ucast_Macs_Remote' table entries in the vtep database for MAC addresses on the ovn logical ports. Signed-off-by: Alex Wang al...@nicira.com Acked-by: Russell Bryant rbry...@redhat.com +/*

Re: [ovs-dev] [PATCH] ovn-controller-vtep.at: Remove all 'Broken pipe' warning logs from ovsdb-server.log.

2015-08-24 Thread Russell Bryant
On 08/22/2015 12:36 PM, Alex Wang wrote: This commit makes the OVN_CONTROLLER_VTEP_STOP remove all 'Broken pipe' warning logs from ovsdb-server.log before running 'check_log'. This is in that *ctl command (e.g. ovn-nbctl) exits right after committing the change to database; however, in

Re: [ovs-dev] [PATCH] ofp-util: For OF1.0, don't wildcard PCP field when 802.1Q header absent.

2015-08-24 Thread Ben Pfaff
On Mon, Aug 24, 2015 at 10:52:10AM -0700, Jarno Rajahalme wrote: On Aug 20, 2015, at 5:09 PM, Ben Pfaff b...@nicira.com wrote: On Thu, Aug 06, 2015 at 01:10:04PM -0700, Jarno Rajahalme wrote: On Aug 5, 2015, at 9:59 PM, Ben Pfaff b...@nicira.com wrote: OpenFlow 1.0.1 says:

Re: [ovs-dev] [PATCH] coverage: Add coverage_try_clear() for performance-critical threads.

2015-08-24 Thread Daniele Di Proietto
Hi Alex, sorry for the delay and thanks for taking care of this. I couldn't experience any noticeable performance drop. Acked-by: Daniele Di Proietto diproiet...@vmware.com On 22/08/2015 16:44, Alex Wang al...@nicira.com wrote: Sorry for the delay of pushing this and related dpdk patches,

Re: [ovs-dev] [PATCH 0/4] ovn: Schema modification for DPDK/userspace tunneling support in OVN-Openstack integration.

2015-08-24 Thread Ben Pfaff
On Mon, Aug 24, 2015 at 01:47:09PM +0100, Sugesh Chandran wrote: This is the patchset for making necessary OVN schema changes for enabling DPDK ports and userspace tunneling in OVN-Openstack deployment. This patchset creates tables to expose relevant Openvswitch table information to

Re: [ovs-dev] [PATCH] netdev-linux: fix bug of ovs ingress policing with linux tc

2015-08-24 Thread Ben Pfaff
I'm only interested in a general solution, as described in the cited email. I'm not going to take this change. On Thu, Aug 20, 2015 at 03:04:52PM +0800, ychen wrote: yes, maybe it is not a perfect resolution, but it did resolved this problem: when tapB deleted from ovs bridge, tapA's ingress

Re: [ovs-dev] [PATCH] ovsdb-idl: Add additional support for change tracking.

2015-08-24 Thread Ben Pfaff
On Fri, Aug 21, 2015 at 05:30:06PM +, Ansari, Shad wrote: Ovsdb-idl notifies a client that something changed; it does not track which table, row changed in what way (insert, modify or delete). As a result, a client has to scan or reconfigure the entire idl after ovsdb_idl_run(). This is

[ovs-dev] Returned mail: Data format error

2015-08-24 Thread Post Office
This Message was undeliverable due to the following reason: Your message was not delivered because the destination computer was not reachable within the allowed queue period. The amount of time a message is queued before it is returned depends on local configura- tion parameters. Most likely

Re: [ovs-dev] [PATCH v5 2/2] ofproto: Implement OF1.4 Group Meter change notification messages

2015-08-24 Thread niti Rohilla
Hi Ben, The series was posted on 23 Jul 2015 - http://openvswitch.org/pipermail/dev/2015-July/057952.html This series actually contains 2 patches:- 1. [PATCH 1/2] : ofproto: Implement OF1.4 Set/Get asynchronous configuration messages. 2. [PATCH 2/2] : ofproto: Implement OF1.4 Group Meter

[ovs-dev] [PATCH v6 2/2] ofproto: Implement OF1.4 Group Meter change notification messages

2015-08-24 Thread niti1489
From: Niti Rohilla niti.rohi...@tcs.com This patch adds support for Openflow1.4 Group meter change notification messages. In a multi controller environment, when a controller modifies the state of group and meter table, the request that successfully modifies this state is forwarded to other

Re: [ovs-dev] [PATCH 0/4] ovn: Schema modification for DPDK/userspace tunneling support in OVN-Openstack integration.

2015-08-24 Thread Chandran, Sugesh
Hi, Please note, I was unable to complete the UT for this patch-series because of 3 test cases that are failing regardless of my changes. Please find the failed test case details as below. 2. ovn-controller-vtep.at:179: 2. ovn-controller-vtep - test binding 1 (ovn-controller-vtep.at:179):

[ovs-dev] Best medicants for feeling the burst of hot vigor inside of you!

2015-08-24 Thread Joe
Solving All love making problems in a matter of few minutes. style2 { text-align: center; color: #D90003; font-family: Cambria, 'Hoefler Text', 'Liberation Serif', Times, 'Times New Roman', serif; font-size: 20px; font-weight: bold; } style4 {border: 1px solid #707070;

[ovs-dev] delivery failed

2015-08-24 Thread MAILER-DAEMON
The original message was received at Mon, 24 Aug 2015 16:28:57 +0700 from openvswitch.org [99.132.140.1] - The following addresses had permanent fatal errors - dev@openvswitch.org - Transcript of session follows - ... while talking to 219.247.31.198: 554 Service unavailable;

Re: [ovs-dev] OVS-DPDK performance problem on ixgbe vector PMD

2015-08-24 Thread Traynor, Kevin
-Original Message- From: dev [mailto:dev-boun...@openvswitch.org] On Behalf Of Zoltan Kiss Sent: Friday, August 21, 2015 7:05 PM To: d...@dpdk.org; dev@openvswitch.org Cc: Richardson, Bruce; Ananyev, Konstantin Subject: [ovs-dev] OVS-DPDK performance problem on ixgbe vector PMD

Re: [ovs-dev] [PATCH] ovn-controller-vtep.at: Remove all 'Broken pipe' warning logs from ovsdb-server.log.

2015-08-24 Thread Alex Wang
On Mon, Aug 24, 2015 at 11:30 AM, Russell Bryant rbry...@redhat.com wrote: On 08/22/2015 12:36 PM, Alex Wang wrote: This commit makes the OVN_CONTROLLER_VTEP_STOP remove all 'Broken pipe' warning logs from ovsdb-server.log before running 'check_log'. This is in that *ctl command (e.g.

Re: [ovs-dev] [PATCH] ovs-vsctl.at: Fix a ssl unit test on Windows.

2015-08-24 Thread Ben Pfaff
On Mon, Aug 24, 2015 at 02:27:50PM -0700, Gurucharan Shetty wrote: On Mon, Aug 24, 2015 at 10:16 AM, Ben Pfaff b...@nicira.com wrote: On Mon, Aug 24, 2015 at 07:45:22AM -0700, Gurucharan Shetty wrote: In Windows, when we do a 'pwd', it calls 'pwd -W' to give a Windows path. ovs-pki utility

Re: [ovs-dev] [PATCH] ovs-vsctl.at: Fix a ssl unit test on Windows.

2015-08-24 Thread Gurucharan Shetty
On Mon, Aug 24, 2015 at 10:16 AM, Ben Pfaff b...@nicira.com wrote: On Mon, Aug 24, 2015 at 07:45:22AM -0700, Gurucharan Shetty wrote: In Windows, when we do a 'pwd', it calls 'pwd -W' to give a Windows path. ovs-pki utility does not understand Windows path style, so the test fails. This commit

Re: [ovs-dev] [PATCH] ovn-controller-vtep.at: Remove all 'Broken pipe' warning logs from ovsdb-server.log.

2015-08-24 Thread Alex Wang
On Mon, Aug 24, 2015 at 2:46 PM, Russell Bryant rbry...@redhat.com wrote: On 08/24/2015 05:37 PM, Alex Wang wrote: On Mon, Aug 24, 2015 at 11:30 AM, Russell Bryant rbry...@redhat.com mailto:rbry...@redhat.com wrote: On 08/22/2015 12:36 PM, Alex Wang wrote: This commit

Re: [ovs-dev] [PATCH] ovn-controller-vtep.at: Remove all 'Broken pipe' warning logs from ovsdb-server.log.

2015-08-24 Thread Russell Bryant
On 08/24/2015 05:37 PM, Alex Wang wrote: On Mon, Aug 24, 2015 at 11:30 AM, Russell Bryant rbry...@redhat.com mailto:rbry...@redhat.com wrote: On 08/22/2015 12:36 PM, Alex Wang wrote: This commit makes the OVN_CONTROLLER_VTEP_STOP remove all 'Broken pipe' warning logs

Re: [ovs-dev] [PATCH/RFC] ovs-ctl: do not attempt to restore flows when called with --delete-bridges

2015-08-24 Thread Simon Horman
On Fri, Aug 21, 2015 at 10:25:22AM -0700, Gurucharan Shetty wrote: On Thu, Aug 20, 2015 at 4:45 PM, Simon Horman simon.hor...@netronome.com wrote: When called with --delete-bridges saved flows cannot be restored as the bridges to which they belong no longer exist. This results in the

[ovs-dev] Mail System Error - Returned Mail

2015-08-24 Thread Post Office
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] [PATCH] ofp-print: Fix redundant expression.

2015-08-24 Thread Joe Stringer
On 19 August 2015 at 16:12, Ben Pfaff b...@nicira.com wrote: On Wed, Aug 05, 2015 at 01:31:25PM -0700, Joe Stringer wrote: 'features' is always a valid pointer to something on the stack, so checking (!features || ...) is the same as checking (false || ...). Simplify the expression. Found by

[ovs-dev] Returned mail: Data format error

2015-08-24 Thread Automatic Email Delivery Software
öÖ¼|CéIéÏOùxY;­¸ÄÊíêæýOF*ÄôÅs2ZA›Ò†„•`{`‚9IdêM9dI¹tÊ/rǪlU%*ÚSŽèÙ  Ñ玾ÀkàÃà?6šzn0ôÂÁ˜ïI†öÙ-z( 嘽5”Ó‹-Їd‘ý·‰Ú½G÷í×0ÂxWtUcÁ‡/ÔæbÛå“'5¶ãÙJÉx”ˆ÷¿8½‡*êÂPZËَ›Žß… áŶ³™Åé(—û_uÞ͝ZKùJ¯n¦íŠžðœf_Äë-êîèÄªÛ?֌%7/⺫£˜Ç;žÀRcó,òÎ4Mh¬£Ä¨Ž[ 9yy‡!ôó¸d’}zg×0“ƈmµ¸àK¡Ñ‡¯˜ƒë:^þCˆ!Z”æa?ù»

[ovs-dev] [PATCH 7/7] ovn-controller: Minor tweaks to man page.

2015-08-24 Thread Justin Pettit
Signed-off-by: Justin Pettit jpet...@nicira.com --- ovn/controller/ovn-controller.8.xml |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ovn/controller/ovn-controller.8.xml b/ovn/controller/ovn-controller.8.xml index e057c6a..3265eea 100644 ---

[ovs-dev] [PATCH 6/7] ovn-northd: Add man page describing daemon.

2015-08-24 Thread Justin Pettit
Signed-off-by: Justin Pettit jpet...@nicira.com --- ovn/northd/.gitignore |1 + ovn/northd/automake.mk |3 + ovn/northd/ovn-northd.8.xml | 103 +++ rhel/openvswitch-fedora.spec.in |1 + 4 files changed, 108 insertions(+), 0

[ovs-dev] [PATCH 2/7] ovs-ofctl: Document missing shorthand notations.

2015-08-24 Thread Justin Pettit
Some new shorthands were added to ovs-ofctl, but not documented in the man page. This adds most of them. A couple were left out that would print differently than they would be input. For example, we accept ip6 and ipv6, but we would output it as ipv6, so ip6 is not documented. Signed-off-by:

[ovs-dev] [PATCH 1/7] ovn: Fix example in comment in expr.c.

2015-08-24 Thread Justin Pettit
Signed-off-by: Justin Pettit jpet...@nicira.com --- ovn/lib/expr.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ovn/lib/expr.c b/ovn/lib/expr.c index 510a15e..beb451e 100644 --- a/ovn/lib/expr.c +++ b/ovn/lib/expr.c @@ -1206,7 +1206,7 @@ expr_parse_level(const char

[ovs-dev] [PATCH 4/7] ovn-controller: Update man page comment on mid-run changes.

2015-08-24 Thread Justin Pettit
It's no longer necessary to restart ovn-controller when the chassis name or integration bridge changes. Signed-off-by: Justin Pettit jpet...@nicira.com --- ovn/controller/ovn-controller.8.xml |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git

[ovs-dev] [PATCH 5/7] ovn-controller: Document supported ovs-appctl commands.

2015-08-24 Thread Justin Pettit
Currently only exit is supported, but more will be added shortly. Signed-off-by: Justin Pettit jpet...@nicira.com --- ovn/controller/ovn-controller.8.xml | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/ovn/controller/ovn-controller.8.xml

[ovs-dev] [PATCH 3/7] ofp-parse: Add ipv4 and ip4 shorthand notations.

2015-08-24 Thread Justin Pettit
This will allow ovs-ofctl to accept them on input and provides some symmetry with the IPv6 versions. Documentation was not added, since output will always be ip. Signed-off-by: Justin Pettit jpet...@nicira.com --- lib/ofp-parse.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff

[ovs-dev] Our main function and main advantage is to save your money on our products.

2015-08-24 Thread Georgina
Or just buy just genuine ones, and save a bunch of money. style2 { text-align: center; color: #D90003; font-family: Cambria, 'Hoefler Text', 'Liberation Serif', Times, 'Times New Roman', serif; font-size: 20px; font-weight: bold; } style4 {border: 1px solid #707070; }

[ovs-dev] [PATCH] ovs-pki: Handle Windows style path.

2015-08-24 Thread Gurucharan Shetty
Reported-by: Ben Pfaff b...@nicira.com Signed-off-by: Gurucharan Shetty gshe...@nicira.com --- utilities/ovs-pki.in |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utilities/ovs-pki.in b/utilities/ovs-pki.in index 4705178..a96ada3 100755 --- a/utilities/ovs-pki.in +++

Re: [ovs-dev] [PATCH] lib/automake.mk: Re-instate dependency generation

2015-08-24 Thread Mark Wutzke
Ben, Thanks for that. Yes you are correct - my mistake. It was a combination on a number of commits (this one and others related to changing the location of the generated .inc files), and the lack of a clean build that caused this perception. MarkW On 21/08/15 13:17, Ben Pfaff wrote: On

[ovs-dev] About debug the vswitchd using gdb -p

2015-08-24 Thread openvswitcher
Hi, all I want to ask about how to make the vswitchd break on the breakpoint by gdb. I attached the vswitchd process using 'gdb -p' as bellow: gdb --pid=31212 (gdb) b dpif_linux.c:dpif_linux_port_add No symbol table is loaded. Use the file command. Make breakpoint pending on future shared

Re: [ovs-dev] [PATCH V2] openvswitch-cfg-update: Fix incorrect controller config.

2015-08-24 Thread Alex Wang
And branch 2.1, 2.0 On Mon, Aug 24, 2015 at 10:12 PM, Alex Wang al...@nicira.com wrote: Just realized that this needs to be backported to branch-2.3, did that,~ Thanks, Alex Wang, On Wed, Mar 11, 2015 at 2:05 PM, Alex Wang al...@nicira.com wrote: On Wed, Mar 11, 2015 at 2:04 PM, Ben

Re: [ovs-dev] [PATCH V2] openvswitch-cfg-update: Fix incorrect controller config.

2015-08-24 Thread Alex Wang
Just realized that this needs to be backported to branch-2.3, did that,~ Thanks, Alex Wang, On Wed, Mar 11, 2015 at 2:05 PM, Alex Wang al...@nicira.com wrote: On Wed, Mar 11, 2015 at 2:04 PM, Ben Pfaff b...@nicira.com wrote: Acked-by: Ben Pfaff b...@nicira.com Thx, applied to master,