[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-ppc] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc
From: |
Laurent Vivier |
Subject: |
Re: [Qemu-ppc] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc) |
Date: |
Wed, 13 Sep 2017 14:49:52 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 |
On 13/09/2017 14:44, Dr. David Alan Gilbert wrote:
> * David Gibson (address@hidden) wrote:
>> On Tue, Sep 12, 2017 at 04:01:47PM +0200, Laurent Vivier wrote:
>>> Running QEMU with
>>> qemu-system-ppc64 -M none -nographic -m 256
>>> and executing
>>> dump-guest-memory /dev/null 0 8192
>>> results in segfault
>>>
>>> Fix by checking if we have CPU, and exit with
>>> error if there is no CPU:
>>>
>>> (qemu) dump-guest-memory /dev/null
>>> this feature or command is not currently supported
>>>
>>> Signed-off-by: Laurent Vivier <address@hidden>
>>
>> Applied to ppc-for-2.11. I'm not really sure what to do with the rest
>> of the series though.
>
> I can take the whole set through HMP.
Could you update the comment in last patch as asked by Cornelia?
(PATCH v3 3/3] tests/hmp: test "none" machine with memory)
Thanks,
Laurent
>
> Dave
>
>>> ---
>>> target/ppc/arch_dump.c | 11 +++++++++--
>>> 1 file changed, 9 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/target/ppc/arch_dump.c b/target/ppc/arch_dump.c
>>> index 8e9397aa58..95b9ab6f29 100644
>>> --- a/target/ppc/arch_dump.c
>>> +++ b/target/ppc/arch_dump.c
>>> @@ -224,8 +224,15 @@ typedef struct NoteFuncDescStruct NoteFuncDesc;
>>> int cpu_get_dump_info(ArchDumpInfo *info,
>>> const struct GuestPhysBlockList *guest_phys_blocks)
>>> {
>>> - PowerPCCPU *cpu = POWERPC_CPU(first_cpu);
>>> - PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu);
>>> + PowerPCCPU *cpu;
>>> + PowerPCCPUClass *pcc;
>>> +
>>> + if (first_cpu == NULL) {
>>> + return -1;
>>> + }
>>> +
>>> + cpu = POWERPC_CPU(first_cpu);
>>> + pcc = POWERPC_CPU_GET_CLASS(cpu);
>>>
>>> info->d_machine = PPC_ELF_MACHINE;
>>> info->d_class = ELFCLASS;
>>
>> --
>> David Gibson | I'll have my music baroque, and my code
>> david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_
>> _other_
>> | _way_ _around_!
>> http://www.ozlabs.org/~dgibson
>
>
> --
> Dr. David Alan Gilbert / address@hidden / Manchester, UK
>
- [Qemu-ppc] [PATCH v3 0/3] hmp: fix "dump-quest-memory" segfault, Laurent Vivier, 2017/09/12
- [Qemu-ppc] [PATCH v3 2/3] hmp: fix "dump-quest-memory" segfault (arm), Laurent Vivier, 2017/09/12
- [Qemu-ppc] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc), Laurent Vivier, 2017/09/12
- Re: [Qemu-ppc] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc), Thomas Huth, 2017/09/12
- Re: [Qemu-ppc] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc), Greg Kurz, 2017/09/12
- Re: [Qemu-ppc] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc), David Gibson, 2017/09/13
- Re: [Qemu-ppc] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc), Dr. David Alan Gilbert, 2017/09/13
- Re: [Qemu-ppc] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc), Cornelia Huck, 2017/09/13
- Re: [Qemu-ppc] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc),
Laurent Vivier <=
- Re: [Qemu-ppc] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc), Dr. David Alan Gilbert, 2017/09/13
- Re: [Qemu-ppc] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc), Laurent Vivier, 2017/09/13
- Re: [Qemu-ppc] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc), Dr. David Alan Gilbert, 2017/09/13
- Re: [Qemu-ppc] [PATCH v3 1/3] hmp: fix "dump-quest-memory" segfault (ppc), David Gibson, 2017/09/13
[Qemu-ppc] [PATCH v3 3/3] tests/hmp: test "none" machine with memory, Laurent Vivier, 2017/09/12
Re: [Qemu-ppc] [Qemu-devel] [PATCH v3 0/3] hmp: fix "dump-quest-memory" segfault, no-reply, 2017/09/12
Re: [Qemu-ppc] [PATCH v3 0/3] hmp: fix "dump-quest-memory" segfault, Greg Kurz, 2017/09/12