Re: [ovs-dev] [PATCH] fix compile error on FreeBSD

2015-12-01 Thread Kevin Lo
On Wed, Dec 02, 2015 at 04:15:48PM +0900, Takashi Yamamoto wrote: > On Wed, Dec 2, 2015 at 4:12 PM, Kevin Lo wrote: > > On Wed, Dec 02, 2015 at 03:47:57PM +0900, Takashi Yamamoto wrote: > >> > >> On Wed, Dec 2, 2015 at 3:21 PM, Kevin Lo wrote: > >> > Hi, > >> > > >> > Missing a include file cause

Re: [ovs-dev] [PATCH] fix compile error on FreeBSD

2015-12-01 Thread Takashi Yamamoto
On Wed, Dec 2, 2015 at 4:12 PM, Kevin Lo wrote: > On Wed, Dec 02, 2015 at 03:47:57PM +0900, Takashi Yamamoto wrote: >> >> On Wed, Dec 2, 2015 at 3:21 PM, Kevin Lo wrote: >> > Hi, >> > >> > Missing a include file caused compile error: >> > http://dpaste.com/22E4MHK >> >> why to add it to lib/util.

Re: [ovs-dev] [PATCH] fix compile error on FreeBSD

2015-12-01 Thread Kevin Lo
On Wed, Dec 02, 2015 at 03:47:57PM +0900, Takashi Yamamoto wrote: > > On Wed, Dec 2, 2015 at 3:21 PM, Kevin Lo wrote: > > Hi, > > > > Missing a include file caused compile error: > > http://dpaste.com/22E4MHK > > why to add it to lib/util.h, rather than ovs-router.c? Because the declarations fo

Re: [ovs-dev] [PATCH 1/3] ovn.at: Use {} to make this less ambiguous

2015-12-01 Thread Takashi Yamamoto
On Sat, Nov 28, 2015 at 3:17 AM, Ben Pfaff wrote: > On Thu, Nov 26, 2015 at 06:41:30PM +0900, YAMAMOTO Takashi wrote: >> While (surprisingly to me) bash interprets $10 as ${1}0, >> many other shells, including NetBSD's /bin/sh, interpret it as ${10}. >> >> Signed-off-by: YAMAMOTO Takashi > > Acke

Re: [ovs-dev] [PATCH] fix compile error on FreeBSD

2015-12-01 Thread Takashi Yamamoto
On Wed, Dec 2, 2015 at 3:21 PM, Kevin Lo wrote: > Hi, > > Missing a include file caused compile error: > http://dpaste.com/22E4MHK why to add it to lib/util.h, rather than ovs-router.c? > > FreeBSD (and NetBSD?) needs to include netinet/in.h to define > struct in6_addr. > > Signed-off-by: Kevin

[ovs-dev] [PATCH] fix compile error on FreeBSD

2015-12-01 Thread Kevin Lo
Hi, Missing a include file caused compile error: http://dpaste.com/22E4MHK FreeBSD (and NetBSD?) needs to include netinet/in.h to define struct in6_addr. Signed-off-by: Kevin Lo --- diff --git a/lib/util.h b/lib/util.h index 340ef65..9db65c5 100644 --- a/lib/util.h +++ b/lib/util.h @@ -20,6

Re: [ovs-dev] [PATCH] ofp-util: Remove unneeded default case from ofputil_decode_group_mod().

2015-12-01 Thread Simon Horman
On Tue, Dec 01, 2015 at 07:50:43PM -0800, Ben Pfaff wrote: > On Wed, Dec 02, 2015 at 10:27:53AM +0900, Simon Horman wrote: > > On Tue, Dec 01, 2015 at 10:39:04AM -0800, Ben Pfaff wrote: > > > Code earlier in this function validated that gm->type is valid, so there's > > > no need for a default case

Re: [ovs-dev] [PATCH 1/1] ofproto: Wean off ofproto_class registration from ofproto initialization

2015-12-01 Thread Ansari, Shad
Ben, I have my own custome ofproto provider class (for a hardware dp) which is to be registered. The existing ofproto_dpif_class instance is _not_ to be registered. However ofproto_init() is "hardcoded" to register the ofproto_dpif_class. So this is what I want to be able to do: const stru

