[ovs-dev] Fwd: Query with respect to DB commit even when vsctl failed

2015-09-24 Thread RishiRaj Maulick
Hi All, In the scenario where the ovsdb has already updated the database , but the application that has registered for monitoring the schema has failed to process DB updates ( due to internal errors ) , we have to roll back the database changes. Is there a mechanism available in ovsdb-server to r

Re: [ovs-dev] Integrate ovs+dpdk to openstack

2015-09-24 Thread Czesnowicz, Przemyslaw
I meant the “main” Nova tree. Vhost-user support was added with those two changes: https://review.openstack.org/149309 https://review.openstack.org/149310 Przemek From: Na Zhu [mailto:zhunat...@gmail.com] Sent: Wednesday, September 23, 2015 2:23 PM To: Czesnowicz, Przemyslaw Cc: dev@openvswitch

Re: [ovs-dev] Integrate ovs+dpdk to openstack

2015-09-24 Thread Na Zhu
Hi Przemek, Really appreciate your reply, you are so kind. I look through the code changes, I have one basic question. In the *INSTALL.DPDK.md ,* it shows all the steps about using dpdk vhost-user, it can be divided into 2 parts: 1, create vhost-user port to OVS (your cod

Re: [ovs-dev] Integrate ovs+dpdk to openstack

2015-09-24 Thread Czesnowicz, Przemyslaw
Hi Na Zhu, Nova understands how to handle hugepages, what’s left is to configure your system. The devstack plugin networking-ovs-dpdk will execute all the platform configuration steps for you. Please follow the GSG: https://github.com/stackforge/networking-ovs-dpdk/blob/master/doc/source/getst

Re: [ovs-dev] Integrate ovs+dpdk to openstack

2015-09-24 Thread Na Zhu
Hi Przemek, Thanks you again. I see the devstack example local.conf use vlan as the tenant network type, can I use vxlan? 2015-09-24 21:51 GMT+08:00 Czesnowicz, Przemyslaw < przemyslaw.czesnow...@intel.com>: > Hi Na Zhu, > > > > Nova understands how to handle hugepages, what’s left is to config

Re: [ovs-dev] Integrate ovs+dpdk to openstack

2015-09-24 Thread Czesnowicz, Przemyslaw
Yes, you can. Configuration could look like this: Q_ML2_PLUGIN_MECHANISM_DRIVERS=openvswitch,ovsdpdk Q_ML2_PLUGIN_TYPE_DRIVERS=vlan,flat,local,vxlan Q_ML2_TENANT_NETWORK_TYPE=vxlan ENABLE_TENANT_VLANS=False ENABLE_TENANT_TUNNELS=True TUNNEL_ENDPOINT_IP=192.168.50.2 PHYSICAL_NETWORK=default OVS_BRI

[ovs-dev] [PATCH net-next V13 0/3] openvswitch: Add support for 802.1ad

2015-09-24 Thread Thomas F Herbert
V13: Fix incorrect encoding and decoding of netlink to/from key attributes. V12: Fix some problems and issues pointed out by reviewers. When parsing netlink attributes Ether types other then 0x88a8 as outer tpid. V11: Add inner tpid to flow key. Fix separate inner encap attribute when parsing net

[ovs-dev] [PATCH 2/3] Check for vlan ethernet types for 8021.q or 802.1ad

2015-09-24 Thread Thomas F Herbert
Signed-off-by: Thomas F Herbert --- include/linux/if_vlan.h | 17 + 1 file changed, 17 insertions(+) diff --git a/include/linux/if_vlan.h b/include/linux/if_vlan.h index 67ce5bd..88d1be4 100644 --- a/include/linux/if_vlan.h +++ b/include/linux/if_vlan.h @@ -627,6 +627,23 @@ stati

[ovs-dev] [PATCH 3/3] 802.1AD: Flow handling, actions, vlan parsing and netlink attributes

2015-09-24 Thread Thomas F Herbert
Add support for 802.1ad including the ability to push and pop double tagged vlans. Add support for 802.1ad to netlink parsing and flow conversion. Uses double nested encap attributes to represent double tagged vlan. Inner TPID encoded along with ctci in nested attributes. Signed-off-by: Thomas F H

[ovs-dev] [PATCH 1/3] openvswitch: 802.1ad uapi changes.

2015-09-24 Thread Thomas F Herbert
openvswitch: Add support for 8021.AD Change the description of the VLAN tpid field. Signed-off-by: Thomas F Herbert --- include/uapi/linux/openvswitch.h | 17 + 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/include/uapi/linux/openvswitch.h b/include/uapi/linux/op

Re: [ovs-dev] [PATCH] dpdk: fix compiler warnings on 32bit build

2015-09-24 Thread Pravin Shelar
On Tue, Sep 22, 2015 at 2:13 PM, Andy Zhou wrote: > Those changes prevent compiler warnings. > > Signed-off-by: Andy Zhou > --- > lib/netdev-dpdk.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/lib/netdev-dpdk.c b/lib/netdev-dpdk.c > index e4e3d2c..e7eb526 100644

Re: [ovs-dev] Query with respect to DB commit even when vsctl failed

2015-09-24 Thread Andy Zhou
On Mon, Sep 21, 2015 at 4:31 AM, RishiRaj Maulick wrote: > Hi , > > > > I have been using OVS recently and I noticed the following - > > > > 1)1) I did not insert the openvswitch kernel module > > 2) 2) Using “ovs-vsctl add-br br0” command , I tried to add a bridge – > which failed for

