]> git.proxmox.com Git - ovs.git/log
ovs.git
7 years agoovs-router: Fix selection of source IP address when a gateway ip is introduced
Ariel Waizel [Tue, 15 Nov 2016 09:49:47 +0000 (01:49 -0800)]
ovs-router: Fix selection of source IP address when a gateway ip is introduced

When adding a VXLAN tunnel that connects to a VTEP residing in a different IP
network, the tunnel source ip needs to be selected by best fit (longest
matching netmask), based on the destination VTEP ip, and the specific route's
gateway ip.

A bug in ovs-router.c made the source ip to be decided only based on the
destination ip. Thus, if all source ips available to OVS and the destination ip
are in different ip networks - no source ip is selected, and an error is
returned.

This error occurred when using OVS-DPDK and configuring a VXLAN tunnel, where
source ip and destination ip are in different networks, and a gateway ip was in
place for the specific route.

The fix tries to match a source ip based on the gateway ip, if no matching
source ip was found based on the destination ip. This way, the gateway becomes
the first hop only if the tunnel crosses between ip networks.

Signed-off-by: Ariel Waizel <ariel.waizel@hpe.com>
Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@redhat.com>
Acked-by: Pravin B Shelar <pshelar@ovn.org>
7 years agonetdev: fix netmask in netdev_get_addrs
Thadeu Lima de Souza Cascardo [Tue, 15 Nov 2016 09:49:45 +0000 (01:49 -0800)]
netdev: fix netmask in netdev_get_addrs

When iterating on getifaddrs result, ifa_netmask is dereferenced, but it's
already a pointer to struct sockaddr. This would result in wrong masks being
used when comparing addresses while calculating the source address given a
destination address at the routing code.

For example, the mask ::ffff:116.85.0.0 would be used, causing 172.16.100.0/24
to match 172.16.101.1, though they should not match.

This will not happen when using a dummy netdev, as netdev_get_addrs is not used
by it.

Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@redhat.com>
Acked-by: Pravin B Shelar <pshelar@ovn.org>
7 years agological-fields: Add ct.dnat and ct.snat symbols.
Gurucharan Shetty [Thu, 3 Nov 2016 05:39:54 +0000 (22:39 -0700)]
logical-fields: Add ct.dnat and ct.snat symbols.

Upcoming commits use it.

Signed-off-by: Gurucharan Shetty <guru@ovn.org>
Acked-by: Russell Bryant <russell@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
7 years agodpif-provider: Use ODPP_NONE in dp_netdev_flow_add()
Simon Horman [Fri, 11 Nov 2016 13:31:07 +0000 (14:31 +0100)]
dpif-provider: Use ODPP_NONE in dp_netdev_flow_add()

This appears to be the only place where ODPP_NONE is not used but could be.

Signed-off-by: Simon Horman <simon.horman@netronome.com>
Acked-by: Joe Stringer <joe@ovn.org>
7 years agonetdev-dpdk: Fix crash in QoS.
Daniele Di Proietto [Mon, 31 Oct 2016 21:52:43 +0000 (14:52 -0700)]
netdev-dpdk: Fix crash in QoS.

qos_conf can be NULL.  This can be easily reproduced by setting egress
QoS on a port:

```
ovs-vsctl set port dpdk2 qos=@newqos -- --id=@newqos create qos
type=egress-policer other-config:cir=46000000 other-config:cbs=2048
```

Reported-by: Ian Stokes <ian.stokes@intel.com>
Fixes: 78bd47cf44a5 ("netdev-dpdk: Use RCU for egress QoS.")
Signed-off-by: Daniele Di Proietto <diproiettod@vmware.com>
Tested-by: Ian Stokes <ian.stokes@intel.com>
Acked-by: Ian Stokes <ian.stokes@intel.com>
7 years agodpcls: Use 32 packet batches for lookups.
Bhanuprakash Bodireddy [Thu, 20 Oct 2016 20:45:16 +0000 (21:45 +0100)]
dpcls: Use 32 packet batches for lookups.

This patch increases the number of packets processed in a batch during a
lookup from 16 to 32. Processing batches of 32 packets improves
performance and also one of the internal loops can be avoided here.

Signed-off-by: Bhanuprakash Bodireddy <bhanuprakash.bodireddy@intel.com>
Co-authored-by: Antonio Fischetti <antonio.fischetti@intel.com>
Signed-off-by: Antonio Fischetti <antonio.fischetti@intel.com>
Acked-by: Jarno Rajahalme <jarno@ovn.org>
Signed-off-by: Daniele Di Proietto <diproiettod@vmware.com>
7 years agoflow: Add comments to mf_get_next_in_map().
Bhanuprakash Bodireddy [Tue, 18 Oct 2016 16:31:42 +0000 (17:31 +0100)]
flow: Add comments to mf_get_next_in_map().

This patch adds comments to mf_get_next_in_map() to make it more
comprehensible.

Signed-off-by: Bhanuprakash Bodireddy <bhanuprakash.bodireddy@intel.com>
Signed-off-by: Jarno Rajahalme <jarno@ovn.org>
Acked-by: Antonio Fischetti <antonio.fischetti@intel.com>
Signed-off-by: Daniele Di Proietto <diproiettod@vmware.com>
7 years agoflow: Skip invoking expensive count_1bits() with zero input.
Bhanuprakash Bodireddy [Tue, 18 Oct 2016 16:31:41 +0000 (17:31 +0100)]
flow: Skip invoking expensive count_1bits() with zero input.

