[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v13 for-4.1 07/11] qemu_thread: supplement error han
From: |
Fei Li |
Subject: |
[Qemu-devel] [PATCH v13 for-4.1 07/11] qemu_thread: supplement error handling for iothread_complete |
Date: |
Mon, 25 Mar 2019 21:54:07 +0800 |
From: Fei Li <address@hidden>
Utilize the existed errp to propagate the error and do the
corresponding cleanup to replace the temporary &error_abort.
Cc: Markus Armbruster <address@hidden>
Cc: Stefan Hajnoczi <address@hidden>
Cc: Eric Blake <address@hidden>
Signed-off-by: Fei Li <address@hidden>
Reviewed-by: Markus Armbruster <address@hidden>
---
iothread.c | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/iothread.c b/iothread.c
index 2d5a5bfe6c..1ebacaf089 100644
--- a/iothread.c
+++ b/iothread.c
@@ -166,6 +166,7 @@ static void iothread_complete(UserCreatable *obj, Error
**errp)
Error *local_error = NULL;
IOThread *iothread = IOTHREAD(obj);
char *name, *thread_name;
+ int thread_ok;
iothread->stopping = false;
iothread->running = true;
@@ -188,9 +189,7 @@ static void iothread_complete(UserCreatable *obj, Error
**errp)
&local_error);
if (local_error) {
error_propagate(errp, local_error);
- aio_context_unref(iothread->ctx);
- iothread->ctx = NULL;
- return;
+ goto fail;
}
/* This assumes we are called from a thread with useful CPU affinity for us
@@ -198,16 +197,23 @@ static void iothread_complete(UserCreatable *obj, Error
**errp)
*/
name = object_get_canonical_path_component(OBJECT(obj));
thread_name = g_strdup_printf("IO %s", name);
- /* TODO: let the further caller handle the error instead of abort() here */
- qemu_thread_create(&iothread->thread, thread_name, iothread_run,
- iothread, QEMU_THREAD_JOINABLE, &error_abort);
+ thread_ok = qemu_thread_create(&iothread->thread, thread_name,
iothread_run,
+ iothread, QEMU_THREAD_JOINABLE, errp);
g_free(thread_name);
g_free(name);
+ if (thread_ok < 0) {
+ qemu_sem_destroy(&iothread->init_done_sem);
+ goto fail;
+ }
/* Wait for initialization to complete */
while (iothread->thread_id == -1) {
qemu_sem_wait(&iothread->init_done_sem);
}
+ return;
+fail:
+ aio_context_unref(iothread->ctx);
+ iothread->ctx = NULL;
}
typedef struct {
--
2.11.0
- [Qemu-devel] [PATCH v13 for-4.1 00/11] qemu_thread_create: propagate the error to callers to handle, Fei Li, 2019/03/25
- [Qemu-devel] [PATCH v13 for-4.1 01/11] qemu_thread: make qemu_thread_create() take Error ** argument, Fei Li, 2019/03/25
- [Qemu-devel] [PATCH v13 for-4.1 03/11] qemu_thread: supplement error handling for qmp_dump_guest_memory, Fei Li, 2019/03/25
- [Qemu-devel] [PATCH v13 for-4.1 02/11] qemu_thread: supplement error handling for qemu_X_start_vcpu, Fei Li, 2019/03/25
- [Qemu-devel] [PATCH v13 for-4.1 04/11] qemu_thread: supplement error handling for pci_edu_realize, Fei Li, 2019/03/25
- [Qemu-devel] [PATCH v13 for-4.1 05/11] qemu_thread: supplement error handling for h_resize_hpt_prepare, Fei Li, 2019/03/25
- [Qemu-devel] [PATCH v13 for-4.1 06/11] qemu_thread: supplement error handling for emulated_realize, Fei Li, 2019/03/25
- [Qemu-devel] [PATCH v13 for-4.1 07/11] qemu_thread: supplement error handling for iothread_complete,
Fei Li <=
- [Qemu-devel] [PATCH v13 for-4.1 08/11] qemu_thread: supplement error handling for qemu_signalfd_compat, Fei Li, 2019/03/25
- [Qemu-devel] [PATCH v13 for-4.1 10/11] qemu_thread: supplement error handling for vnc_start_worker_thread, Fei Li, 2019/03/25
- [Qemu-devel] [PATCH v13 for-4.1 09/11] qemu_thread: supplement error handling for migration, Fei Li, 2019/03/25
- [Qemu-devel] [PATCH v13 for-4.1 11/11] qemu_thread: supplement error handling for touch_all_pages, Fei Li, 2019/03/25
- Re: [Qemu-devel] [PATCH v13 for-4.1 00/11] qemu_thread_create: propagate the error to callers to handle, no-reply, 2019/03/25