Re: [ovs-dev] [PATCH v4 1/4] ovn: Dedicated connection handler for packet-ins

2015-12-01 Thread Ben Pfaff
On Tue, Nov 24, 2015 at 04:49:00PM +0530, bscha...@redhat.com wrote: > This patch opens and maintains a new connection that is dedicated > to monitor the packet-ins for br-int. > > Signed-off-by: Babu Shanmugam I don't think it makes sense for OVN to work with old versions of OpenFlow, so I chan

Re: [ovs-dev] [PATCH] ofp-util: Remove unneeded default case from ofputil_decode_group_mod().

2015-12-01 Thread Ben Pfaff
On Wed, Dec 02, 2015 at 10:27:53AM +0900, Simon Horman wrote: > On Tue, Dec 01, 2015 at 10:39:04AM -0800, Ben Pfaff wrote: > > Code earlier in this function validated that gm->type is valid, so there's > > no need for a default case at the end of the function. Keeping the default > > case as an ab

Re: [ovs-dev] [PATCH 1/1] ofproto: Wean off ofproto_class registration from ofproto initialization

2015-12-01 Thread Ben Pfaff
On Tue, Dec 01, 2015 at 10:33:41PM +, Ansari, Shad wrote: > Currently, ofproto_class_register() is invoked by ofproto_init(). > Separating out the ofproto registration step from the initialization step > makes it actually possible for a user of libofproto to register > a custom ofproto_class. >

Re: [ovs-dev] [PATCH v2] ipfix: Skip BFD packets.

2015-12-01 Thread Ben Pfaff
On Tue, Dec 01, 2015 at 06:43:49PM -0800, Wenyu Zhang wrote: > The patch is to skip BFD packets in ipfix. > Bidirectional Forwarding Detection (BFD) packets are for monitoring > the tunnel link status and consumed by ovs itself, no need to sample > them. > Refer to IETF RFC 5881, BFD control packet

Re: [ovs-dev] [PATCH v6] datapath: Add support for lwtunnel

2015-12-01 Thread Joe Stringer
On 1 December 2015 at 19:06, Pravin Shelar wrote: > On Mon, Nov 30, 2015 at 5:44 PM, Joe Stringer wrote: >> On 25 November 2015 at 21:25, Pravin B Shelar wrote: >>> Following patch adds support for lwtunnel to OVS datapath. >>> With this change OVS datapath detect lwtunnel support and >>> make u

Re: [ovs-dev] [PATCH v6] datapath: Add support for lwtunnel

2015-12-01 Thread Pravin Shelar
On Mon, Nov 30, 2015 at 5:44 PM, Joe Stringer wrote: > On 25 November 2015 at 21:25, Pravin B Shelar wrote: >> Following patch adds support for lwtunnel to OVS datapath. >> With this change OVS datapath detect lwtunnel support and >> make use of new APIs if available. On older kernel where the >>

[ovs-dev] [PATCH v2] ipfix: Skip BFD packets.

2015-12-01 Thread Wenyu Zhang
The patch is to skip BFD packets in ipfix. Bidirectional Forwarding Detection (BFD) packets are for monitoring the tunnel link status and consumed by ovs itself, no need to sample them. Refer to IETF RFC 5881, BFD control packets are the UDP packets with destination port 3784 and BFD echo packets a

Re: [ovs-dev] [PATCH] ofp-util: Remove unneeded default case from ofputil_decode_group_mod().

2015-12-01 Thread Simon Horman
On Tue, Dec 01, 2015 at 10:39:04AM -0800, Ben Pfaff wrote: > Code earlier in this function validated that gm->type is valid, so there's > no need for a default case at the end of the function. Keeping the default > case as an abort could potentially introduce a bug later, if the code > happened to

[ovs-dev] Returned mail: Data format error

2015-12-01 Thread Post Office
Your message was undeliverable due to the following reason: Your message could not be 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 t

Re: [ovs-dev] OVS with DPDK Meetup notes

