[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v8 03/15] s390x: protvirt: Add migration blocker
From: |
David Hildenbrand |
Subject: |
Re: [PATCH v8 03/15] s390x: protvirt: Add migration blocker |
Date: |
Tue, 10 Mar 2020 16:08:13 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.5.0 |
On 10.03.20 16:02, Janosch Frank wrote:
> On 3/10/20 3:57 PM, David Hildenbrand wrote:
>> On 10.03.20 14:39, Janosch Frank wrote:
>>> Migration is not yet supported.
>>>
>>> Signed-off-by: Janosch Frank <address@hidden>
>>> ---
>>> hw/s390x/s390-virtio-ccw.c | 17 +++++++++++++++++
>>> 1 file changed, 17 insertions(+)
>>>
>>> diff --git a/hw/s390x/s390-virtio-ccw.c b/hw/s390x/s390-virtio-ccw.c
>>> index 455ad31718..1ceb42c0b5 100644
>>> --- a/hw/s390x/s390-virtio-ccw.c
>>> +++ b/hw/s390x/s390-virtio-ccw.c
>>> @@ -43,6 +43,9 @@
>>> #include "sysemu/sysemu.h"
>>> #include "hw/s390x/pv.h"
>>> #include <linux/kvm.h>
>>> +#include "migration/blocker.h"
>>> +
>>> +static Error *pv_mig_blocker;
>>>
>>> S390CPU *s390_cpu_addr2state(uint16_t cpu_addr)
>>> {
>>> @@ -323,15 +326,29 @@ static void
>>> s390_machine_unprotect(S390CcwMachineState *ms)
>>>
>>> s390_pv_vm_disable();
>>> ms->pv = false;
>>> + migrate_del_blocker(pv_mig_blocker);
>>> + error_free_or_abort(&pv_mig_blocker);
>>> }
>>>
>>> static int s390_machine_protect(S390CcwMachineState *ms)
>>> {
>>> + static Error *local_err;
>>
>> You have to initialize it to NULL.
>
> That's a static variable, am I missing something?
No, I was missing that :) Why is that a static variable?
git grep "static Error *" will tell you that this is not common.
--
Thanks,
David / dhildenb
[PATCH v8 15/15] s390x: Add unpack facility feature to GA1, Janosch Frank, 2020/03/10
[PATCH v8 14/15] docs: Add protvirt docs, Janosch Frank, 2020/03/10
[PATCH v8 07/15] s390x: protvirt: Move STSI data over SIDAD, Janosch Frank, 2020/03/10
[PATCH v8 06/15] s390x: Add SIDA memory ops, Janosch Frank, 2020/03/10
[PATCH v8 11/15] s390x: protvirt: Disable address checks for PV guest IO emulation, Janosch Frank, 2020/03/10
[PATCH v8 02/15] s390x: protvirt: Support unpack facility, Janosch Frank, 2020/03/10