[ovs-dev] dd

2016-09-14 Thread NIMESH JAIN 4-Yr B.Tech. Chemical Engg., IIT (BHU)
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] dd

2016-09-14 Thread NIMESH JAIN 4-Yr B.Tech. Chemical Engg., IIT (BHU)
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] [PATCH] ofp-parse: Fix sparse warnings about comparing ofp_port_ts.

2016-09-14 Thread Ben Pfaff
Without this, sparse complains: lib/ofp-parse.c:588:19: warning: restricted ofp_port_t degrades to integer lib/ofp-parse.c:588:31: warning: restricted ofp_port_t degrades to integer This is one of the irritating bits of using sparse, but on the whole I think it saves us pretty often.

Re: [ovs-dev] [PATCH 1/2] ofproto: Remove double reporting from bundles.

2016-09-14 Thread Ben Pfaff
On Wed, Sep 14, 2016 at 07:25:34PM -0700, Jarno Rajahalme wrote: > Patch b0d38b2f17 unified flow mod reporting in ofproto for both > stand-alone flow mods and bundle flow mods, but left bundle-specific > reporting to the bundle removal code. This patch fixes this by > removing the bundle-specific

Re: [ovs-dev] [PATCH 2/2] NEWS: Memory efficiency improvements.

2016-09-14 Thread Ben Pfaff
On Wed, Sep 14, 2016 at 07:25:35PM -0700, Jarno Rajahalme wrote: > Mention both flow table and bundle memory efficiency improvements. > > Signed-off-by: Jarno Rajahalme Acked-by: Ben Pfaff ___ dev mailing list

Re: [ovs-dev] [PATCH v2] xlate: Use dp_hash for select groups.

2016-09-14 Thread Ben Pfaff
On Wed, Sep 14, 2016 at 08:51:42PM -0700, Ben Pfaff wrote: > On Mon, Sep 12, 2016 at 04:16:08PM -0700, Jarno Rajahalme wrote: > > Add a new select group selection method "dp_hash", which uses minimal > > number of bits from the datapath calculated packet hash to inform the > > select group bucket

Re: [ovs-dev] [PATCH v2] xlate: Use dp_hash for select groups.

2016-09-14 Thread Ben Pfaff
On Mon, Sep 12, 2016 at 04:16:08PM -0700, Jarno Rajahalme wrote: > Add a new select group selection method "dp_hash", which uses minimal > number of bits from the datapath calculated packet hash to inform the > select group bucket selection. This makes the datapath flows more > generic resulting

Re: [ovs-dev] [PATCH] stream-unix: only use path-based socket names

2016-09-14 Thread Ben Pfaff
On Fri, Sep 09, 2016 at 02:23:17PM -0700, Joe Stringer wrote: > On 9 September 2016 at 14:05, Ben Pfaff wrote: > > On Fri, Sep 09, 2016 at 01:47:01PM -0700, Joe Stringer wrote: > >> On 19 July 2016 at 20:08, Ben Pfaff wrote: > >> > On Tue, Jul 19, 2016 at 05:05:51PM

[ovs-dev] [PATCH] socket-util-unix: Avoid buffer read overrun in get_unix_name_len().

2016-09-14 Thread Ben Pfaff
If the socket length does not include any of the bytes of the path, then the code should not read even the first byte of the path. Found by valgrind. CC: Thadeu Lima de Souza Cascardo Reported-by: Joe Stringer Signed-off-by: Ben Pfaff ---

Re: [ovs-dev] [PATCH] ovn: make ipam tests more reliable

2016-09-14 Thread Ben Pfaff
On Wed, Sep 14, 2016 at 08:23:44PM -0400, Lance Richardson wrote: > > From: "Ben Pfaff" > > To: "Lance Richardson" > > Cc: dev@openvswitch.org > > Sent: Wednesday, September 14, 2016 8:03:16 PM > > Subject: Re: [ovs-dev] [PATCH] ovn: make ipam tests more

[ovs-dev] [PATCH 1/2] ofproto: Remove double reporting from bundles.

2016-09-14 Thread Jarno Rajahalme
Patch b0d38b2f17 unified flow mod reporting in ofproto for both stand-alone flow mods and bundle flow mods, but left bundle-specific reporting to the bundle removal code. This patch fixes this by removing the bundle-specific reporting of flow mods. Found by inspection. Fixes: b0d38b2f17

[ovs-dev] [PATCH 2/2] NEWS: Memory efficiency improvements.

2016-09-14 Thread Jarno Rajahalme
Mention both flow table and bundle memory efficiency improvements. Signed-off-by: Jarno Rajahalme --- NEWS | 8 1 file changed, 8 insertions(+) diff --git a/NEWS b/NEWS index a1ca864..6cc01eb 100644 --- a/NEWS +++ b/NEWS @@ -29,6 +29,14 @@ v2.6.0 - xx xxx *

[ovs-dev] Documents Requested

2016-09-14 Thread Gracie
Dear dev, Please find attached documents as requested. Best Regards, Gracie ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] Documents Requested

2016-09-14 Thread Leola
Dear dev, Please find attached documents as requested. Best Regards, Leola ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] [PATCH v3 4/7] system-traffic: 802.1ad: Add conntrack ping tests for CVLANs.

2016-09-14 Thread Eric Garver
Signed-off-by: Eric Garver --- tests/system-traffic.at | 107 1 file changed, 107 insertions(+) diff --git a/tests/system-traffic.at b/tests/system-traffic.at index 83c7b8a2f4e5..bb0cb02804f9 100644 --- a/tests/system-traffic.at +++

[ovs-dev] [PATCH v3 6/7] system-traffic: 802.1ad: Add push/pop test cases.

2016-09-14 Thread Eric Garver
Two test cases to push and pop an outer tag between two "customer" bridges. One to push/pop 0x88a8. One to push/pop a second 0x8100. Signed-off-by: Eric Garver --- tests/system-traffic.at | 112 1 file changed, 112 insertions(+)

[ovs-dev] [PATCH v3 7/7] system-traffic: 802.1ad: Add dot1q-tunnel test case.

2016-09-14 Thread Eric Garver
Test case for dot1q-tunnel between two "customer" bridges. Signed-off-by: Eric Garver --- tests/system-traffic.at | 63 + 1 file changed, 63 insertions(+) diff --git a/tests/system-traffic.at b/tests/system-traffic.at index

[ovs-dev] [PATCH v3 5/7] system-traffic: 802.1ad: Add vlan_limit test case.

2016-09-14 Thread Eric Garver
Verify that vlan_limit works as expected and preserves legacy dl_type matching behavior. Signed-off-by: Eric Garver --- tests/system-traffic.at | 35 +++ 1 file changed, 35 insertions(+) diff --git a/tests/system-traffic.at

[ovs-dev] [PATCH v3 3/7] system-traffic: 802.1ad: Add datapath ping tests for CVLANs.

2016-09-14 Thread Eric Garver
Signed-off-by: Eric Garver --- tests/system-traffic.at | 62 + 1 file changed, 62 insertions(+) diff --git a/tests/system-traffic.at b/tests/system-traffic.at index 4dabd90356a1..83c7b8a2f4e5 100644 --- a/tests/system-traffic.at +++

[ovs-dev] [PATCH v3 1/7] system-userspace-macros: allow passing sed args to OVS_TRAFFIC_VSWITCHD_STOP()

2016-09-14 Thread Eric Garver
Passing sed arguments to OVS_TRAFFIC_VSWITCHD_STOP() was being ignored for check-system-userspace. This is useful to selective ignore log messages. Signed-off-by: Eric Garver --- tests/system-userspace-macros.at | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[ovs-dev] [PATCH v3 2/7] system-common-macros: Add macros to check for and test 802.1ad.

2016-09-14 Thread Eric Garver
Add macros OVS_CHECK_8021AD(), ADD_SVLAN() and ADD_CVLAN(). Signed-off-by: Eric Garver --- tests/system-common-macros.at | 32 +++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/tests/system-common-macros.at

[ovs-dev] [PATCH v3 0/7] system-traffic: add 802.1ad test cases

2016-09-14 Thread Eric Garver
This series adds 802.1ad test cases for the check-* make targets. It is meant as a counterpart to the 802.1ad work currently going on and being discussed on the dev list. User space support for 802.1ad is being worked on by Xiao Liang (based on Thomas F Herbert's work). Kernel support is already

Re: [ovs-dev] [PATCH] ovn: make ipam tests more reliable

2016-09-14 Thread Lance Richardson
> From: "Ben Pfaff" > To: "Lance Richardson" > Cc: dev@openvswitch.org > Sent: Wednesday, September 14, 2016 8:03:16 PM > Subject: Re: [ovs-dev] [PATCH] ovn: make ipam tests more reliable > > On Wed, Sep 14, 2016 at 07:30:50PM -0400, Lance Richardson wrote: >

Re: [ovs-dev] Documents Requested

2016-09-14 Thread Dillon
Dear dev, Please find attached documents as requested. Best Regards, Dillon ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] [PATCH] ovn: make ipam tests more reliable

2016-09-14 Thread Ben Pfaff
On Wed, Sep 14, 2016 at 07:30:50PM -0400, Lance Richardson wrote: > After adding log messages to better understand IPAM-related code > in ovn northd, the IPAM tests began to fail occasionally. Adding > --wait=sb to commands triggering address allocation eliminated > these failures (there were no

[ovs-dev] Documents Requested

2016-09-14 Thread Rhonda
Dear dev, Please find attached documents as requested. Best Regards, Rhonda ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] [PATCH v3 13/13] ofproto: Support packet_outs in bundles.

2016-09-14 Thread Jarno Rajahalme
Series now pushed to master, Jarno > On Sep 14, 2016, at 2:57 PM, Jarno Rajahalme wrote: > >> >> On Sep 13, 2016, at 5:09 PM, Ben Pfaff > >> wrote: >> >> On Mon, Sep 12, 2016 at 01:52:43PM -0700, Jarno Rajahalme wrote: >>> Add support for

Re: [ovs-dev] [PATCH] ovn-trace: Temporary fix for segment fault

2016-09-14 Thread Ben Pfaff
On Fri, Sep 09, 2016 at 02:05:14PM -0700, Han Zhou wrote: > ovn-trace crashes when there are dhcp flows, which makes the tool > unusable. This patch is to fix the crash with a dummy dhcp_opts, > until dhcp_opts is completely supported by ovn-trace. > > Signed-off-by: Han Zhou

Re: [ovs-dev] Documents Requested

2016-09-14 Thread Emile
Dear dev, Please find attached documents as requested. Best Regards, Emile ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] [PATCH RFC v3] ovn-northd: add default_dhcpvx_options for Logical_Switch

2016-09-14 Thread Ben Pfaff
On Thu, Sep 01, 2016 at 09:56:30AM +, Zongkai LI wrote: > This patch adds default_dhcpv4_options and default_dhcpv6_options columns for > Logical_Switch, which should help CMS not to calculate and set dhcpv4_options > and dhcpv6_options columns for lswitch ports on lswitchs one by one, when >

Re: [ovs-dev] [PATCH v1 1/1] ovn-northd: add dhcpv6 stateless option support

2016-09-14 Thread Ben Pfaff
On Fri, Sep 09, 2016 at 06:39:17AM +, Zongkai LI wrote: > This patch adds DHCPv6 stateless option support, to allow ovn native dhcpv6 > work in stateless mode. > > User can add new option dhcpv6_stateless with string value true in > DHCP_Options.options column, to let ovn dhcpv6 only reply

[ovs-dev] [PATCH] ovn: make ipam tests more reliable

2016-09-14 Thread Lance Richardson
After adding log messages to better understand IPAM-related code in ovn northd, the IPAM tests began to fail occasionally. Adding --wait=sb to commands triggering address allocation eliminated these failures (there were no failures with 100 executions when testing with this change).

Re: [ovs-dev] backport request for 2.6: enable kernel datapath check in rpms

2016-09-14 Thread Lance Richardson
> From: "Ben Pfaff" > To: "Russell Bryant" > Cc: "ovs dev" , "Flavio Leitner" , > "Lance Richardson" > Sent: Wednesday, September 14, 2016 1:50:33 PM > Subject: Re: [ovs-dev] backport request for 2.6:

Re: [ovs-dev] [PATCH v1] ovn-northd: allow DHCPv6 respond multiple IA Address Options

2016-09-14 Thread Ben Pfaff
On Mon, Aug 29, 2016 at 02:15:52PM +0800, Zong Kai LI wrote: > From: Zongkai LI > > This patch tries to allow OVN native DHCPv6 responder to respond multiple > IA Address Options in a DHCPv6 reply message, this will help a lswitch port > to configure all IPv6 addresses

Re: [ovs-dev] [PATCH v2] ovn: log dhcp responses for debugging

2016-09-14 Thread Ben Pfaff
On Thu, Sep 01, 2016 at 06:38:58PM +, Ramu Ramamurthy wrote: > Add a few messages at INFO to help debug the vif lifecycle. > A logsearch on mac or ip helps debug what happened to the > vif and when. This helps easily correlate logs across CMS and ovn. > > Logs appear like this: > >

Re: [ovs-dev] [PATCH] ovn: add lsp-deletion and bcast-flow removal tests for localnet

2016-09-14 Thread Ben Pfaff
On Tue, Aug 30, 2016 at 11:58:34PM +, Ramu Ramamurthy wrote: > From: Ramu Ramamurthy > > Add 2 tests for scenarios around lsp-deletion and flow removal > which have escaped current unit tests. > > This test depends on the following patch: > "ovn-controller: Back

Re: [ovs-dev] [PATCH v3 13/13] ofproto: Support packet_outs in bundles.

2016-09-14 Thread Jarno Rajahalme
> On Sep 13, 2016, at 5:09 PM, Ben Pfaff wrote: > > On Mon, Sep 12, 2016 at 01:52:43PM -0700, Jarno Rajahalme wrote: >> Add support for OFPT_PACKET_OUT messages in bundles. >> >> While ovs-ofctl already has a packet-out command, we did not have a >> string parser for it, as the

Re: [ovs-dev] [PATCH] Tests: update monitor-cond tests on Windows

2016-09-14 Thread Guru Shetty
On 14 September 2016 at 09:00, Alin Serdean wrote: > Windows allows '--detach' argument to be used. > This patch updates the ovsdb monitor tests to use it. > > Fixes hanging test: > 1889: monitor-cond-change > > Signed-off-by: Alin Gabriel Serdean

Re: [ovs-dev] [PATCH v3 12/13] ofproto: Refactor packet_out handling.

2016-09-14 Thread Jarno Rajahalme
> On Sep 13, 2016, at 4:44 PM, Ben Pfaff wrote: > > On Mon, Sep 12, 2016 at 01:52:42PM -0700, Jarno Rajahalme wrote: >> Refactor handle_packet_out() to prepare for bundle support for packet >> outs in a later patch. >> >> Two new callbacks are introduced in ofproto-provider

[ovs-dev] Delivery.

2016-09-14 Thread Fedex Express Service
Kindly Click The Attached ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] [PATCH] Windows: Allow online compacting

