acpi_table_add(): accept QemuOpts and parse it with OptsVisitor

As one consequence, strtok() -- which modifies its argument -- is replaced
with g_strsplit().

Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
Message-id: 1363821803-3380-6-git-send-email-lersek@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Laszlo Ersek 2013-03-21 00:23:17 +01:00 committed by Anthony Liguori
parent 8ccbad5c7b
commit 0c764a9dfc
6 changed files with 98 additions and 63 deletions

View file

@ -1103,10 +1103,10 @@ int qemu_uuid_parse(const char *str, uint8_t *uuid)
return 0;
}
void do_acpitable_option(const char *optarg)
void do_acpitable_option(const QemuOpts *opts)
{
#ifdef TARGET_I386
if (acpi_table_add(optarg) < 0) {
if (acpi_table_add(opts) < 0) {
fprintf(stderr, "Wrong acpi table provided\n");
exit(1);
}