This patch checks if trash is non-zero and only then resets the flowmap
bit and increment the pointer by set bits as found in trash.

Signed-off-by: Bhanuprakash Bodireddy <bhanuprakash.bodireddy@intel.com>
Co-authored-by: Antonio Fischetti <antonio.fischetti@intel.com>
Signed-off-by: Antonio Fischetti <antonio.fischetti@intel.com>
Acked-by: Jarno Rajahalme <jarno@ovn.org>
Signed-off-by: Daniele Di Proietto <diproiettod@vmware.com>
7 years agodpif-netdev: Drop unused function.
Joe Stringer [Fri, 30 Sep 2016 04:39:03 +0000 (21:39 -0700)]
dpif-netdev: Drop unused function.

Signed-off-by: Joe Stringer <joe@ovn.org>
Acked-by: Simon Horman <simon.horman@netronome.com>
7 years agodpif-provider: Update port_add documentation.
Joe Stringer [Tue, 13 Sep 2016 20:58:00 +0000 (13:58 -0700)]
dpif-provider: Update port_add documentation.

The implementations these days use ODPP_NONE rather than UINT32_MAX.

Signed-off-by: Joe Stringer <joe@ovn.org>
Acked-by: Simon Horman <simon.horman@netronome.com>
7 years agoofproto: Return the OFPC_BUNDLES bit in switch features reply.
Jarno Rajahalme [Mon, 14 Nov 2016 21:24:55 +0000 (13:24 -0800)]
ofproto: Return the OFPC_BUNDLES bit in switch features reply.

Add definitions for the OpenFlow 1.4.1/1.5 specific capabilities bits
OFPC14_BUNDLES and OFPC14_FLOW_MONITORING.  Return the bundles
capability bit in switch features reply.

Reported-by: Andrej Leitner <andrej.leitner@pantheon.tech>
Signed-off-by: Jarno Rajahalme <jarno@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
7 years agoovn-sbctl: document logging and common options in man page
Lance Richardson [Mon, 14 Nov 2016 18:44:42 +0000 (13:44 -0500)]
ovn-sbctl: document logging and common options in man page

The ovn-sbctl is currently missing a description of logging and
common (-h/--help/-V/--version) command-line options. Add them
by including corresponding man page fragments.

Signed-off-by: Lance Richardson <lrichard@redhat.com>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agoofproto-dpif-xlate: Fix duplicate multicast packets
O'Reilly, Darragh [Fri, 11 Nov 2016 13:57:00 +0000 (13:57 +0000)]
ofproto-dpif-xlate: Fix duplicate multicast packets

When iterating the list of mrouters, skip any that are not on the same
vlan as the multicast packet to be forwarded. This bug was causing
duplicate packets when more than one mrouter was behind a trunk port.

Reported-at: https://mail.openvswitch.org/pipermail/ovs-discuss/2016-November/042938.html
Signed-off-by: Darragh O'Reilly <darragh.oreilly@hpe.com>
Signed-off-by: Simon Horman <simon.horman@netronome.com>
7 years agodatapath: compat: vxlan: Avoid possible NULL dereference in vxlan_gro_receive.
Zhang Dongya [Mon, 14 Nov 2016 03:24:26 +0000 (19:24 -0800)]
datapath: compat: vxlan: Avoid possible NULL dereference in vxlan_gro_receive.

With Linux kernel that does not have HAVE_UDP_OFFLOAD_ARG_UOFF
macro detected, struct vxlan_sock *vs will be NULL, which will
make kernel crash when receiving VXLAN packet that have RCO
flag turn on or even invalid packet that is destined
to VXLAN port which have the bit on in the RCO flag position.

Signed-off-by: Zhang Dongya <fortitude.zhang@gmail.com>
Acked-by: Pravin B Shelar <pshelar@ovn.org>
7 years agodatapath-windows: Add ovsext/Conntrack-icmp.c to automake.mk
Jarno Rajahalme [Fri, 11 Nov 2016 22:40:44 +0000 (14:40 -0800)]
datapath-windows: Add ovsext/Conntrack-icmp.c to automake.mk

Fix build breakage.

Signed-off-by: Jarno Rajahalme <jarno@ovn.org>
Acked-by: Sairam Venugopal <vsairam@vmware.com>
7 years agodatapath-windows: else-if block in OvsExtNetPnPEvent
Nithin Raju [Tue, 11 Oct 2016 00:48:53 +0000 (17:48 -0700)]
datapath-windows: else-if block in OvsExtNetPnPEvent

Signed-off-by: Nithin Raju <nithin@vmware.com>
Acked-by: Sairam Venugopal <vsairam@vmware.com>
Signed-off-by: Gurucharan Shetty <guru@ovn.org>
7 years agodatapath-windows: Enable support for tracking ICMP code and type
Sairam Venugopal [Thu, 10 Nov 2016 00:34:22 +0000 (16:34 -0800)]
datapath-windows: Enable support for tracking ICMP code and type

Add support for tracking ICMP code and Type in the Hyper-V Conntrack
module. This code is similar to the userspace connection tracker.

Signed-off-by: Sairam Venugopal <vsairam@vmware.com>
Acked-by: Anand Kumar <kumaranand@vmware.com>
Signed-off-by: Gurucharan Shetty <guru@ovn.org>
7 years agodatapath-windows: Fix the isActivated flag in OvsActivateSwitch
Shashank Ram [Fri, 11 Nov 2016 00:38:05 +0000 (16:38 -0800)]
datapath-windows: Fix the isActivated flag in OvsActivateSwitch

Previously, the driver would enter a deadlock because
the OvsInitConfiguredSwitchNics() function would wait
till switchContext->isActivated flag is set.

Signed-off-by: Shashank Ram <rams@vmware.com>
Acked-by: Sairam Venugopal <vsairam@vmware.com>
Signed-off-by: Gurucharan Shetty <guru@ovn.org>
7 years agorelease: Propose a shorter release cycle for 2.7.
Russell Bryant [Sat, 29 Oct 2016 16:12:03 +0000 (18:12 +0200)]
release: Propose a shorter release cycle for 2.7.

OVS recently adopted a six month release cycle.  OVS doesn't
have to align to other projects, but it can be beneficial.
The dates for OVS 2.6 aligned very well to OpenStack,
which is a major consumer of OVS that usually does 6 month releases.

OpenStack is doing a short release cycle for its Ocata release
to adjust to changes to their event schedule.

https://releases.openstack.org/ocata/schedule.html

As a result, I propose that we adjust the schedule for OVS 2.7 to remain
just ahead of OpenStack.  The specific target dates for 2.7 I propose
would be:

  branch-2.7 created             - Jan 11, 2017
  2.7.0 released from branch-2.7 - Feb 8, 2017

The key differences are moving the release date from March to February
and also shortening the period between branch creation and release to
account for the shorter development cycle.

This patch also adjusts the release cycle target dates to indicate
February as the target release month instead of March.

Signed-off-by: Russell Bryant <russell@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
7 years agoovn-trace: Note that no match means drop.
Russell Bryant [Fri, 11 Nov 2016 02:36:55 +0000 (21:36 -0500)]
ovn-trace: Note that no match means drop.

ovn-trace will tell you when a packet processing ends because no flow is
matched in a given logical flow table.  Update the output to clarify that
when this occurs, the packet is implicitly dropped.

The output now looks like this:

    ingress(dp="sw0", inport="sw0-port1")
    -------------------------------------
     0. ls_in_port_sec_l2: no match (implicit drop)

Signed-off-by: Russell Bryant <russell@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
7 years agorhel: python-six is required in the build process
gwind [Thu, 10 Nov 2016 08:33:37 +0000 (16:33 +0800)]
rhel: python-six is required in the build process

the build error log is:

```
Traceback (most recent call last):
Traceback (most recent call last):
  File "./ovsdb/ovsdb-idlc.in", line 8, in <module>
    import ovs.json
  File "/root/rpmbuild/BUILD/openvswitch-2.6.1/python/ovs/json.py", line 21, in <module>
    import six
ImportError: No module named six
```

Submitted-at: https://github.com/openvswitch/ovs/pull/162
Signed-off-by: Jian Li <lijian@ooclab.com>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agoovn-trace: Print stage name even without match.
Russell Bryant [Thu, 10 Nov 2016 20:48:23 +0000 (15:48 -0500)]
ovn-trace: Print stage name even without match.

Given a simple OVN configuration and a sample packet that fails to match
an L2 destination lookup flow, the output of ovn-trace looks something
like this:

    $ ovn-trace --detailed sw0 'inport == "sw0-port1" && eth.src == 00:00:00:00:00:01 && eth.dst == 00:00:00:00:00:ff'
    # reg14=0x1,vlan_tci=0x0000,dl_src=00:00:00:00:00:01,dl_dst=00:00:00:00:00:ff,dl_type=0x0000

    ingress(dp="sw0", inport="sw0-port1")
    -------------------------------------
     0. ls_in_port_sec_l2 (ovn-northd.c:2827): inport == "sw0-port1" && eth.src == {00:00:00:00:00:01}, priority 50
        next(1);
    13. no match

In this case, I think it is helpful to still display the name of the
pipeline stage where we failed to match a flow.  This patch adds
that to the output.  This patch assumes that we always use the
same stage name for a given table ID in a given datapath, but I'm
pretty sure that is always true.

    ingress(dp="sw0", inport="sw0-port1")
    -------------------------------------
     0. ls_in_port_sec_l2 (ovn-northd.c:2827): inport == "sw0-port1" && eth.src == {00:00:00:00:00:01}, priority 50
        next(1);
    13. ls_in_l2_lkup: no match

Signed-off-by: Russell Bryant <russell@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
7 years agoovn-nb: Document the syntax for an address set name.
Ben Pfaff [Fri, 7 Oct 2016 16:00:13 +0000 (09:00 -0700)]
ovn-nb: Document the syntax for an address set name.

Also, it is not necessary to specify that the name must be unique because
the schema documentation generator does that for us.

Reported-by: Kevin Lin <kevinlin@berkeley.edu>
Reported-at: http://openvswitch.org/pipermail/dev/2016-October/080386.html
Signed-off-by: Ben Pfaff <blp@ovn.org>
Acked-by: Russell Bryant <russell@ovn.org>
Acked-by: Justin Pettit <jpettit@ovn.org>
7 years agoAdd support for specifying SSL connection parameters to ovsdb
Ethan Rahn [Thu, 6 Oct 2016 23:21:33 +0000 (16:21 -0700)]
Add support for specifying SSL connection parameters to ovsdb

Signed-off-by: Ethan Rahn <erahn@arista.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
7 years agodoc: Remove final markdown references
Stephen Finucane [Mon, 7 Nov 2016 11:22:00 +0000 (11:22 +0000)]
doc: Remove final markdown references

