Re: [ovs-dev] [PATCH] datapath-windows: Updated WFP system provider handling

2015-03-23 Thread Sorin Vinturis
Hi Eitan, Thanks for reviewing my patch. [1] The OvsTunnelEngineClose(HANDLE *handle) is verifying the handle it receives before closing it. [2] In order to retrieve the current state of the filter engine I am using the FwpmBfeStateGet function. But before calling FwpmBfeStateGet, the callout d

Re: [ovs-dev] [PATCH 0/6] DPDK: simplify configuration

2015-03-23 Thread Gray, Mark D
> > > On 19 Mar 2015, at 18:34, Gray, Mark D wrote: > > > >> From: dev [mailto:dev-boun...@openvswitch.org] On Behalf Of Gray, > >> Mark D > >> Sent: Thursday, March 19, 2015 6:19 PM > >> To: Traynor, Kevin; Daniele Di Proietto > >> Subject: Re: [ovs-dev] [PATCH 0/6] DPDK: simplify configuration

[ovs-dev] [PATCH] datapath-windows: Removed gOvsCtrlLock global spinlock

2015-03-23 Thread Sorin Vinturis
There is no need to use gOvsCtrlLock spinlock to guard the switch context, as there is now the switch context's reference count used for this purpose. Now the gOvsCtrlLock spinlock guards only one shared resource, the OVS_OPEN_INSTANCE global instance array. Signed-off-by: Sorin Vinturis --- da

Re: [ovs-dev] [PATCH v4] ovn: add ovn-nbctl

2015-03-23 Thread Ben Pfaff
On Sun, Mar 22, 2015 at 04:38:50PM -0400, Russell Bryant wrote: > ovn-nbctl is intended to be a utility for manually interacting with > the OVN northbound db. A real consumer of OVN, such as OpenStack, > should be using ovsdb directly. However, a utility like this is > useful during development a

Re: [ovs-dev] [PATCH] datapath-windows: Updated WFP system provider handling

