|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v2 3/4] xl: add vif.default.bridge
This is a replacement for defaultbridge xl.conf option. The now
deprecated defaultbridge is still supported.
Signed-off-by: Roger Pau Monnà <roger.pau@xxxxxxxxxx>
Cc: George Dunlap <George.Dunlap@xxxxxxxxxxxxx>
Cc: Ian Campbell <ian.campbell@xxxxxxxxxx>
---
tools/examples/xl.conf | 3 +++
tools/libxl/xl.c | 13 +++++++++++--
2 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/tools/examples/xl.conf b/tools/examples/xl.conf
index 9a03fff..4451176 100644
--- a/tools/examples/xl.conf
+++ b/tools/examples/xl.conf
@@ -23,3 +23,6 @@
# default gateway device to use with vif-route hotplug script
#vif.default.gatewaydev="eth0"
+
+# default bridge device to use with vif-bridge hotplug scripts
+#vif.default.bridge="bridge0"
diff --git a/tools/libxl/xl.c b/tools/libxl/xl.c
index f657216..100ab32 100644
--- a/tools/libxl/xl.c
+++ b/tools/libxl/xl.c
@@ -89,8 +89,17 @@ static void parse_global_config(const char *configfile,
if (!xlu_cfg_get_string (config, "vifscript", &buf, 0))
default_vifscript = strdup(buf);
- if (!xlu_cfg_get_string (config, "defaultbridge", &buf, 0))
- default_bridge = strdup(buf);
+ if (!xlu_cfg_get_string (config, "defaultbridge", &buf, 0)) {
+ fprintf(stderr, "the global config option defaultbridge is deprecated,
"
+ "please switch to vif.default.bridge\n");
+ free(default_bridge);
+ default_bridge = strdup(buf);
+ }
+
+ if (!xlu_cfg_get_string (config, "vif.default.bridge", &buf, 0)) {
+ free(default_bridge);
+ default_bridge = strdup(buf);
+ }
if (!xlu_cfg_get_string (config, "vif.default.gatewaydev", &buf, 0))
default_gatewaydev = strdup(buf);
--
1.7.7.5 (Apple Git-26)
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |