]> git.proxmox.com Git - mirror_qemu.git/commitdiff
qtest: Rename qtest.c:qtest_init()
authorOleinik, Alexander <alxndr@bu.edu>
Mon, 5 Aug 2019 03:13:01 +0000 (03:13 +0000)
committerThomas Huth <thuth@redhat.com>
Thu, 15 Aug 2019 17:23:59 +0000 (19:23 +0200)
Both the qtest client, libqtest.c, and server, qtest.c, used the same
name for initialization functions which can cause confusion.

Signed-off-by: Alexander Oleinik <alxndr@bu.edu>
Message-Id: <20190805031240.6024-1-alxndr@bu.edu>
Reviewed-by: John Snow <jsnow@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
include/sysemu/qtest.h
qtest.c
vl.c

index cd114b8d80d0299766a02c3ecab9b36192c669d7..5ed09c80b1bab470c2a0cb194bd9c3a4c51beea9 100644 (file)
@@ -24,6 +24,6 @@ static inline bool qtest_enabled(void)
 
 bool qtest_driver(void);
 
-void qtest_init(const char *qtest_chrdev, const char *qtest_log, Error **errp);
+void qtest_server_init(const char *qtest_chrdev, const char *qtest_log, Error **errp);
 
 #endif
diff --git a/qtest.c b/qtest.c
index 15e27e911fafafeea111b63ce6a3a442170988c5..c9681dbdf33d560fc48bb0a41d689ad67d92b5e1 100644 (file)
--- a/qtest.c
+++ b/qtest.c
@@ -748,8 +748,7 @@ static void qtest_event(void *opaque, int event)
         break;
     }
 }
-
-void qtest_init(const char *qtest_chrdev, const char *qtest_log, Error **errp)
+void qtest_server_init(const char *qtest_chrdev, const char *qtest_log, Error **errp)
 {
     Chardev *chr;
 
diff --git a/vl.c b/vl.c
index b426b3213461210565bd1db15a0c89d71e9fea7c..130a38971264a6945faf89b2d70e491abbc464f3 100644 (file)
--- a/vl.c
+++ b/vl.c
@@ -4197,7 +4197,7 @@ int main(int argc, char **argv, char **envp)
     migration_object_init();
 
     if (qtest_chrdev) {
-        qtest_init(qtest_chrdev, qtest_log, &error_fatal);
+        qtest_server_init(qtest_chrdev, qtest_log, &error_fatal);
     }
 
     machine_opts = qemu_get_machine_opts();