2015-12-01 Thread Loftus, Ciara
> > > > On Thu, Nov 26, 2015 at 05:56:08PM +, Traynor, Kevin wrote: > > > Hi All, > > > > > > Just wanted to post some summary notes on the recent OVS with DPDK > Meetup > > we > > > had after the OVS conference. Thanks to everyone for the often lively > > discussion. > > > I've collated and co

[ovs-dev] [PATCH 2/2] ofproto-dpif: Validate ct action support.

2015-12-01 Thread Joe Stringer
Disallow installing rules that execute ct() if conntrack is unsupported in the datapath. Reported-by: Ravindra Kenchappa Signed-off-by: Joe Stringer --- v3: Revert back to checking as part of rule_construct(). v2: Refactor to add a new ofproto class action support checker. v1: Initial post. ---

[ovs-dev] [PATCH 1/2] ofp-actions: Refactor ofpact_get_mf_dst().

2015-12-01 Thread Joe Stringer
This function finds the mf destination field for any ofpact, returning NULL if not applicable. It will be used by the next patch to properly reject OpenFlow flows with conntrack actions when conntrack is unsupported by the datapath. Signed-off-by: Joe Stringer Acked-by: Jarno Rajahalme --- v2-v3

Re: [ovs-dev] [PATCHv2 5/6] ofproto-provider: Add action validation.

2015-12-01 Thread Joe Stringer
On 24 November 2015 at 21:45, Ben Pfaff wrote: > On Wed, Nov 11, 2015 at 11:39:53AM -0800, Joe Stringer wrote: >> Add an ofproto-level function to allow implementations to reject >> specific action types based on internal implementation details. The >> first user will be the next patch, which chec

Re: [ovs-dev] [PATCHv2 0/6] Improve ct match/action verification.

2015-12-01 Thread Joe Stringer
On 11 November 2015 at 14:00, Jarno Rajahalme wrote: > >> On Nov 11, 2015, at 11:39 AM, Joe Stringer wrote: >> >> There are currently a few holes in how OVS verifies connection tracking >> fields >> and actions, pointed out by Ravindra Kenchappa. This series aims to verify >> ct_state,ct_zone,ct

[ovs-dev] [PATCH 1/1] ofproto: Wean off ofproto_class registration from ofproto initialization

2015-12-01 Thread Ansari, Shad
Currently, ofproto_class_register() is invoked by ofproto_init(). Separating out the ofproto registration step from the initialization step makes it actually possible for a user of libofproto to register a custom ofproto_class. Signed-off-by: Shad Ansari --- ofproto/ofproto.c | 2 -- vswitchd/br

Re: [ovs-dev] [PATCH net-next v3 3/8] netfilter: Allow calling into nat helper without skb_dst.g

2015-12-01 Thread Pablo Neira Ayuso
On Wed, Nov 25, 2015 at 04:08:16PM -0800, Jarno Rajahalme wrote: > NAT checksum recalculation code assumes existence of skb_dst, which > becomes a problem for a later patch in the series ("openvswitch: > Interface with NAT."). Simplify this by removing the check on > skb_dst, as the checksum will

Re: [ovs-dev] [PATCH v3 5/5] tests: Add tunnel-push-pop-ipv6 tests

2015-12-01 Thread Ben Pfaff
On Mon, Nov 30, 2015 at 04:53:06PM -0200, Thadeu Lima de Souza Cascardo wrote: > Based on IPv4 tests, test tunnels over IPv6. In order to do that, add > netdev-dummy/ip6addr command for dummy bridges, and get_in6 support for > netdev-dummy as well. > > Signed-off-by: Thadeu Lima de Souza Cascardo

Re: [ovs-dev] [PATCH v3 4/5] Allow flow-based IPv6 tunnels to be configured with OpenFlow

2015-12-01 Thread Ben Pfaff
On Mon, Nov 30, 2015 at 04:53:05PM -0200, Thadeu Lima de Souza Cascardo wrote: > With this patch, it is possible to set the IPv6 source and destination address > in flow-based tunnels. > > $ ovs-ofctl add-flow br0 "in_port=LOCAL > actions=set_field:2001:cafe::92->tun_ipv6_dst" > > Signed-off-by:

Re: [ovs-dev] [PATCH v3 3/5] tnl-neigh-cache: remove tnl_arp_lookup

