From 8119b33d1810fd0f25b3592690d7e44527451292 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Tue, 6 Oct 2009 12:17:05 +0100 Subject: 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 Signed-off-by: Anthony Liguori --- qemu-config.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'qemu-config.c') diff --git a/qemu-config.c b/qemu-config.c index f5c1a1225..bafaea2bd 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, }; -- cgit v1.2.3