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
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.
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
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
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
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
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
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
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
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
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.
>
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
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
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
>>
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
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
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
> >
> > 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
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.
---
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
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
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
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
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
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
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:
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
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
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
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
>
>
> 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
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
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
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
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
> > > >
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
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
Can anyone point to the latest documentation on OVN architecture?
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
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-
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
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.
__
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
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
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
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
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
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
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
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
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
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
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
>
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.
>
>
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
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
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
"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
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
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
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
> -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
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
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
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
64 matches
Mail list logo