2015-12-01 Thread Ben Pfaff
On Mon, Nov 30, 2015 at 04:53:04PM -0200, Thadeu Lima de Souza Cascardo wrote: > tnl_arp_lookup is not used anymore. All users have been converted to > IPv4-mapped > addresses. New users need to use IPv4-mapped addresses and use > tnl_neigh_lookup. > > Signed-off-by: Thadeu Lima de Souza Cascard

Re: [ovs-dev] [PATCH v3 1/5] netdev-vport: Add IPv6 support for build/push/pop tunnel header

2015-12-01 Thread Ben Pfaff
On Mon, Nov 30, 2015 at 04:53:02PM -0200, Thadeu Lima de Souza Cascardo wrote: > This includes VXLAN, GRE and Geneve. > > Signed-off-by: Thadeu Lima de Souza Cascardo Would you mind adding some ipv6 test cases for tnl_push to tests/odp.at? There are already some for the ipv4 variant. That way w

Re: [ovs-dev] [PATCH] debian: Skip systemctl redirect.

2015-12-01 Thread Ben Pfaff
On Tue, Dec 01, 2015 at 11:51:34AM -0800, Guru Shetty wrote: > > > > > > Does this fix #1 or #2 or both? > > > It fixes #2. It will fix #1 too as long as upstream Ubuntu does not change > the sysv script that we provide. OK, I understand. Might be worth clarifying that a little in the commit mess

Re: [ovs-dev] Questions about lrouter patch ports in ovn-nb schema

2015-12-01 Thread Ben Pfaff
On Tue, Dec 01, 2015 at 11:44:49AM -0800, Han Zhou wrote: > On Tue, Dec 1, 2015 at 10:34 AM, Ben Pfaff wrote: > > On Mon, Nov 30, 2015 at 11:02:29PM -0800, Han Zhou wrote: > >> Hi Ben, > >> > >> On Tue, Nov 24, 2015 at 6:12 PM, Ben Pfaff wrote: > >> > I'm having trouble figuring out which one we

Re: [ovs-dev] [PATCH] debian: Skip systemctl redirect.

2015-12-01 Thread Guru Shetty
> > > Does this fix #1 or #2 or both? > It fixes #2. It will fix #1 too as long as upstream Ubuntu does not change the sysv script that we provide. ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] [PATCH] debian: Skip systemctl redirect.

2015-12-01 Thread Ben Pfaff
On Mon, Nov 30, 2015 at 04:21:33PM -0800, Gurucharan Shetty wrote: > After some experimentation on Ubuntu15.04, I see the > following behavior. > > 1. If you install openvswitch-switch with 'apt-get install', > then you automatically get a upstart and systemd config files > for openvswitch. The in

Re: [ovs-dev] Questions about lrouter patch ports in ovn-nb schema

2015-12-01 Thread Han Zhou
On Tue, Dec 1, 2015 at 10:34 AM, Ben Pfaff wrote: > On Mon, Nov 30, 2015 at 11:02:29PM -0800, Han Zhou wrote: >> Hi Ben, >> >> On Tue, Nov 24, 2015 at 6:12 PM, Ben Pfaff wrote: >> > I'm having trouble figuring out which one we should do. The reason that >> > I'm torn between choices is because o

Re: [ovs-dev] [PATCH v6] Implement OFPT_TABLE_STATUS Message.

2015-12-01 Thread Ben Pfaff
On Tue, Dec 01, 2015 at 12:51:11PM +0530, saloni.jai...@gmail.com wrote: > From: Saloni Jain > > On change in a table state, the controller needs to be informed with > the OFPT_TABLE_STATUS message. The message is sent with reason > OFPTR_VACANCY_DOWN or OFPTR_VACANCY_UP in case of change in rema

Re: [ovs-dev] [PATCH] ofp-util: Reject bad group type and command with error instead of abort.

2015-12-01 Thread Ben Pfaff
On Mon, Nov 30, 2015 at 09:05:54PM -0200, Flavio Leitner wrote: > On Sun, Nov 29, 2015 at 11:02:02AM -0800, Ben Pfaff wrote: > > On Thu, Nov 26, 2015 at 05:20:54PM -0200, Flavio Leitner wrote: > > > On Mon, Oct 12, 2015 at 10:10:27AM -0700, Ben Pfaff wrote: > > > > Signed-off-by: Ben Pfaff > > > >

