WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-api

[Xen-API] [PATCH] accept openvswitch in /etc/xensource/network.conf

To: xen-api@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-API] [PATCH] accept openvswitch in /etc/xensource/network.conf
From: David Scott <dave.scott@xxxxxxxxxxxxx>
Date: Thu, 8 Jul 2010 11:17:44 +0100
Delivery-date: Thu, 08 Jul 2010 03:26:08 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-api-request@lists.xensource.com?subject=help>
List-id: Discussion of API issues surrounding Xen <xen-api.lists.xensource.com>
List-post: <mailto:xen-api@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>, <mailto:xen-api-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-api>, <mailto:xen-api-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-api-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Mercurial-patchbomb/1.4.3
# HG changeset patch
# User Ian Campbell <ian.campbell@xxxxxxxxxx>
# Date 1278584144 -3600
# Node ID fdb69254017b8de14ae7b9e068e54a800ffbfe49
# Parent  0c034eadb88871b92ffd1e6a1412229d6a5050f2
CA-39903: accept openvswitch in /etc/xensource/network.conf

The OpenVswitch project is trying to standardise on using OpenVswitch
rather than simply vswitch so accept both in network.conf and report
the mode as openvswitch.

Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>

diff -r 0c034eadb888 -r fdb69254017b ocaml/netdev/netdev.ml
--- a/ocaml/netdev/netdev.ml    Thu Jul 08 11:14:32 2010 +0100
+++ b/ocaml/netdev/netdev.ml    Thu Jul 08 11:15:44 2010 +0100
@@ -39,11 +39,12 @@
 
 let string_of_kind kind = match kind with
   | Bridge -> "bridge"
-  | Vswitch -> "vswitch"
+  | Vswitch -> "openvswitch"
 
 let kind_of_string s = match s with
   | "bridge" -> Bridge
   | "vswitch" -> Vswitch
+  | "openvswitch" -> Vswitch
   | _ -> raise (Unknown_network_backend s)
 
 module Internal = struct
 ocaml/netdev/netdev.ml |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


Attachment: vswitch-accept-openvswitch-network.conf.patch
Description: Text Data

_______________________________________________
xen-api mailing list
xen-api@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/mailman/listinfo/xen-api
<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-API] [PATCH] accept openvswitch in /etc/xensource/network.conf, David Scott <=