[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v14 10/11] qemu_thread: supplement error handling fo
From: |
Fei Li |
Subject: |
[Qemu-devel] [PATCH v14 10/11] qemu_thread: supplement error handling for vnc_start_worker_thread |
Date: |
Wed, 17 Jul 2019 10:33:09 +0800 |
From: Fei Li <address@hidden>
Supplement the error handling for vnc_thread_worker_thread: add
an Error parameter for it to propagate the error to its caller to
handle in case it fails, and make it return a Boolean to indicate
whether it succeeds.
Cc: Markus Armbruster <address@hidden>
Cc: Gerd Hoffmann <address@hidden>
Signed-off-by: Fei Li <address@hidden>
Reviewed-by: Markus Armbruster <address@hidden>
---
ui/vnc-jobs.c | 17 +++++++++++------
ui/vnc-jobs.h | 2 +-
ui/vnc.c | 4 +++-
3 files changed, 15 insertions(+), 8 deletions(-)
diff --git a/ui/vnc-jobs.c b/ui/vnc-jobs.c
index 5712f1f501..1371895513 100644
--- a/ui/vnc-jobs.c
+++ b/ui/vnc-jobs.c
@@ -332,16 +332,21 @@ static bool vnc_worker_thread_running(void)
return queue; /* Check global queue */
}
-void vnc_start_worker_thread(void)
+bool vnc_start_worker_thread(Error **errp)
{
VncJobQueue *q;
- if (vnc_worker_thread_running())
- return ;
+ if (vnc_worker_thread_running()) {
+ return true;
+ }
q = vnc_queue_init();
- /* TODO: let the further caller handle the error instead of abort() here */
- qemu_thread_create(&q->thread, "vnc_worker", vnc_worker_thread,
- q, QEMU_THREAD_DETACHED, &error_abort);
+ if (qemu_thread_create(&q->thread, "vnc_worker", vnc_worker_thread,
+ q, QEMU_THREAD_DETACHED, errp) < 0) {
+ vnc_queue_clear(q);
+ return false;
+ }
queue = q; /* Set global queue */
+
+ return true;
}
diff --git a/ui/vnc-jobs.h b/ui/vnc-jobs.h
index 59f66bcc35..14640593db 100644
--- a/ui/vnc-jobs.h
+++ b/ui/vnc-jobs.h
@@ -37,7 +37,7 @@ void vnc_job_push(VncJob *job);
void vnc_jobs_join(VncState *vs);
void vnc_jobs_consume_buffer(VncState *vs);
-void vnc_start_worker_thread(void);
+bool vnc_start_worker_thread(Error **errp);
/* Locks */
static inline int vnc_trylock_display(VncDisplay *vd)
diff --git a/ui/vnc.c b/ui/vnc.c
index 38f92bfca3..561fcb9a29 100644
--- a/ui/vnc.c
+++ b/ui/vnc.c
@@ -3196,7 +3196,9 @@ void vnc_display_init(const char *id, Error **errp)
vd->connections_limit = 32;
qemu_mutex_init(&vd->mutex);
- vnc_start_worker_thread();
+ if (!vnc_start_worker_thread(errp)) {
+ return;
+ }
vd->dcl.ops = &dcl_ops;
register_displaychangelistener(&vd->dcl);
--
2.11.0
- Re: [Qemu-devel] [PATCH v14 01/11] qemu_thread: make qemu_thread_create() take Error ** argument, (continued)
- [Qemu-devel] [PATCH v14 03/11] qemu_thread: supplement error handling for qmp_dump_guest_memory, Fei Li, 2019/07/16
- [Qemu-devel] [PATCH v14 02/11] qemu_thread: supplement error handling for qemu_X_start_vcpu, Fei Li, 2019/07/16
- [Qemu-devel] [PATCH v14 04/11] qemu_thread: supplement error handling for pci_edu_realize, Fei Li, 2019/07/16
- [Qemu-devel] [PATCH v14 05/11] qemu_thread: supplement error handling for h_resize_hpt_prepare, Fei Li, 2019/07/16
- [Qemu-devel] [PATCH v14 06/11] qemu_thread: supplement error handling for emulated_realize, Fei Li, 2019/07/16
- [Qemu-devel] [PATCH v14 07/11] qemu_thread: supplement error handling for iothread_complete, Fei Li, 2019/07/16
- [Qemu-devel] [PATCH v14 08/11] qemu_thread: supplement error handling for qemu_signalfd_compat, Fei Li, 2019/07/16
- [Qemu-devel] [PATCH v14 09/11] qemu_thread: supplement error handling for migration, Fei Li, 2019/07/16
- [Qemu-devel] [PATCH v14 10/11] qemu_thread: supplement error handling for vnc_start_worker_thread,
Fei Li <=
- [Qemu-devel] [PATCH v14 11/11] qemu_thread: supplement error handling for touch_all_pages, Fei Li, 2019/07/16