[ovs-dev] [PATCH] ofp-util: Remove unneeded default case from ofputil_decode_group_mod().

2015-12-01 Thread Ben Pfaff
Code earlier in this function validated that gm->type is valid, so there's no need for a default case at the end of the function. Keeping the default case as an abort could potentially introduce a bug later, if the code happened to be blindly cut-and-pasted somewhere else. CC: Flavio Leitner Sig

Re: [ovs-dev] Questions about lrouter patch ports in ovn-nb schema

2015-12-01 Thread Ben Pfaff
On Mon, Nov 30, 2015 at 11:02:29PM -0800, Han Zhou wrote: > Hi Ben, > > On Tue, Nov 24, 2015 at 6:12 PM, Ben Pfaff wrote: > > I'm having trouble figuring out which one we should do. The reason that > > I'm torn between choices is because of layering. I like the way that, > > currently, the swit

[ovs-dev] ovs architecture question

2015-12-01 Thread OVS User1
Can anyone point to the latest documentation on OVN architecture? ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] [PATCH] flow: pass last field to miniflow_pad_to_64

2015-12-01 Thread Ben Pfaff
On Tue, Dec 01, 2015 at 03:03:16PM +0900, Simon Horman wrote: > Make miniflow_pad_to_64() a little more robust with regards to updates to > struct flow by passing the last field, whose end should be considered for > padding, rather than the next field, whose start should be considered. > > Signed-

Re: [ovs-dev] [PATCH] dp-packet: use dp_packet_reset_offsets during initialisation

2015-12-01 Thread Ben Pfaff
On Tue, Dec 01, 2015 at 03:03:09PM +0900, Simon Horman wrote: > Use dp_packet_reset_offsets() in dp_packet_init__() to make it > clearer that initialisation includes a reset of packets > packets the same way as callers to dp_packet_reset_offsets() reset packets. > > Signed-off-by: Simon Horman T

Re: [ovs-dev] [PATCH] odp-util: limit scope of vlan in format_odp_action

2015-12-01 Thread Ben Pfaff
On Tue, Dec 01, 2015 at 03:03:02PM +0900, Simon Horman wrote: > Limit the scope of the local vlan variable in format_odp_action() > to where it is used. This is consistent with the treatment of mpls > in the same function. > > Signed-off-by: Simon Horman Thanks Simon, applied. __

Re: [ovs-dev] [PATCH] types: correct typo in comment above eth_addr

2015-12-01 Thread Ben Pfaff
On Tue, Dec 01, 2015 at 03:02:45PM +0900, Simon Horman wrote: > Correct spelling of struct in comment above eth_addr. > > Signed-off-by: Simon Horman Thanks Simon, applied. ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinf

Re: [ovs-dev] [PATCH v2] ovsdb-client: Add optional table and columns to dump command

2015-12-01 Thread Ben Pfaff
On Tue, Dec 01, 2015 at 01:21:54AM +0100, Bert Vermeulen wrote: > Adding a table to the dump command's arguments retrieves only that table. > One or more columns after the table retrieve only those columns. > > Default behavior is unchanged. > > Signed-off-by: Bert Vermeulen > --- > Changes in v

Re: [ovs-dev] [PATCH] csum: Inline csum_add16(), csum_add32().

2015-12-01 Thread Ben Pfaff
On Tue, Dec 01, 2015 at 02:30:44PM -0200, Thadeu Lima de Souza Cascardo wrote: > On Mon, Nov 30, 2015 at 08:00:14PM -0800, Ben Pfaff wrote: > > These two functions are really simple, to the point that inlining them > > yields less code than calling them: with GCC 4.9 on i386, this change > > reduce

Re: [ovs-dev] [PATCH] docs: Document that --detach disables logging to the console.

2015-12-01 Thread Ben Pfaff
On Tue, Dec 01, 2015 at 10:05:58AM -0800, Guru Shetty wrote: > On 1 December 2015 at 09:55, Ben Pfaff wrote: > > > Reported-by: "P.R.Dinesh" > > Reported-at: > > http://openvswitch.org/pipermail/discuss/2015-December/019567.html > > Signed-off-by: Ben Pfaff > > > Acked-by: Gurucharan Shetty T

Re: [ovs-dev] [PATCH] docs: Document that --detach disables logging to the console.

2015-12-01 Thread Guru Shetty
On 1 December 2015 at 09:55, Ben Pfaff wrote: > Reported-by: "P.R.Dinesh" > Reported-at: > http://openvswitch.org/pipermail/discuss/2015-December/019567.html > Signed-off-by: Ben Pfaff > Acked-by: Gurucharan Shetty > --- > lib/daemon.man | 11 +++ > lib/vlog.man | 4 +++- > 2 file

Re: [ovs-dev] OVS with DPDK Meetup notes

2015-12-01 Thread Ben Pfaff
On Tue, Dec 01, 2015 at 04:09:07PM +0200, Panu Matilainen wrote: > On 11/26/2015 07:56 PM, Traynor, Kevin wrote: > >Just wanted to post some summary notes on the recent OVS with DPDK Meetup we > >had after the OVS conference. Thanks to everyone for the often lively > >discussion. > >I've collated

[ovs-dev] [PATCH] docs: Document that --detach disables logging to the console.

2015-12-01 Thread Ben Pfaff
Reported-by: "P.R.Dinesh" Reported-at: http://openvswitch.org/pipermail/discuss/2015-December/019567.html Signed-off-by: Ben Pfaff --- lib/daemon.man | 11 +++ lib/vlog.man | 4 +++- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/lib/daemon.man b/lib/daemon.man index

[ovs-dev] [PATCH net] openvswitch: fix hangup on vxlan/gre/geneve device deletion

2015-12-01 Thread Paolo Abeni
Each openvswitch tunnel vport (vxlan,gre,geneve) holds a reference to the underlying tunnel device, but never released it when such device is deleted. Deleting the underlying device via the ip tool cause the kernel to hangup in the netdev_wait_allrefs() loop. This commit ensure that on device unreg

Re: [ovs-dev] monitor2--delay past branch for 2.5?

2015-12-01 Thread Ben Pfaff
On Tue, Dec 01, 2015 at 02:23:40AM -0800, Andy Zhou wrote: > On Mon, Nov 30, 2015 at 9:58 AM, Ben Pfaff wrote: > > > Hi Andy. I think that we're planning to branch for 2.5 pretty soon. At > > the same time, I think that the monitor2 code is close to being ready. > > However, since we want to ad

Re: [ovs-dev] [PATCH] rhel: Add support DPDK port creation via network scripts

2015-12-01 Thread Aaron Conole
Panu Matilainen writes: > Add support for creating a userspace bridge and the four DPDK port > types via network scripts + basic documentation. > > Signed-off-by: Panu Matilainen > --- Acked-by: Aaron Conole ___ dev mailing list dev@openvswitch.org ht

Re: [ovs-dev] [PATCH] dp-packet: use dp_packet_reset_offsets during initialisation

2015-12-01 Thread Thadeu Lima de Souza Cascardo
On Tue, Dec 01, 2015 at 03:03:09PM +0900, Simon Horman wrote: > Use dp_packet_reset_offsets() in dp_packet_init__() to make it > clearer that initialisation includes a reset of packets > packets the same way as callers to dp_packet_reset_offsets() reset packets. > > Signed-off-by: Simon Horman >

Re: [ovs-dev] [PATCH] csum: Inline csum_add16(), csum_add32().

2015-12-01 Thread Thadeu Lima de Souza Cascardo
On Mon, Nov 30, 2015 at 08:00:14PM -0800, Ben Pfaff wrote: > These two functions are really simple, to the point that inlining them > yields less code than calling them: with GCC 4.9 on i386, this change > reduces the code generated for packet_csum_pseudoheader() from 112 bytes > to 100 bytes. > >

Re: [ovs-dev] python/ovs: Add passive TCP connection to IDL

2015-12-01 Thread Russell Bryant
On 12/01/2015 11:03 AM, Ofer Ben-Yacov wrote: > Currently the IDL does not support passive TCP connection (where the OVSDB > connects to its manager). This patch allow IDL to use already open session, > that has used previously to retrieve the database schema, with the ability > to go back to liste