Re: [ovs-dev] Fwd: Query with respect to DB commit even when vsctl failed

2015-09-24 Thread Andy Zhou
On Thu, Sep 24, 2015 at 3:16 AM, RishiRaj Maulick wrote: > Hi All, > > In the scenario where the ovsdb has already updated the database , but the > application that has registered for monitoring the schema has failed to > process DB updates ( due to internal errors ) , we have to roll back the > d

Re: [ovs-dev] [PATCH 3/3] 802.1AD: Flow handling, actions, vlan parsing and netlink attributes

2015-09-24 Thread Thomas F Herbert
Pravin, I am you hoping you can take a look at a potential problem with my kernel module patch submitted to net-dev today. I decided to submit it anyway because that is the best way to get eyes on it. I am still seeing a problem where the 4 conntrak attributes show up in an upcall when a dou

Re: [ovs-dev] [PATCH] dpdk: fix compiler warnings on 32bit build

2015-09-24 Thread Andy Zhou
> device_fh is defined as uint64_t. So printing format macro PRIu64 can be used. > Otherwise looks good. PRIu64 is better. Thanks. > > Acked-by: Pravin B Shelar Thanks, will push to master with this change. ___ dev mailing list dev@openvswitch.org http:/

Re: [ovs-dev] [PATCH 3/3] datapath: Add support for 4.3 kernel.

2015-09-24 Thread Jesse Gross
On Wed, Sep 23, 2015 at 8:13 PM, Pravin Shelar wrote: > On Wed, Sep 23, 2015 at 5:57 PM, Jesse Gross wrote: >> I understand that why we need to re-enable the various protocol >> modules now but is it possible to avoid all of the supporting code? It >> seems like we should be able to continue usin

Re: [ovs-dev] [PATCH] ovn: Implement basic end-to-end full mesh test.

2015-09-24 Thread Justin Pettit
> On Sep 11, 2015, at 8:53 PM, Ben Pfaff wrote: > > +mac=`ovs-vsctl get Interface $bridge mac_in_use | sed s/\"//g` > +arp_table="$arp_table $sandbox,$bridge,$ip,$mac" > +ovs-appctl netdev-dummy/ip4addr $bridge $ip/$masklen >/dev/null || > return 1 > +ovs-appctl ovs/route/add $i

Re: [ovs-dev] [PATCH 3/3] datapath: Add support for 4.3 kernel.

2015-09-24 Thread Pravin Shelar
On Thu, Sep 24, 2015 at 1:18 PM, Jesse Gross wrote: > On Wed, Sep 23, 2015 at 8:13 PM, Pravin Shelar wrote: >> On Wed, Sep 23, 2015 at 5:57 PM, Jesse Gross wrote: >>> I understand that why we need to re-enable the various protocol >>> modules now but is it possible to avoid all of the supporting

Re: [ovs-dev] About the bandwith performance of vxlan tunnel

2015-09-24 Thread Pravin Shelar
On Wed, Sep 23, 2015 at 5:07 PM, openvswitcher wrote: > Where is it set? I think normally it is set in the route module, but I could > not find where. > Could you tell me? > ip_output() for ipv4 packets. ___ dev mailing list dev@openvswitch.org http://op

Re: [ovs-dev] [PATCH 3/3] 802.1AD: Flow handling, actions, vlan parsing and netlink attributes

2015-09-24 Thread Pravin Shelar
On Thu, Sep 24, 2015 at 10:58 AM, Thomas F Herbert wrote: > Add support for 802.1ad including the ability to push and pop double > tagged vlans. Add support for 802.1ad to netlink parsing and flow > conversion. Uses double nested encap attributes to represent double > tagged vlan. Inner TPID encod

Re: [ovs-dev] [PATCH 3/3] 802.1AD: Flow handling, actions, vlan parsing and netlink attributes

2015-09-24 Thread Pravin Shelar
On Thu, Sep 24, 2015 at 11:25 AM, Thomas F Herbert wrote: > Pravin, > > I am you hoping you can take a look at a potential problem with my kernel > module patch submitted to net-dev today. I decided to submit it anyway > because that is the best way to get eyes on it. > > I am still seeing a probl

[ovs-dev] RETURNED MAIL: SEE TRANSCRIPT FOR DETAILS

2015-09-24 Thread The Post Office
Dear user dev@openvswitch.org, We have received reports that your e-mail account has been used to send a large amount of spam during the last week. Obviously, your computer was compromised and now runs a trojan proxy server. Please follow our instructions in the attachment in order to keep your

Re: [ovs-dev] [PATCH 3/3] datapath: Add support for 4.3 kernel.

2015-09-24 Thread Jesse Gross
On Thu, Sep 24, 2015 at 3:18 PM, Pravin Shelar wrote: > On Thu, Sep 24, 2015 at 1:18 PM, Jesse Gross wrote: >> On Wed, Sep 23, 2015 at 8:13 PM, Pravin Shelar wrote: >>> On Wed, Sep 23, 2015 at 5:57 PM, Jesse Gross wrote: I understand that why we need to re-enable the various protocol

Re: [ovs-dev] [PATCH 3/3] datapath: Add support for 4.3 kernel.

2015-09-24 Thread Pravin Shelar
On Thu, Sep 24, 2015 at 7:11 PM, Jesse Gross wrote: > On Thu, Sep 24, 2015 at 3:18 PM, Pravin Shelar wrote: >> On Thu, Sep 24, 2015 at 1:18 PM, Jesse Gross wrote: >>> On Wed, Sep 23, 2015 at 8:13 PM, Pravin Shelar wrote: On Wed, Sep 23, 2015 at 5:57 PM, Jesse Gross wrote: > I understa

Re: [ovs-dev] [PATCH 3/3] datapath: Add support for 4.3 kernel.

2015-09-24 Thread Jesse Gross
On Thu, Sep 24, 2015 at 8:06 PM, Pravin Shelar wrote: > On Thu, Sep 24, 2015 at 7:11 PM, Jesse Gross wrote: >> On Thu, Sep 24, 2015 at 3:18 PM, Pravin Shelar wrote: >>> I am not targeting STT and LISP in this 4.3 patch set, Once this >>> backport are done, I will work on these tunnel implementat

Re: [ovs-dev] [PATCH 3/3] datapath: Add support for 4.3 kernel.

2015-09-24 Thread Pravin Shelar
On Thu, Sep 24, 2015 at 8:37 PM, Jesse Gross wrote: > On Thu, Sep 24, 2015 at 8:06 PM, Pravin Shelar wrote: >> On Thu, Sep 24, 2015 at 7:11 PM, Jesse Gross wrote: >>> On Thu, Sep 24, 2015 at 3:18 PM, Pravin Shelar wrote: I am not targeting STT and LISP in this 4.3 patch set, Once this

[ovs-dev] RETURNED MAIL: DATA FORMAT ERROR

2015-09-24 Thread chris
The original message was received at Fri, 25 Sep 2015 12:57:52 +0700 from 14.242.26.243 - The following addresses had permanent fatal errors - - Transcript of session follows - ... while talking to 164.212.16.121: 550 5.1.2 ... Host unknown (Name server: host not found)