summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark McLoughlin2009-10-06 13:17:05 +0200
committerAnthony Liguori2009-10-06 21:36:11 +0200
commit8119b33d1810fd0f25b3592690d7e44527451292 (patch)
tree3969053e9cf39b0fb390ce368c9b4a7937033c2e
parentNever overwrite a QemuOpt (diff)
downloadqemu-8119b33d1810fd0f25b3592690d7e44527451292.tar.gz
qemu-8119b33d1810fd0f25b3592690d7e44527451292.tar.xz
qemu-8119b33d1810fd0f25b3592690d7e44527451292.zip
Add qemu_net_opts
The first step in porting -net to QemuOpts. We do not include parameter descriptions in the QemuOptsList because we use the first parameter to choose which descriptions validate against. Signed-off-by: Mark McLoughlin <markmc@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r--qemu-config.c13
-rw-r--r--qemu-config.h1
2 files changed, 14 insertions, 0 deletions
diff --git a/qemu-config.c b/qemu-config.c
index f5c1a12254..bafaea2bdb 100644
--- a/qemu-config.c
+++ b/qemu-config.c
@@ -152,6 +152,18 @@ QemuOptsList qemu_device_opts = {
},
};
+QemuOptsList qemu_net_opts = {
+ .name = "net",
+ .head = QTAILQ_HEAD_INITIALIZER(qemu_net_opts.head),
+ .desc = {
+ /*
+ * no elements => accept any params
+ * validation will happen later
+ */
+ { /* end of list */ }
+ },
+};
+
QemuOptsList qemu_rtc_opts = {
.name = "rtc",
.head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
@@ -176,6 +188,7 @@ static QemuOptsList *lists[] = {
&qemu_drive_opts,
&qemu_chardev_opts,
&qemu_device_opts,
+ &qemu_net_opts,
&qemu_rtc_opts,
NULL,
};
diff --git a/qemu-config.h b/qemu-config.h
index 4ae7b74fe1..cdad5ac583 100644
--- a/qemu-config.h
+++ b/qemu-config.h
@@ -4,6 +4,7 @@
extern QemuOptsList qemu_drive_opts;
extern QemuOptsList qemu_chardev_opts;
extern QemuOptsList qemu_device_opts;
+extern QemuOptsList qemu_net_opts;
extern QemuOptsList qemu_rtc_opts;
int qemu_set_option(const char *str);