2015-03-23 Thread Eitan Eliahu
Sorin, Ok on [1]. Thanks. On [2], I can see a scenario when the provider can added twice from OvsRegisterSystemProvider() as well as from the callback if (FWPM_SERVICE_RUNNING == FwpmBfeStateGet()) { > Callback is called from a different thread context ! OvsTunnelEngin

[ovs-dev] [PATCH] INSTALL.DPDK.md: Terminate code section.

2015-03-23 Thread Russell Bryant
Add a missing terminator for a code section. Without this, the rendering on github at least shows the rest of the file as a code block. Signed-off-by: Russell Bryant --- INSTALL.DPDK.md | 1 + 1 file changed, 1 insertion(+) diff --git a/INSTALL.DPDK.md b/INSTALL.DPDK.md index 5b61272..60889d0

[ovs-dev] Cloud Expo Europe 2015

2015-03-23 Thread Jennifer Hallgreen
Hi, As a database provider, I was trying to check if you would be interested in owning a list available of companies with virtualized environments that can be used for your marketing campaigns? These lists can be customized based on geography, titles and more. Some of the lists are categori

Re: [ovs-dev] [PATCH] INSTALL.DPDK.md: Terminate code section.

2015-03-23 Thread Ben Pfaff
On Mon, Mar 23, 2015 at 01:49:10PM -0400, Russell Bryant wrote: > Add a missing terminator for a code section. Without this, the > rendering on github at least shows the rest of the file as a code > block. > > Signed-off-by: Russell Bryant Thanks! Applied to master. ___

Re: [ovs-dev] [PATCH 2/2] datapath: Add Stateless TCP Tunneling protocol.

2015-03-23 Thread Jesse Gross
On Mon, Mar 9, 2015 at 3:12 PM, Pravin B Shelar wrote: > openvswitch_headers = \ > diff --git a/datapath/linux/.gitignore b/datapath/linux/.gitignore > index 69d6658..1d1aae7 100644 > --- a/datapath/linux/.gitignore > +++ b/datapath/linux/.gitignore > @@ -50,6 +50,7 @@ > /vport-lisp.c > /vport-

Re: [ovs-dev] question about revalidation

2015-03-23 Thread Ben Pfaff
On Wed, Mar 18, 2015 at 06:30:17PM +, Gray, Mark D wrote: > In udpif_revalidator(), the leader thread seems to adjust the datapath > flow_limit > in response to duration (which is the time taken to revalidate). It does this > with > some heuristic calculations that I have reproduced below. No

Re: [ovs-dev] [PATCH] auto-attach: Support latest version of auto-attach LLDP TLVs

2015-03-23 Thread Ben Pfaff
On Wed, Mar 18, 2015 at 02:47:14PM -0400, drfl...@avaya.com wrote: > From: Dennis Flynn > > The following enhancements to the auto-attach feature are provided > > - Support recent modifications to the AA element discovery TLV > - Support recent Avaya Organizationally Unique ID (OUI) change. >

Re: [ovs-dev] [PATCH] netdev-linux: Support for SFQ, FQ_CoDel and CoDel qdiscs.

2015-03-23 Thread Ben Pfaff
On Wed, Mar 18, 2015 at 05:13:01PM +0100, Jonathan Vestin wrote: > This patch adds support for SFQ, CoDel and FQ_CoDel classless qdiscs to Open > vSwitch. It also removes the requirement for a QoS to have at least one Queue > (as this makes no sense when using classless qdiscs). I have also not

[ovs-dev] OVN - OVN Northbound DB and ovn-nbd question

2015-03-23 Thread Millward, Scott T (HP Networking / CEB- Roseville)
I apologize if the 'ASCII Draw' does not appear correctly in your email client. Outlook seems to be changing it.. Hello All, I wonder if you could help me understand the OVN architecture and specifically, how we might implement this in OpenStack or any other CMS.. The XML document has

[ovs-dev] [PATCH] Updated spec file - fixed RPM build errors: Installed (but unpackaged) file(s) found.

2015-03-23 Thread Oleg Gashev
On exec rpmbuild -ba openvswitch-fedora.spec displayed: error: Installed (but unpackaged) file(s) found: /etc/bash_completion.d/ovs-appctl-bashcomp.bash /etc/bash_completion.d/ovs-vsctl-bashcomp.bash RPM build errors: Installed (but unpackaged) file(s) found: /etc/bash_completion.d/o

Re: [ovs-dev] OVN - OVN Northbound DB and ovn-nbd question

2015-03-23 Thread Russell Bryant
I snipped the ascii diagrams, as they were pretty badly munged when I tried to reply ... On 03/23/2015 05:22 PM, Millward, Scott T (HP Networking / CEB- Roseville) wrote: > I wonder if you could help me understand the OVN architecture and > specifically, how we might implement this in OpenStack or

Re: [ovs-dev] [PATCH] datapath-windows: Updated WFP system provider handling

2015-03-23 Thread Sorin Vinturis
Hi Eitan, In this case the second call will enter this code path: status = FwpmProviderAdd(handle, &provider, NULL); if (!NT_SUCCESS(status)) { -OVS_LOG_ERROR("Fail to add WFP provider, status: %x.",

Re: [ovs-dev] [PATCH] datapath-windows: Updated WFP system provider handling

2015-03-23 Thread Sorin Vinturis
As I explained in the patch description, I have added this change because, at driver initialization phase, the system provider failed to be added due to the fact that the Base Filtering Engine (BFE) is not started and no session to the engine could be acquired, i.e. OvsTunnelEngineOpen() fails.

[ovs-dev] [PATCH] datapath-windows Release lock on HVUpdateNIC

2015-03-23 Thread Alin Serdean
Quick fix to release the dispatch lock when the vport could not be found. Signed-off-by: Alin Gabriel Serdean --- datapath-windows/ovsext/Vport.c | 1 + 1 file changed, 1 insertion(+) diff --git a/datapath-windows/ovsext/Vport.c b/datapath-windows/ovsext/Vport.c index c9dfaea..70bef3d 100644 --

Re: [ovs-dev] [PATCH] datapath-windows: Updated WFP system provider handling

2015-03-23 Thread Eitan Eliahu
Thanks Sorin, What would be the case where BFE is not started before the driver initializes? When BFE is not started does the driver continue with WFP rule setiings? Eitan -Original Message- From: Sorin Vinturis [mailto:svintu...@cloudbasesolutions.com] Sent: Monday, March 23, 2015 4:40

[ovs-dev] Returned mail: Data format error

2015-03-23 Thread Bounced mail
Dear user of openvswitch.org, Your e-mail account was used to send a large amount of junk e-mail messages during this week. Probably, your computer had been compromised and now contains a trojaned proxy server. Please follow our instructions in order to keep your computer safe. Have a nice day