[ovs-dev] python/ovs: Add passive TCP connection to IDL

2015-12-01 Thread Ofer Ben-Yacov
Currently the IDL does not support passive TCP connection (where the OVSDB connects to its manager). This patch allow IDL to use already open session, that has used previously to retrieve the database schema, with the ability to go back to listen mode in case the connection will be lost. To be abl

[ovs-dev] [PATCH] rhel: Add support DPDK port creation via network scripts

2015-12-01 Thread Panu Matilainen
Add support for creating a userspace bridge and the four DPDK port types via network scripts + basic documentation. Signed-off-by: Panu Matilainen --- rhel/README.RHEL | 43 +++ rhel/etc_sysconfig_network-scripts_ifdown-ovs | 5 +++- rhel/etc

Re: [ovs-dev] [monitor2 v2 7/9] ovsdb-client: support monitor2

2015-12-01 Thread Liran Schour
"dev" wrote on 25/11/2015 12:16:01 AM: > From: Andy Zhou > @@ -617,6 +621,101 @@ monitor_print(struct json *table_updates, > } > > static void > +monitor2_print_row(struct json *row, const char *type, const char *uuid, > + const struct ovsdb_column_set *columns, struct table

Re: [ovs-dev] OVS with DPDK Meetup notes

2015-12-01 Thread Panu Matilainen
On 11/26/2015 07:56 PM, Traynor, Kevin wrote: Hi All, Just wanted to post some summary notes on the recent OVS with DPDK Meetup we had after the OVS conference. Thanks to everyone for the often lively discussion. I've collated and condensed Maryam's notes (Thank you Maryam) with my own. Correct

[ovs-dev] Notice to Appear

2015-12-01 Thread District Court
Notice to Appear, This is to inform you to appear in the Court on the December 07 for your case hearing. Please, do not forget to bring all the documents related to the case. Note: If you do not come, the case will be heard in your absence. The Court Notice is attached to this email. Yours fait

[ovs-dev] (no subject)

2015-12-01 Thread mailtofjmesa
The original message was received at Tue, 1 Dec 2015 15:51:46 +0300 from scif.com [144.118.192.185] - The following addresses had permanent fatal errors - - Transcript of the session follows - ... while talking to openvswitch.org.: >>> DATA <<< 400-aturner; %MAIL-E-OPENOUT, erro

Re: [ovs-dev] OVS with DPDK Meetup notes

2015-12-01 Thread Traynor, Kevin
> -Original Message- > From: Flavio Leitner [mailto:f...@sysclose.org] > Sent: Monday, November 30, 2015 11:51 PM > To: Traynor, Kevin > Cc: dev@openvswitch.org; us...@dpdk.org > Subject: Re: [ovs-dev] OVS with DPDK Meetup notes > > On Thu, Nov 26, 2015 at 05:56:08PM +, Traynor, Kevin

Re: [ovs-dev] monitor2--delay past branch for 2.5?

2015-12-01 Thread Andy Zhou
On Mon, Nov 30, 2015 at 11:31 PM, Liran Schour wrote: > "dev" wrote on 30/11/2015 07:58:28 PM: > > > > > Hi Andy. I think that we're planning to branch for 2.5 pretty soon. At > > the same time, I think that the monitor2 code is close to being ready. > > However, since we want to add more func

Re: [ovs-dev] monitor2--delay past branch for 2.5?

2015-12-01 Thread Andy Zhou
On Mon, Nov 30, 2015 at 9:58 AM, Ben Pfaff wrote: > Hi Andy. I think that we're planning to branch for 2.5 pretty soon. At > the same time, I think that the monitor2 code is close to being ready. > However, since we want to add more functionality to monitor2 (conditions > for rows), it seems to

[ovs-dev] Hi

2015-12-01 Thread Mail Administrator
The original message was received at Tue, 1 Dec 2015 15:23:36 +0600 from openvswitch.org [70.199.141.8] - The following addresses had permanent fatal errors - dev@openvswitch.org - Transcript of session follows - ... while talking to openvswitch.org.: >>> DATA <<< 400-aturner; -RM