There are some leftover Markdown references and Markdown-related
tooling. Seeing as there are no Markdown files left, we can kill it all
with fire.

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agobuild: Add .mailmap to EXTRA_DIST.
Russell Bryant [Sun, 6 Nov 2016 23:01:12 +0000 (18:01 -0500)]
build: Add .mailmap to EXTRA_DIST.

Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agoAdd .mailmap file.
Russell Bryant [Sat, 5 Nov 2016 01:22:02 +0000 (21:22 -0400)]
Add .mailmap file.

Create a .mailmap file as described in git-shortlog(1).  This is used to
map commits that contain different names or email addresses to the same
person.

This file will automatically be used by git-shortlog.  It can also be
used by other commands, such as git-log by providing the --use-mailmap
option.

Signed-off-by: Russell Bryant <russell@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
7 years agodoc: Convert ovn/TODO to rST
Stephen Finucane [Fri, 4 Nov 2016 10:04:00 +0000 (10:04 +0000)]
doc: Convert ovn/TODO to rST

This might not be of much value, but let's be consistent where we can.

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert tutorial/OVN-Tutorial to rST
Stephen Finucane [Fri, 4 Nov 2016 10:03:59 +0000 (10:03 +0000)]
doc: Convert tutorial/OVN-Tutorial to rST

There's a mismash of absolute and relative URLs, but these will be
resolved by the move to Sphinx.

In addition, the URLs pointing to the test scripts are removed as they
will break when we move to Sphinx.  This is because they won't be
published with the Sphinx docs, ruling out relative links, and OVS
evolves too fast to rely on non-breaking links to GitHub. Better to
rely on shell examples like we do elsewhere and let the user figure it
out.

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert tutorial/Tutorial to rST
Stephen Finucane [Fri, 4 Nov 2016 10:03:58 +0000 (10:03 +0000)]
doc: Convert tutorial/Tutorial to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agonetdev-windows: use bitwise comparison for flags
Alin Serdean [Thu, 27 Oct 2016 19:20:26 +0000 (19:20 +0000)]
netdev-windows: use bitwise comparison for flags

Use bitwise comparison when checking flags set by the kernel for the
device.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Acked-by: Sairam Venugopal <vsairam@vmware.com>
Signed-off-by: Gurucharan Shetty <guru@ovn.org>
7 years agonetdev-windows: fix ofpbuf initialization
Alin Serdean [Thu, 27 Oct 2016 19:20:01 +0000 (19:20 +0000)]
netdev-windows: fix ofpbuf initialization

ofpbuf_const_initializer takes only two parameters see:

https://github.com/openvswitch/ovs/blob/master/include/openvswitch/ofpbuf.h#L96

the compiler only gives the following warning:

lib/netdev-windows.c(229) : warning C4020: 'ofpbuf_const_initializer' :
too many actual parameters

which in result will put junk data into "ofpbuf b".

This patch fixes the initialization.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Acked-by: Sairam Venugopal <vsairam@vmware.com>
Signed-off-by: Gurucharan Shetty <guru@ovn.org>
7 years agodatapath-windows: clean code in geneve
Alin Serdean [Thu, 27 Oct 2016 18:57:12 +0000 (18:57 +0000)]
datapath-windows: clean code in geneve

The purpose of this patch is to make the code more readable and
fix a static analyzer warning.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Acked-by: Sairam Venugopal <vsairam@vmware.com>
Signed-off-by: Gurucharan Shetty <guru@ovn.org>
7 years agodatapath-windows: clean code in gre
Alin Serdean [Thu, 27 Oct 2016 18:55:36 +0000 (18:55 +0000)]
datapath-windows: clean code in gre

The purpose of this patch is to make the code more readable and
fix a static analyzer warning.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Acked-by: Sairam Venugopal <vsairam@vmware.com>
Signed-off-by: Gurucharan Shetty <guru@ovn.org>
7 years agodatapath-windows: clean code in stt
Alin Serdean [Thu, 27 Oct 2016 18:55:14 +0000 (18:55 +0000)]
datapath-windows: clean code in stt

The purpose of this patch is to make the code more readable and
fix a static analyzer warning.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Acked-by: Sairam Venugopal <vsairam@vmware.com>
Signed-off-by: Gurucharan Shetty <guru@ovn.org>
7 years agodatapath-windows: clean code in vxlan
Alin Serdean [Thu, 27 Oct 2016 18:53:54 +0000 (18:53 +0000)]
datapath-windows: clean code in vxlan

The purpose of this patch is to make the code more readable and
fix a static analyzer warning.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Acked-by: Sairam Venugopal <vsairam@vmware.com>
Signed-off-by: Gurucharan Shetty <guru@ovn.org>
7 years agodoc: Convert vswitchd/INTERNALS to rST
Stephen Finucane [Sun, 30 Oct 2016 13:30:09 +0000 (13:30 +0000)]
doc: Convert vswitchd/INTERNALS to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert OVS-GW-HA to rST
Stephen Finucane [Sun, 30 Oct 2016 13:30:08 +0000 (13:30 +0000)]
doc: Convert OVS-GW-HA to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert CONTAINERS.OpenStack to rST
Stephen Finucane [Sun, 30 Oct 2016 13:30:07 +0000 (13:30 +0000)]
doc: Convert CONTAINERS.OpenStack to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert datapath-windows/DESIGN to rST
Stephen Finucane [Sun, 30 Oct 2016 13:30:06 +0000 (13:30 +0000)]
doc: Convert datapath-windows/DESIGN to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert datapath-windows/CodingStyle to rST
Stephen Finucane [Sun, 30 Oct 2016 13:30:05 +0000 (13:30 +0000)]
doc: Convert datapath-windows/CodingStyle to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Update windows/README
Stephen Finucane [Sun, 30 Oct 2016 13:30:04 +0000 (13:30 +0000)]
doc: Update windows/README

