diff options
author | Cornelia Huck | 2015-12-15 17:49:15 +0100 |
---|---|---|
committer | Cornelia Huck | 2016-01-13 10:53:42 +0100 |
commit | e11f463295d95abab631e236d28d7c886eacc8e1 (patch) | |
tree | e6215184c0d114696a6be6ac395e525143e4f8de /hw/s390x/s390-virtio.c | |
parent | s390x/pci: code cleanup (diff) | |
download | qemu-e11f463295d95abab631e236d28d7c886eacc8e1.tar.gz qemu-e11f463295d95abab631e236d28d7c886eacc8e1.tar.xz qemu-e11f463295d95abab631e236d28d7c886eacc8e1.zip |
s390x/virtio: use qemu_check_nic_model()
Switching to the generally used interface changes the output of
s390x-softmmu/qemu-system-s390x -net nic,model=?
from
S390 only supports VirtIO nics
to the rather more useful
qemu: Supported NIC models: virtio
while still giving us a sensible error message for unsupported
models:
s390x-softmmu/qemu-system-s390x -net nic,model=foo
qemu-system-s390x: Unsupported NIC model: foo
Acked-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Diffstat (limited to 'hw/s390x/s390-virtio.c')
-rw-r--r-- | hw/s390x/s390-virtio.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/hw/s390x/s390-virtio.c b/hw/s390x/s390-virtio.c index 5dbb815484..946325f9fe 100644 --- a/hw/s390x/s390-virtio.c +++ b/hw/s390x/s390-virtio.c @@ -131,10 +131,7 @@ void s390_create_virtio_net(BusState *bus, const char *name) nd->model = g_strdup("virtio"); } - if (strcmp(nd->model, "virtio")) { - fprintf(stderr, "S390 only supports VirtIO nics\n"); - exit(1); - } + qemu_check_nic_model(nd, "virtio"); dev = qdev_create(bus, name); qdev_set_nic_properties(dev, nd); |