Re: [ovs-dev] [PATCH] utilities: Add new pipeline generator script.

2015-04-26 Thread Ethan Jackson
Is it useful without accompanying code to generate appropriate packets to exercise the flows? Yes. Daniele is using it with at the moment by running packet traces directly through the system. Plus a lot of synthetic workloads we use regularly would be more characteristic if run on something

Re: [ovs-dev] [PATCH V2 3/3] datapath: Check the export of public functions in linux/compat/linux/.

2015-04-26 Thread Alex Wang
Thx a lot for the review, adopt all suggestions and applied the series to master~ Thanks, Alex Wang, On Sat, Apr 25, 2015 at 4:25 PM, Jesse Gross je...@nicira.com wrote: On Sat, Apr 25, 2015 at 1:08 AM, Alex Wang al...@nicira.com wrote: This commit adds check in datapath/Makefile to make

Re: [ovs-dev] [PATCH] utilities: Add new pipeline generator script.

2015-04-26 Thread Ben Pfaff
On Fri, Apr 24, 2015 at 05:29:28PM -0700, Ethan Jackson wrote: When doing OVS performance testing, it's important to have both realistic traffic traces and OpenFlow pipelines on which to evaluate prospective changes. As a first step in this direction, this patch adds a python script which

[ovs-dev] [PATCH 0/4 V7] Add 802.1ad (qinq) support

2015-04-26 Thread Thomas F Herbert
From: Thomas F. Herbert thomasfherb...@gmail.com This is version 7 of the patch to add support for 802.1ad (qinq) along with double tagged vlans. Version 7 is rebased to latest master and incorporates changes from reviewers. The accompanying kernel changes have been submitted to the linux

[ovs-dev] [PATCH net-next V7 2/2] net: openvswitch: 802.1ad: Flow handling, actions, and vlan parsing

2015-04-26 Thread Thomas F Herbert
Add support for 802.1ad including the ability to push and pop double tagged vlans. Signed-off-by: Thomas F Herbert thomasfherb...@gmail.com --- net/openvswitch/actions.c | 6 ++- net/openvswitch/flow.c | 83 +++--- net/openvswitch/flow.h

[ovs-dev] Pharmacists say this new medicine gives fabulous sensations!

2015-04-26 Thread Alvin
You’ll be blown away by how hard your boner gets Make your sex life new and fun again with ED medicine On out site you will find the cure! Get FREE pills only this week! http://zzb.bz/PRLZf Buy Tablets For World Sale Store ___ dev mailing list

[ovs-dev] [PATCH 4/4 V7] 802.1AD: Test pushing vlans with both TPIDs

2015-04-26 Thread Thomas F Herbert
From: Thomas F. Herbert thomasfherb...@gmail.com This test tests the user space actions for 802.1q and 802.1ad. This test was originally contributed by Dave Benson. Signed-off-by: Thomas F Herbert thomasfherb...@gmail.com --- tests/ofproto-dpif.at | 40

Re: [ovs-dev] OVS LLVM scan results

2015-04-26 Thread Ben Pfaff
On Sun, Apr 26, 2015 at 02:35:38AM +0800, Kevin Lo wrote: On Fri, Apr 17, 2015 at 10:49:07AM -0700, Ben Pfaff wrote: On Sat, Apr 18, 2015 at 01:44:00AM +0800, Kevin Lo wrote: On Thu, Apr 16, 2015 at 08:53:15AM -0700, Ben Pfaff wrote: On Thu, Apr 16, 2015 at 10:47:13AM +0800,

[ovs-dev] [PATCH net-next V7 0/2] openvswitch: Add support for 802.1AD

2015-04-26 Thread Thomas F Herbert
Add support for 802.1AD to the openvswitch kernel module. Although the Open Flow specification specified support for 802.1AD (qinq) as well as push and pop vlan headers, So far Open vSwitch has only supported a single tag header. This accompanies version 7 of the patch submitted to openvswitch

[ovs-dev] [PATCH net-next V7 1/2] net: openvswitch: 802.1ad uapi changes.

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

[ovs-dev] [PATCH 3/4 V7] 802.1AD: Describe 802.1ad changes

2015-04-26 Thread Thomas F Herbert
From: Thomas F. Herbert thomasfherb...@gmail.com Signed-off-by: Thomas F Herbert thomasfherb...@gmail.com --- NEWS | 2 ++ utilities/ovs-ofctl.8.in | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 87460a7..4da5d06 100644 --- a/NEWS +++

[ovs-dev] [PATCH 2/4 V7] 802.1AD: Flow, actions and odp changes to support 802.1AD