2016-09-14 Thread Ben Pfaff
On Tue, Sep 13, 2016 at 06:58:42PM +, Alin Serdean wrote: > > -Original Message- > > From: Ben Pfaff [mailto:b...@ovn.org] > > Sent: Friday, August 26, 2016 6:54 PM > > To: Alin Serdean > > Cc: dev@openvswitch.org > > Subject: Re: [ovs-dev] [PATCH]

Re: [ovs-dev] [PATCH v0] lib: Create $(sysconfdir)/openvswitch upon install

2016-09-14 Thread Ben Pfaff
On Tue, Sep 13, 2016 at 11:26:15AM -0500, Flavio Fernandes wrote: > In cases where dbdir and etcdir are not the same, there is a need > for creating etcdir (i.e. $(sysconfdir)/openvswitch) explicitly. > > Note that there is no attempt being made here to make the etcdir > configurable as in

Re: [ovs-dev] backport request for 2.6: enable kernel datapath check in rpms

2016-09-14 Thread Ben Pfaff
On Tue, Sep 13, 2016 at 12:07:25PM -0400, Lance Richardson wrote: > Requesting backports of these commits to the 2.6 branch: > >     commit 8ef22bb1ceb7b2841d2e29eb283387f0a3a67ff9 >         rhel: add option to run kernel datapath test when building rpms Russell, will you please consider this?

[ovs-dev] [PATCH] Tests: update monitor-cond tests on Windows

2016-09-14 Thread Alin Serdean
Windows allows '--detach' argument to be used. This patch updates the ovsdb monitor tests to use it. Fixes hanging test: 1889: monitor-cond-change Signed-off-by: Alin Gabriel Serdean --- tests/ovsdb-monitor.at | 28 +++- 1 file changed,

Re: [ovs-dev] [PATCH] Windows: Extend support for binaries which allow detach

2016-09-14 Thread Guru Shetty
On 14 September 2016 at 08:25, Alin Serdean wrote: > On Windows we require service_start to be called to parse and setup > requirements for '--detach' argument. > Affected binaries: ovn-trace, ovsdb-client, ovs-testcontroller. > > Subsequent patches will be sent

[ovs-dev] [PATCH] Windows: Extend support for binaries which allow detach

2016-09-14 Thread Alin Serdean
On Windows we require service_start to be called to parse and setup requirements for '--detach' argument. Affected binaries: ovn-trace, ovsdb-client, ovs-testcontroller. Subsequent patches will be sent to adapt the tests with the new features. Signed-off-by: Alin Gabriel Serdean

[ovs-dev] Delivery Confirmation: 00513413175

2016-09-14 Thread ship-confirm
PLEASE DO NOT REPLY TO THIS E-MAIL. IT IS A SYSTEM GENERATED MESSAGE. Attached is a pdf file containing items that have shipped Please contact us if there are any questions or further assistance we can provide ___ dev mailing list dev@openvswitch.org

[ovs-dev] Delivery Confirmation: 00185947223

2016-09-14 Thread ship-confirm
PLEASE DO NOT REPLY TO THIS E-MAIL. IT IS A SYSTEM GENERATED MESSAGE. Attached is a pdf file containing items that have shipped Please contact us if there are any questions or further assistance we can provide ___ dev mailing list dev@openvswitch.org

[ovs-dev] Delivery Confirmation: 001911971079

2016-09-14 Thread ship-confirm
PLEASE DO NOT REPLY TO THIS E-MAIL. IT IS A SYSTEM GENERATED MESSAGE. Attached is a pdf file containing items that have shipped Please contact us if there are any questions or further assistance we can provide ___ dev mailing list dev@openvswitch.org

[ovs-dev] Delivery Confirmation: 003512698346

2016-09-14 Thread ship-confirm
PLEASE DO NOT REPLY TO THIS E-MAIL. IT IS A SYSTEM GENERATED MESSAGE. Attached is a pdf file containing items that have shipped Please contact us if there are any questions or further assistance we can provide ___ dev mailing list dev@openvswitch.org

[ovs-dev] Delivery Confirmation: 005755141995

2016-09-14 Thread ship-confirm
PLEASE DO NOT REPLY TO THIS E-MAIL. IT IS A SYSTEM GENERATED MESSAGE. Attached is a pdf file containing items that have shipped Please contact us if there are any questions or further assistance we can provide ___ dev mailing list dev@openvswitch.org

[ovs-dev] Delivery Confirmation: 009183391680

2016-09-14 Thread ship-confirm
PLEASE DO NOT REPLY TO THIS E-MAIL. IT IS A SYSTEM GENERATED MESSAGE. Attached is a pdf file containing items that have shipped Please contact us if there are any questions or further assistance we can provide ___ dev mailing list dev@openvswitch.org

[ovs-dev] Delivery Confirmation: 00718113

2016-09-14 Thread ship-confirm
PLEASE DO NOT REPLY TO THIS E-MAIL. IT IS A SYSTEM GENERATED MESSAGE. Attached is a pdf file containing items that have shipped Please contact us if there are any questions or further assistance we can provide ___ dev mailing list dev@openvswitch.org

[ovs-dev] Delivery Confirmation: 00163144836

2016-09-14 Thread ship-confirm
PLEASE DO NOT REPLY TO THIS E-MAIL. IT IS A SYSTEM GENERATED MESSAGE. Attached is a pdf file containing items that have shipped Please contact us if there are any questions or further assistance we can provide ___ dev mailing list dev@openvswitch.org

[ovs-dev] Delivery Confirmation: 00231534

2016-09-14 Thread ship-confirm
PLEASE DO NOT REPLY TO THIS E-MAIL. IT IS A SYSTEM GENERATED MESSAGE. Attached is a pdf file containing items that have shipped Please contact us if there are any questions or further assistance we can provide ___ dev mailing list dev@openvswitch.org

[ovs-dev] Delivery Confirmation: 00175014

2016-09-14 Thread ship-confirm
PLEASE DO NOT REPLY TO THIS E-MAIL. IT IS A SYSTEM GENERATED MESSAGE. Attached is a pdf file containing items that have shipped Please contact us if there are any questions or further assistance we can provide ___ dev mailing list dev@openvswitch.org

Re: [ovs-dev] Regarding OVS GTP implementation

2016-09-14 Thread Ashish Kurian
Dear Niti, I tried to locate the file openvswitch.ko under OVS directory but such a file does not exist in my directory. I think the installation procedure that I followed to install OVS is different from what you used. Can you tell me what procedure did you follow for the installation of OVS on

Re: [ovs-dev] Regarding OVS GTP implementation

2016-09-14 Thread niti Rohilla
Hi Ashish, After compilation you have to load the ovs kernel module. U can follow these steps: 1) Find the location of openvswitch.ko file in your openvswitch directory. It might be in this location datapath/linux/openvswitch.ko in ovs directory. 2) Use the command to find the location of

[ovs-dev] test

2016-09-14 Thread users
The message was undeliverable due to the following reason: Your message was not delivered because the destination server 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 there

[ovs-dev] Delivery reports about your e-mail

2016-09-14 Thread Returned mail
„÷«Ñõý ÕD×r}ƒ³®w·ÔStî˜ ‰5mmeá%ì£L™.º})ùMÜg²q¸ãîžÙâUg.íí}) Bqž­#:íœç<æ¬9à‚›Ä'¼IutcmZ Z£ÁUn"Í[Ö jId/xÈꚣö„âúWÓ­PS{úµ¥“ðˎzޝþ èì×£ó‡Q½Ñº\b.%e*sŸzOû>ÄGãÑÏÙËàoZü§íDÎCQøŸöì:N¥Ï°Á[ Qf_čM–³â·WœqܕfYÊk ¬qðع®~H!Ï7ù£ÆÐؕ÷©™Áޔ¬ªRËÌè,rŠfí"¾w}2ÕɲUnx·Nïю