This is already in rST (whut?), but we should add a license and make
the formatting a little more consistent.

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert xenserver/README to rST
Stephen Finucane [Sun, 30 Oct 2016 13:30:03 +0000 (13:30 +0000)]
doc: Convert xenserver/README to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert datapath/README to rST
Stephen Finucane [Sun, 30 Oct 2016 13:30:02 +0000 (13:30 +0000)]
doc: Convert datapath/README to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert INSTALL.DPDK-ADVANCED to rST
Stephen Finucane [Sun, 30 Oct 2016 13:30:01 +0000 (13:30 +0000)]
doc: Convert INSTALL.DPDK-ADVANCED to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert INSTALL.SELinux to rST
Stephen Finucane [Sun, 30 Oct 2016 13:30:00 +0000 (13:30 +0000)]
doc: Convert INSTALL.SELinux to rST

Refer to 'dnf' and not the deprecated 'yum'.

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert INSTALL.RHEL to rST
Stephen Finucane [Sun, 30 Oct 2016 13:29:59 +0000 (13:29 +0000)]
doc: Convert INSTALL.RHEL to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert INSTALL.NetBSD to rST
Stephen Finucane [Sun, 30 Oct 2016 13:29:58 +0000 (13:29 +0000)]
doc: Convert INSTALL.NetBSD to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert INSTALL.Libvirt to rST
Stephen Finucane [Sun, 30 Oct 2016 13:29:57 +0000 (13:29 +0000)]
doc: Convert INSTALL.Libvirt to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert INSTALL.SSL to rST
Stephen Finucane [Sun, 30 Oct 2016 13:29:56 +0000 (13:29 +0000)]
doc: Convert INSTALL.SSL to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert INSTALL.Fedora to rST
Stephen Finucane [Sun, 30 Oct 2016 13:29:55 +0000 (13:29 +0000)]
doc: Convert INSTALL.Fedora to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert README.ovs-vtep to rST
Stephen Finucane [Sun, 30 Oct 2016 13:29:54 +0000 (13:29 +0000)]
doc: Convert README.ovs-vtep to rST

Expand on the definition of VTEP (it took me a bit of Googling).

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert third-party/README to rST
Stephen Finucane [Sun, 30 Oct 2016 13:29:53 +0000 (13:29 +0000)]
doc: Convert third-party/README to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert rhel/README.RHEL to rST
Stephen Finucane [Sun, 30 Oct 2016 13:29:52 +0000 (13:29 +0000)]
doc: Convert rhel/README.RHEL to rST

This is a top-level document, so plain old rST is preferred.

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert OVSDB-replication to rST
Stephen Finucane [Sun, 30 Oct 2016 13:29:51 +0000 (13:29 +0000)]
doc: Convert OVSDB-replication to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert release-process to rST
Stephen Finucane [Sun, 30 Oct 2016 13:29:50 +0000 (13:29 +0000)]
doc: Convert release-process to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert committer-responsibilities to rST
Stephen Finucane [Sun, 30 Oct 2016 13:29:49 +0000 (13:29 +0000)]
doc: Convert committer-responsibilities to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert committer-grant-revocation to rST
Stephen Finucane [Sun, 30 Oct 2016 13:29:48 +0000 (13:29 +0000)]
doc: Convert committer-grant-revocation to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert ovs-command-bashcomp.INSTALL to rST
Stephen Finucane [Sun, 30 Oct 2016 13:29:47 +0000 (13:29 +0000)]
doc: Convert ovs-command-bashcomp.INSTALL to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert DESIGN to rST
Stephen Finucane [Sun, 30 Oct 2016 13:15:38 +0000 (13:15 +0000)]
doc: Convert DESIGN to rST

This is a top-level document, so plain old rST is preferred.

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agoCorrect references to env7 packet scripts
Genevieve LEsperance [Thu, 3 Nov 2016 16:34:07 +0000 (09:34 -0700)]
Correct references to env7 packet scripts

Submitted-at: https://github.com/openvswitch/ovs/pull/160
Signed-off-by: Genevieve LEsperance <glesperance@pivotal.io>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agoovn: Add a case of policy based routing.
Gurucharan Shetty [Thu, 6 Oct 2016 10:33:17 +0000 (03:33 -0700)]
ovn: Add a case of policy based routing.

OVN currently supports multiple gateway routers (residing on
different chassis) connected to the same logical topology.

When external traffic enters the logical topology, they can enter
from any gateway routers and reach its eventual destination. This
is achieved with proper static routes configured on the gateway
routers.

But when traffic is initiated in the logical space by a logical
port, we do not have a good way to distribute that traffic across
multiple gateway routers.

This commit introduces one particular way to do it. Based on the
source IP address or source IP network of the packet, we can now
jump to a specific gateway router.

This is very useful for a specific use case of Kubernetes.
When traffic is initiated inside a container heading to outside world,
we want to be able to send such traffic outside the gateway router
residing in the same host as that of the container. Since each
host gets a specific subnet, we can use source IP address based
policy routing to decide on the gateway router.

Rationale for using the same routing table for both source and
destination IP address based routing:

