summary refs log tree commit diff stats
path: root/qemu-config.c
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2009-10-08 19:58:26 +0100
committerAnthony Liguori <aliguori@us.ibm.com>2009-10-15 09:32:01 -0500
commita1ea458fdf4711b5d3b23e987b47366d6a3b5924 (patch)
tree690cbab2a001140a21065c12e175d52067040ef7 /qemu-config.c
parent7f161aaea6e1f566a017f87513924d1c8bbfdc6c (diff)
downloadfocaccia-qemu-a1ea458fdf4711b5d3b23e987b47366d6a3b5924.tar.gz
focaccia-qemu-a1ea458fdf4711b5d3b23e987b47366d6a3b5924.zip
net: add -netdev option
Patchworks-ID: 35506
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-config.c')
-rw-r--r--qemu-config.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/qemu-config.c b/qemu-config.c
index bafaea2bdb..cae92f78cf 100644
--- a/qemu-config.c
+++ b/qemu-config.c
@@ -152,6 +152,18 @@ QemuOptsList qemu_device_opts = {
     },
 };
 
+QemuOptsList qemu_netdev_opts = {
+    .name = "netdev",
+    .head = QTAILQ_HEAD_INITIALIZER(qemu_netdev_opts.head),
+    .desc = {
+        /*
+         * no elements => accept any params
+         * validation will happen later
+         */
+        { /* end of list */ }
+    },
+};
+
 QemuOptsList qemu_net_opts = {
     .name = "net",
     .head = QTAILQ_HEAD_INITIALIZER(qemu_net_opts.head),
@@ -188,6 +200,7 @@ static QemuOptsList *lists[] = {
     &qemu_drive_opts,
     &qemu_chardev_opts,
     &qemu_device_opts,
+    &qemu_netdev_opts,
     &qemu_net_opts,
     &qemu_rtc_opts,
     NULL,