2015-04-26 Thread Thomas F Herbert
From: Thomas F. Herbert thomasfherb...@gmail.com The flow structure is updated to hold the customer tci. Flow key extraction is changed to add support for ctci and both TPIDs. Parsing to support pushing and popping with both single and double tagged vlans. In response to reviewers comments on

[ovs-dev] [PATCH 1/4 V7] 802.1AD: Support 8021.ad push and pop vlan

2015-04-26 Thread Thomas F Herbert
From: Thomas F. Herbert thomasfherb...@gmail.com Changes to allow the tpid to be specified and all vlan tpid checking to be generalized. Signed-off-by: Thomas F Herbert thomasfherb...@gmail.com --- lib/odp-execute.c | 2 +- lib/packets.c | 8 lib/packets.h | 7 +++ 3 files

[ovs-dev] [PATCH] ofp-parse: Correctly report error parsing selection method parameter.

2015-04-26 Thread Ben Pfaff
Found by LLVM scan-build. Reported-by: Kevin Lo ke...@freebsd.org Signed-off-by: Ben Pfaff b...@nicira.com --- lib/ofp-parse.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/ofp-parse.c b/lib/ofp-parse.c index 8fce546..46212f6 100644 --- a/lib/ofp-parse.c +++ b/lib/ofp-parse.c @@

Re: [ovs-dev] [PATCH] ofp-parse: Correctly report error parsing selection method parameter.

2015-04-26 Thread Kevin Lo
Acked-by: Kevin Lo ke...@freebsd.org On Sun, Apr 26, 2015 at 10:17:33AM -0700, Ben Pfaff wrote: Found by LLVM scan-build. Reported-by: Kevin Lo ke...@freebsd.org Signed-off-by: Ben Pfaff b...@nicira.com --- lib/ofp-parse.c | 3 +++ 1 file changed, 3 insertions(+) diff --git

Re: [ovs-dev] [PATCH 2/2] datapath: Use kernel Geneve implementation on 4.0 and above.

2015-04-26 Thread Simon Horman
On Sat, Apr 25, 2015 at 05:40:30PM -0700, Jesse Gross wrote: When Geneve was originally backported, it wasn't available as part of a released kernel version but it is now, so we can take advantage of the native implementation. Note that Geneve was actually first available as part of the 3.18

Re: [ovs-dev] [PATCH 1/2] udptunnel: Kernel 3.20 doesn't exist.

2015-04-26 Thread Simon Horman
On Sat, Apr 25, 2015 at 05:40:29PM -0700, Jesse Gross wrote: When the UDP tunnel compat code was written, it backported some functions that were slated to be in the next kernel release, then called 3.20. However, this was ultimately released as 4.0 instead. Signed-off-by: Jesse Gross

Re: [ovs-dev] [PATCH] ofp-parse: Correctly report error parsing selection method parameter.

2015-04-26 Thread Simon Horman
On Sun, Apr 26, 2015 at 10:17:33AM -0700, Ben Pfaff wrote: Found by LLVM scan-build. Reported-by: Kevin Lo ke...@freebsd.org Signed-off-by: Ben Pfaff b...@nicira.com That looks my handiwork, if so sorry the oversight. Acked-by: Simon Horman simon.hor...@netronome.com --- lib/ofp-parse.c

Re: [ovs-dev] [PATCH] Fix userspace tunnel port with remote_ip is flow not work , where set vxlan port remote_ip is flow then the ovs-appctl tnl\ports\show ipv4 src is 0.0.0.0, tnl_port_map_lookup can

2015-04-26 Thread Pravin Shelar
On Thu, Apr 23, 2015 at 4:48 AM, yinpeijun yinpei...@huawei.com wrote: Signed-off-by: yinpeijun yinpei...@huawei.com --- ofproto/ofproto-dpif-xlate.c | 12 1 file changed, 12 insertions(+) diff --git a/ofproto/ofproto-dpif-xlate.c b/ofproto/ofproto-dpif-xlate.c index

Re: [ovs-dev] [PATCH 1/2] udptunnel: Kernel 3.20 doesn't exist.

2015-04-26 Thread Jesse Gross
On Sun, Apr 26, 2015 at 6:28 PM, Simon Horman simon.hor...@netronome.com wrote: On Sat, Apr 25, 2015 at 05:40:29PM -0700, Jesse Gross wrote: When the UDP tunnel compat code was written, it backported some functions that were slated to be in the next kernel release, then called 3.20. However,

Re: [ovs-dev] [PATCH net-next V7 0/2] openvswitch: Add support for 802.1AD

2015-04-26 Thread David Miller
net-next is not open at this time, please resubmit this when the net-next tree is open for submissions again, thanks. ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev