summaryrefslogtreecommitdiffstats
path: root/softmmu
diff options
context:
space:
mode:
authorLaurent Vivier2022-10-21 11:09:07 +0200
committerJason Wang2022-10-28 07:28:52 +0200
commitd63ef17bfcba1126df6bfcb7bca64c96ac4a8d99 (patch)
tree5e84e81b619740690bc691f76daa7caa34859070 /softmmu
parentnet: introduce convert_host_port() (diff)
downloadqemu-d63ef17bfcba1126df6bfcb7bca64c96ac4a8d99.tar.gz
qemu-d63ef17bfcba1126df6bfcb7bca64c96ac4a8d99.tar.xz
qemu-d63ef17bfcba1126df6bfcb7bca64c96ac4a8d99.zip
net: remove the @errp argument of net_client_inits()
The only caller passes &error_fatal, so use this directly in the function. It's what we do for -blockdev, -device, and -object. Suggested-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Acked-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'softmmu')
-rw-r--r--softmmu/vl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/softmmu/vl.c b/softmmu/vl.c
index b464da25bc..a4ae131e4d 100644
--- a/softmmu/vl.c
+++ b/softmmu/vl.c
@@ -1904,7 +1904,7 @@ static void qemu_create_late_backends(void)
qtest_server_init(qtest_chrdev, qtest_log, &error_fatal);
}
- net_init_clients(&error_fatal);
+ net_init_clients();
object_option_foreach_add(object_create_late);