Some hardware network vendors support policy routing in a different table
on arbitrary "match".  And when a packet enters, if there is a match
in policy based routing table, the default routing table is not
consulted at all.  In case of OVN, we mainly want policy based routing
for north-south traffic. We want east-west traffic to flow as-is. Creating
a separate table for policy based routing complicates the configuration
quite a bit. For e.g., if we have a source IP network based rule added,
to decide a particular gateway router as a next hop, we should add rules at
a higher priority for all the connected routes to make sure that east-west
traffic is not effected in the policy based routing table itself.

Signed-off-by: Gurucharan Shetty <guru@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
7 years agoovn-controller: Container can have connection to a hosting VM.
Gurucharan Shetty [Tue, 4 Oct 2016 16:49:10 +0000 (09:49 -0700)]
ovn-controller: Container can have connection to a hosting VM.

A Container running inside a VM can have a connection to the
hosting VM (parent port) in the logical topology (for e.g via a router).
So we should be able to loop-back into the same VM, even if the
final packet delivered does not have any tags in it.

Reported-by: Dustin Spinhirne <dspinhirne@vmware.com>
Signed-off-by: Gurucharan Shetty <guru@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
7 years agotests: windows ovsdb online compact
Alin Serdean [Thu, 27 Oct 2016 21:45:42 +0000 (21:45 +0000)]
tests: windows ovsdb online compact

Skip symlinks checks on Windows.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
7 years agotests: Test offline compacting on Windows.
Alin Serdean [Thu, 27 Oct 2016 20:33:35 +0000 (20:33 +0000)]
tests: Test offline compacting on Windows.

This patch adds the offline compacting (ovsdb-tool compact) to be run on
Windows.

Windows does not implement --run so this drops its use.  Other tests do
check that --run works on Linux so this shouldn't be an issue.

Also on Windows we do not check for symlinks, so skip the tests for it.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
7 years agodebian: Include ovn-trace in ovn-common package
Flavio Fernandes [Sat, 22 Oct 2016 00:00:22 +0000 (19:00 -0500)]
debian: Include ovn-trace in ovn-common package

Include the ovn-trace binary and it's man page in ovn-common package

Fixes: 4acd1e87a8bf ("ovn-trace: New utility.")
Fixes: f448e5a4bb1f ("rhel: Include ovn-trace in ovn-common package")
Signed-off-by: Flavio Fernandes <flavio@flaviof.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
7 years agoovn: fix ovn-northd leak in build_acls
Flavio Fernandes [Tue, 1 Nov 2016 21:19:59 +0000 (16:19 -0500)]
ovn: fix ovn-northd leak in build_acls

Avoid leak due to missing ds_destroy in build_acl for non-stateful
drop action.

Found via inspection.  I do not know that this fixes a common leak.

Signed-off-by: Flavio Fernandes <flavio@flaviof.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
7 years agoovn-southbound: Implement read-only connection support.
Lance Richardson [Tue, 25 Oct 2016 16:38:49 +0000 (12:38 -0400)]
ovn-southbound: Implement read-only connection support.

Add a connection table to the southbound db schema, similar
to the Open_vSwitch "Manager" table.

Add tests for pssl: and ptcp: read-only connection types.

Add support to ovn-sbctl for listing the SB Connection table.

Potential future work:
   - Test cases for other connection types (punix, ssl, tcp, unix).
   - SSL configuration table for southbound db.
   - Connection table for NB schema.
   - Add a way to specify a read-only connection as an ovsdb-server
     command-line option.

Signed-off-by: Lance Richardson <lrichard@redhat.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
7 years agoovsdb-server: Implement read-only remote connection type.
Lance Richardson [Tue, 25 Oct 2016 16:38:48 +0000 (12:38 -0400)]
ovsdb-server: Implement read-only remote connection type.

Adds a new "read_only" column for remote connections.

Operations that would alter the state of the database are not
permitted on connections for which the "read_only" column is set
to "true".

Signed-off-by: Lance Richardson <lrichard@redhat.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
7 years agodatapath: geneve: Handle vlan tag
Pravin B Shelar [Tue, 1 Nov 2016 19:06:15 +0000 (12:06 -0700)]
datapath: geneve: Handle vlan tag

The compat vlan code ignores vlan tag for inner packet
on egress path. Following patch fixes this by inserting the
tag for inner packet before tunnel encapsulation.

Signed-off-by: Pravin B Shelar <pshelar@ovn.org>
Acked-by: Joe Stringer <joe@ovn.org>
7 years agoofproto-dpif: Log warning when ct action or its variants are not supported.
Ben Pfaff [Mon, 31 Oct 2016 21:33:13 +0000 (14:33 -0700)]
ofproto-dpif: Log warning when ct action or its variants are not supported.

Some datapaths do not support the ct action, and others support only a
subset of its features.  Until now, it has been difficult to tell why a
particular action is being rejected.  This commit should make it clearer.

Reported-by: Kevin Lin <kevinlin@berkeley.edu>
Reported-at: http://openvswitch.org/pipermail/discuss/2016-October/023060.html
Signed-off-by: Ben Pfaff <blp@ovn.org>
Acked-by: Joe Stringer <joe@ovn.org>
7 years agodoc: fix duplicated colons in rst documents
Mauricio Vasquez [Tue, 1 Nov 2016 04:12:08 +0000 (23:12 -0500)]
doc: fix duplicated colons in rst documents

Signed-off-by: Mauricio Vasquez B <mauricio.vasquez@polito.it>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodatapath: backport: vxlan: avoid using stale vxlan socket.
Pravin B Shelar [Mon, 31 Oct 2016 21:36:32 +0000 (14:36 -0700)]
datapath: backport: vxlan: avoid using stale vxlan socket.

