[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH] iothread: Make iothread_stop() idempotent
From: |
Paolo Bonzini |
Subject: |
Re: [Qemu-devel] [PATCH] iothread: Make iothread_stop() idempotent |
Date: |
Fri, 29 Sep 2017 16:13:04 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 |
On 29/09/2017 15:47, Christian Borntraeger wrote:
> Is anybody going to pick this up? upstream qemu is still happily filling
> up my disk with coredumps on exit.
I can, but I'll only send the pull request next Monday, probably.
Paolo
> On 09/26/2017 03:00 PM, Eduardo Habkost wrote:
>> Currently, iothread_stop_all() makes all iothread objects unsafe
>> to be destroyed, because qemu_thread_join() ends up being called
>> twice.
>>
>> To fix this, make iothread_stop() idempotent by checking
>> thread->stopped.
>>
>> Fixes the following crash:
>>
>> qemu-system-x86_64 -object iothread,id=iothread0 -monitor stdio -display
>> none
>> QEMU 2.10.50 monitor - type 'help' for more information
>> (qemu) quit
>> qemu: qemu_thread_join: No such process
>> Aborted (core dumped)
>>
>> Reported-by: Christian Borntraeger <address@hidden>
>> Signed-off-by: Eduardo Habkost <address@hidden>
>> ---
>> iothread.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/iothread.c b/iothread.c
>> index 44c8944dc4..59d0850988 100644
>> --- a/iothread.c
>> +++ b/iothread.c
>> @@ -85,7 +85,7 @@ static int iothread_stop(Object *object, void *opaque)
>> IOThread *iothread;
>>
>> iothread = (IOThread *)object_dynamic_cast(object, TYPE_IOTHREAD);
>> - if (!iothread || !iothread->ctx) {
>> + if (!iothread || !iothread->ctx || iothread->stopping) {
>> return 0;
>> }
>> iothread->stopping = true;
>>
>
- [Qemu-devel] [PULL 00/12] Machine/CPU/NUMA queue, 2017-09-19, Eduardo Habkost, 2017/09/19
- [Qemu-devel] [PULL 01/12] vl: Clean up user-creatable objects when exiting, Eduardo Habkost, 2017/09/19
- Re: [Qemu-devel] [PULL 01/12] vl: Clean up user-creatable objects when exiting, Christian Borntraeger, 2017/09/26
- Re: [Qemu-devel] [PULL 01/12] vl: Clean up user-creatable objects when exiting, Eduardo Habkost, 2017/09/26
- [Qemu-devel] [PATCH] iothread: Make iothread_stop() idempotent, Eduardo Habkost, 2017/09/26
- Re: [Qemu-devel] [PATCH] iothread: Make iothread_stop() idempotent, Christian Borntraeger, 2017/09/26
- Re: [Qemu-devel] [PATCH] iothread: Make iothread_stop() idempotent, Christian Borntraeger, 2017/09/29
- Re: [Qemu-devel] [PATCH] iothread: Make iothread_stop() idempotent,
Paolo Bonzini <=
- Re: [Qemu-devel] [PATCH] iothread: Make iothread_stop() idempotent, Peter Maydell, 2017/09/29
[Qemu-devel] [PULL 02/12] osdep: Define QEMU_MADV_REMOVE, Eduardo Habkost, 2017/09/19
[Qemu-devel] [PULL 03/12] hostmem-file: Add "discard-data" option, Eduardo Habkost, 2017/09/19
[Qemu-devel] [PULL 04/12] qom: cpus: split cpu_generic_init() on feature parsing and cpu creation parts, Eduardo Habkost, 2017/09/19
[Qemu-devel] [PULL 05/12] cpu: make cpu_generic_init() abort QEMU on error, Eduardo Habkost, 2017/09/19
[Qemu-devel] [PULL 06/12] vl.c: convert cpu_model to cpu type and set of global properties before machine_init(), Eduardo Habkost, 2017/09/19
[Qemu-devel] [PULL 07/12] pc: use generic cpu_model parsing, Eduardo Habkost, 2017/09/19
[Qemu-devel] [PULL 08/12] arm: drop intermediate cpu_model -> cpu type parsing and use cpu type directly, Eduardo Habkost, 2017/09/19
[Qemu-devel] [PULL 09/12] numa: cpu: calculate/set default node-ids after all -numa CLI options are parsed, Eduardo Habkost, 2017/09/19
[Qemu-devel] [PULL 10/12] NUMA: Replace MAX_NODES with nb_numa_nodes in for loop, Eduardo Habkost, 2017/09/19