Upstream commit:
    commit c6fcc4fc5f8b592600c7409e769ab68da0fb1eca
    Author: pravin shelar <pshelar@ovn.org>
    Date:   Fri Oct 28 09:59:15 2016 -0700

    vxlan: avoid using stale vxlan socket.

    When vxlan device is closed vxlan socket is freed. This
    operation can race with vxlan-xmit function which
    dereferences vxlan socket. Following patch uses RCU
    mechanism to avoid this situation.

Signed-off-by: Pravin B Shelar <pshelar@ovn.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Pravin B Shelar <pshelar@ovn.org>
Acked-by: Joe Stringer <joe@ovn.org>
7 years agolisp: avoid using stale lisp socket.
Pravin B Shelar [Sun, 30 Oct 2016 04:33:06 +0000 (21:33 -0700)]
lisp: avoid using stale lisp socket.

This patch is similar to earlier vxlan patch.
Lisp device close operation frees lisp socket. This
operation can race with lisp-xmit function which
dereferences lisp socket. Following patch uses RCU
mechanism to avoid this situation.

Signed-off-by: Pravin B Shelar <pshelar@ovn.org>
Acked-by: Joe Stringer <joe@ovn.org>
7 years agodatapath: backport: geneve: avoid using stale geneve socket.
Pravin B Shelar [Sun, 30 Oct 2016 04:33:05 +0000 (21:33 -0700)]
datapath: backport: geneve: avoid using stale geneve socket.

Upstream commit:
    commit fceb9c3e38252992bbf1a3028cc2f7b871211533
    Author: pravin shelar <pshelar@ovn.org>
    Date:   Fri Oct 28 09:59:16 2016 -0700

    geneve: avoid using stale geneve socket.

    This patch is similar to earlier vxlan patch.
    Geneve device close operation frees geneve socket. This
    operation can race with geneve-xmit function which
    dereferences geneve socket. Following patch uses RCU
    mechanism to avoid this situation.

Signed-off-by: Pravin B Shelar <pshelar@ovn.org>
Acked-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Pravin B Shelar <pshelar@ovn.org>
Acked-by: Joe Stringer <joe@ovn.org>
7 years agoFAQ: Mention conntrack capability for packet filtering.
Han Zhou [Fri, 28 Oct 2016 19:13:44 +0000 (12:13 -0700)]
FAQ: Mention conntrack capability for packet filtering.

The existing explanation didn't tell user the conntrack capability
and user may be unaware of the stateful feature of OVS.

Signed-off-by: Han Zhou <zhouhan@gmail.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
7 years agoifnotifier: do not wake up when there is no db connection
Thadeu Lima de Souza Cascardo [Tue, 25 Oct 2016 17:44:43 +0000 (15:44 -0200)]
ifnotifier: do not wake up when there is no db connection

When bridge uses the interface notifier, it wakes up until a reconfiguration
takes place. However, if there is no connection or a lock contention to the
database, the check for reconfiguration will not take place.

This uses a seq and only seq_wait when checking for the interfaces change.

This is easily reproduced by starting ovs-vswitchd without starting
ovsdb-server, and then creating a new system interface, like using
'ip link add type veth'. ovs-vswitchd will then consume 100% CPU.

Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@redhat.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
7 years agodatapath-windows: Set isActivated flag only on success
Shashank Ram [Mon, 10 Oct 2016 22:15:05 +0000 (15:15 -0700)]
datapath-windows: Set isActivated flag only on success

@Switch.c: Modifies OvsActivateSwitch() function
to mark the switch as activated only if the
the status is success. The callers itself
only call this method when the isActivated
flag is unset.

Signed-off-by: Shashank Ram <rams@vmware.com>
Acked-by: Sairam Venugopal <vsairam@vmware.com>
Acked-by: Nithin Raju <nithin@vmware.com>
Signed-off-by: Gurucharan Shetty <guru@ovn.org>
7 years agoFAQ.rst: Trivial link fixes.
Russell Bryant [Sat, 29 Oct 2016 20:13:49 +0000 (22:13 +0200)]
FAQ.rst: Trivial link fixes.

Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agotrivial: Resolve whitespace issues with acinclude
Stephen Finucane [Tue, 18 Oct 2016 20:03:45 +0000 (21:03 +0100)]
trivial: Resolve whitespace issues with acinclude

Completely unrelated, but annoying. Let's fix it up.

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert FAQ to rST
Stephen Finucane [Tue, 18 Oct 2016 20:03:44 +0000 (21:03 +0100)]
doc: Convert FAQ to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert OPENFLOW-1.1+ to rST
Stephen Finucane [Tue, 18 Oct 2016 20:03:42 +0000 (21:03 +0100)]
doc: Convert OPENFLOW-1.1+ to rST

Rename it to OPENFLOW.

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert CONTRIBUTING to rST
Stephen Finucane [Tue, 18 Oct 2016 20:03:41 +0000 (21:03 +0100)]
doc: Convert CONTRIBUTING to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert README-native-tunneling to rST
Stephen Finucane [Tue, 18 Oct 2016 20:03:40 +0000 (21:03 +0100)]
doc: Convert README-native-tunneling to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert README-lisp to rST
Stephen Finucane [Tue, 18 Oct 2016 20:03:39 +0000 (21:03 +0100)]
doc: Convert README-lisp to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert SECURITY to rST
Stephen Finucane [Tue, 18 Oct 2016 20:03:38 +0000 (21:03 +0100)]
doc: Convert SECURITY to rST

This is a top-level document, so plain old rST is preferred.

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert WHY-OVS to rST
Stephen Finucane [Tue, 18 Oct 2016 20:03:37 +0000 (21:03 +0100)]
doc: Convert WHY-OVS to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agoovn/TODO: Remove completed IPAM item.
Russell Bryant [Tue, 25 Oct 2016 14:10:42 +0000 (10:10 -0400)]
ovn/TODO: Remove completed IPAM item.

Signed-off-by: Russell Bryant <russell@ovn.org>
Acked-by: Lance Richardson <lrichard@redhat.com>
7 years agodoc: Convert REPORTING-BUGS to rST
Stephen Finucane [Tue, 18 Oct 2016 20:03:36 +0000 (21:03 +0100)]
doc: Convert REPORTING-BUGS to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: v2: fix bad link to dpdk advance installation guide
Mauricio Vasquez [Fri, 21 Oct 2016 04:51:24 +0000 (23:51 -0500)]
doc: v2: fix bad link to dpdk advance installation guide

Previous fix was also wrong.

Fixes: 167703d ("doc: Convert INSTALL.DPDK to rST")
Signed-off-by: Mauricio Vasquez B <mauricio.vasquez@polito.it>
Acked-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert README to rST
Stephen Finucane [Tue, 18 Oct 2016 20:03:35 +0000 (21:03 +0100)]
doc: Convert README to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert PORTING to rST
Stephen Finucane [Tue, 18 Oct 2016 20:03:34 +0000 (21:03 +0100)]
doc: Convert PORTING to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agoconfigure: Support compiling with Linux 4.8.
Jarno Rajahalme [Thu, 20 Oct 2016 22:22:14 +0000 (15:22 -0700)]
configure: Support compiling with Linux 4.8.

Datapath should now compile and work with Linux 4.8.

Signed-off-by: Jarno Rajahalme <jarno@ovn.org>
Acked-by: Pravin B Shelar <pshelar@ovn.org>
7 years agodatapath: Support a fixed size of 128 distinct labels.
Jarno Rajahalme [Thu, 20 Oct 2016 22:22:14 +0000 (15:22 -0700)]
datapath: Support a fixed size of 128 distinct labels.

Port upstream change in conntrack labels extension.  Add a new
configure macro HAVE_NF_CONN_LABELS_WITH_WORDS to detect the old
definition.  Unfortunately there is no conntrack API to hide the
difference, so the this makes conntrack.c deviate from upstream source
a bit.

Upstream commit:
    commit 23014011ba4209a086931ff402eac1c41abbe456
    Author: Florian Westphal <fw@strlen.de>
    Date:   Thu Jul 21 12:51:16 2016 +0200

    netfilter: conntrack: support a fixed size of 128 distinct labels

    The conntrack label extension is currently variable-sized, e.g. if
    only 2 labels are used by iptables rules then the labels->bits[] array
    will only contain one element.

    We track size of each label storage area in the 'words' member.

    But in nftables and openvswitch we always have to ask for worst-case
    since we don't know what bit will be used at configuration time.

    As most arches are 64bit we need to allocate 24 bytes in this case:

    struct nf_conn_labels {
        u8            words;   /*     0     1 */
        /* XXX 7 bytes hole, try to pack */
        long unsigned bits[2]; /*     8     24 */

    Make bits a fixed size and drop the words member, it simplifies
    the code and only increases memory requirements on x86 when
    less than 64bit labels are required.

    We still only allocate the extension if its needed.

Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Jarno Rajahalme <jarno@ovn.org>
Acked-by: Pravin B Shelar <pshelar@ovn.org>
7 years agoovn-test: Fix 'test-ovn composition' crash
Andy Zhou [Tue, 11 Oct 2016 18:26:13 +0000 (11:26 -0700)]
ovn-test: Fix 'test-ovn composition' crash

Without this fix, the added test will core dump.

Signed-off-by: Andy Zhou <azhou@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
7 years agodoc: Convert MAINTAINERS to rST
Stephen Finucane [Tue, 18 Oct 2016 20:03:33 +0000 (21:03 +0100)]
doc: Convert MAINTAINERS to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert IntegrationGuide to rST
Stephen Finucane [Tue, 18 Oct 2016 20:03:32 +0000 (21:03 +0100)]
doc: Convert IntegrationGuide to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agodoc: Convert CodingStyle to rST
Stephen Finucane [Tue, 18 Oct 2016 20:03:31 +0000 (21:03 +0100)]
doc: Convert CodingStyle to rST

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agofedora: do not restart the service on a pkg upgrade
Flavio Leitner [Tue, 18 Oct 2016 17:04:42 +0000 (15:04 -0200)]
fedora: do not restart the service on a pkg upgrade

There is no reliable way to restore the previous networking
state after a service restart. Many things like firewall
configuration, traffic shaping, stacked devices, custom setups
are completely out of OVS control.

The OVS might be providing the network used for remote
administration, so do not automatically restart the service
during a package upgrade.

Signed-off-by: Flavio Leitner <fbl@redhat.com>
Signed-off-by: Russell Bryant <russell@ovn.org>
7 years agoDocumentationStyle: Clarify what documentation is
Stephen Finucane [Thu, 20 Oct 2016 07:19:24 +0000 (08:19 +0100)]
DocumentationStyle: Clarify what documentation is

We're going to convert all docs to reStructuredText, so the "legacy
documents" warning is going to become outdated rather quickly. Simply
remove it.

Signed-off-by: Stephen Finucane <stephen@that.guru>
Signed-off-by: Russell Bryant <russell@ovn.org>